nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-material / modules / closure / checkbox / checkbox.css
1 /*!
2  * Angular Material Design
3  * https://github.com/angular/material
4  * @license MIT
5  * v0.9.8
6  */
7 /* mixin definition ; sets LTR and RTL within the same style call */
8 md-checkbox {
9   box-sizing: border-box;
10   display: block;
11   margin: 8px;
12   white-space: nowrap;
13   cursor: pointer;
14   outline: none;
15   -webkit-user-select: none;
16      -moz-user-select: none;
17       -ms-user-select: none;
18           user-select: none;
19   padding-left: 18px;
20   padding-right: 0;
21   position: relative;
22   line-height: 26px;
23   min-width: 18px;
24   min-height: 18px; }
25   html[dir=rtl] md-checkbox {
26     padding-left: 0; }
27   html[dir=rtl] md-checkbox {
28     padding-right: 18px; }
29   md-checkbox *, md-checkbox *:before, md-checkbox *:after {
30     box-sizing: border-box; }
31   md-checkbox.md-focused:not([disabled]) .md-container:before {
32     left: -8px;
33     top: -8px;
34     right: -8px;
35     bottom: -8px; }
36   md-checkbox.md-focused:not([disabled]):not(.md-checked) .md-container:before {
37     background-color: rgba(0, 0, 0, 0.12); }
38   md-checkbox .md-container {
39     position: absolute;
40     top: 50%;
41     display: inline-block;
42     width: 18px;
43     height: 18px;
44     -webkit-transform: translateY(-50%);
45             transform: translateY(-50%);
46     left: 0;
47     right: auto; }
48     html[dir=rtl] md-checkbox .md-container {
49       left: auto; }
50     html[dir=rtl] md-checkbox .md-container {
51       right: 0; }
52     md-checkbox .md-container:before {
53       background-color: transparent;
54       border-radius: 50%;
55       content: '';
56       position: absolute;
57       display: block;
58       height: auto;
59       left: 0;
60       top: 0;
61       right: 0;
62       bottom: 0;
63       transition: all 0.5s;
64       width: auto; }
65     md-checkbox .md-container:after {
66       content: '';
67       position: absolute;
68       top: -10px;
69       right: -10px;
70       bottom: -10px;
71       left: -10px; }
72     md-checkbox .md-container .md-ripple-container {
73       position: absolute;
74       display: block;
75       width: auto;
76       height: auto;
77       left: -15px;
78       top: -15px;
79       right: -15px;
80       bottom: -15px; }
81   md-checkbox .md-icon {
82     transition: 240ms;
83     position: absolute;
84     top: 0;
85     left: 0;
86     width: 18px;
87     height: 18px;
88     border-width: 2px;
89     border-style: solid;
90     border-radius: 2px; }
91   md-checkbox.md-checked .md-icon {
92     border: none; }
93   md-checkbox[disabled] {
94     cursor: no-drop; }
95   md-checkbox.md-checked .md-icon:after {
96     -webkit-transform: rotate(45deg);
97             transform: rotate(45deg);
98     position: absolute;
99     left: 6px;
100     top: 2px;
101     display: table;
102     width: 6px;
103     height: 12px;
104     border-width: 2px;
105     border-style: solid;
106     border-top: 0;
107     border-left: 0;
108     content: ''; }
109   md-checkbox .md-label {
110     position: relative;
111     display: inline-block;
112     vertical-align: middle;
113     white-space: normal;
114     pointer-events: none;
115     -webkit-user-select: text;
116        -moz-user-select: text;
117         -ms-user-select: text;
118             user-select: text; }
119     md-checkbox .md-label span {
120       margin-left: 10px;
121       margin-right: 0; }
122       html[dir=rtl] md-checkbox .md-label span {
123         margin-left: 0; }
124       html[dir=rtl] md-checkbox .md-label span {
125         margin-right: 10px; }