From 4ad39a5c96dd99acf819ce189b13fec946d7506b Mon Sep 17 00:00:00 2001 From: talasila Date: Tue, 7 Feb 2017 15:03:57 -0500 Subject: Initial OpenECOMP Portal commit Change-Id: I804b80e0830c092e307da1599bd9fbb5c3e2da77 Signed-off-by: talasila --- .../modules/closure/checkbox/checkbox.css | 125 +++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 ecomp-portal-FE/client/bower_components/angular-material/modules/closure/checkbox/checkbox.css (limited to 'ecomp-portal-FE/client/bower_components/angular-material/modules/closure/checkbox/checkbox.css') diff --git a/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/checkbox/checkbox.css b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/checkbox/checkbox.css new file mode 100644 index 00000000..652ba9f1 --- /dev/null +++ b/ecomp-portal-FE/client/bower_components/angular-material/modules/closure/checkbox/checkbox.css @@ -0,0 +1,125 @@ +/*! + * Angular Material Design + * https://github.com/angular/material + * @license MIT + * v0.9.8 + */ +/* mixin definition ; sets LTR and RTL within the same style call */ +md-checkbox { + box-sizing: border-box; + display: block; + margin: 8px; + white-space: nowrap; + cursor: pointer; + outline: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + padding-left: 18px; + padding-right: 0; + position: relative; + line-height: 26px; + min-width: 18px; + min-height: 18px; } + html[dir=rtl] md-checkbox { + padding-left: 0; } + html[dir=rtl] md-checkbox { + padding-right: 18px; } + md-checkbox *, md-checkbox *:before, md-checkbox *:after { + box-sizing: border-box; } + md-checkbox.md-focused:not([disabled]) .md-container:before { + left: -8px; + top: -8px; + right: -8px; + bottom: -8px; } + md-checkbox.md-focused:not([disabled]):not(.md-checked) .md-container:before { + background-color: rgba(0, 0, 0, 0.12); } + md-checkbox .md-container { + position: absolute; + top: 50%; + display: inline-block; + width: 18px; + height: 18px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + left: 0; + right: auto; } + html[dir=rtl] md-checkbox .md-container { + left: auto; } + html[dir=rtl] md-checkbox .md-container { + right: 0; } + md-checkbox .md-container:before { + background-color: transparent; + border-radius: 50%; + content: ''; + position: absolute; + display: block; + height: auto; + left: 0; + top: 0; + right: 0; + bottom: 0; + transition: all 0.5s; + width: auto; } + md-checkbox .md-container:after { + content: ''; + position: absolute; + top: -10px; + right: -10px; + bottom: -10px; + left: -10px; } + md-checkbox .md-container .md-ripple-container { + position: absolute; + display: block; + width: auto; + height: auto; + left: -15px; + top: -15px; + right: -15px; + bottom: -15px; } + md-checkbox .md-icon { + transition: 240ms; + position: absolute; + top: 0; + left: 0; + width: 18px; + height: 18px; + border-width: 2px; + border-style: solid; + border-radius: 2px; } + md-checkbox.md-checked .md-icon { + border: none; } + md-checkbox[disabled] { + cursor: no-drop; } + md-checkbox.md-checked .md-icon:after { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + position: absolute; + left: 6px; + top: 2px; + display: table; + width: 6px; + height: 12px; + border-width: 2px; + border-style: solid; + border-top: 0; + border-left: 0; + content: ''; } + md-checkbox .md-label { + position: relative; + display: inline-block; + vertical-align: middle; + white-space: normal; + pointer-events: none; + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; } + md-checkbox .md-label span { + margin-left: 10px; + margin-right: 0; } + html[dir=rtl] md-checkbox .md-label span { + margin-left: 0; } + html[dir=rtl] md-checkbox .md-label span { + margin-right: 10px; } -- cgit 1.2.3-korg