1- @import ' Variables' ;
1+ @import " Variables" ;
22
3- textarea , input [type = " text" ], input [type = " password" ], input [type = " datetime" ], input [type = " datetime-local" ], input [type = " date" ], input [type = " month" ], input [type = " time" ], input [type = " week" ], input [type = " number" ], input [type = " email" ], input [type = " url" ], input [type = " search" ], input [type = " tel" ], input [type = " color" ], .uneditable-input
4- {
5- border-color : #bcbcbc ;
3+ textarea ,
4+ input [type = " text" ],
5+ input [type = " password" ],
6+ input [type = " datetime" ],
7+ input [type = " datetime-local" ],
8+ input [type = " date" ],
9+ input [type = " month" ],
10+ input [type = " time" ],
11+ input [type = " week" ],
12+ input [type = " number" ],
13+ input [type = " email" ],
14+ input [type = " url" ],
15+ input [type = " search" ],
16+ input [type = " tel" ],
17+ input [type = " color" ],
18+ .uneditable-input {
19+ color : $primary-text-color ;
20+ background-color : $secondary-color ;
21+ border : $primary-border ;
622 border-radius : 0 ;
723}
824
9- input [placeholder ], input [ placeholder ][ type = " password " ]
10- {
11- color : $primary-color !important ;
25+ input [placeholder ],
26+ input [ placeholder ][ type = " password " ] {
27+ color : $primary-text- color ;
1228}
1329
14- textarea :focus , input [type = " text" ]:focus , input [type = " password" ]:focus , input [type = " datetime" ]:focus , input [type = " datetime-local" ]:focus , input [type = " date" ]:focus , input [type = " month" ]:focus , input [type = " time" ]:focus , input [type = " week" ]:focus , input [type = " number" ]:focus , input [type = " email" ]:focus , input [type = " url" ]:focus , input [type = " search" ]:focus , input [type = " tel" ]:focus , input [type = " color" ]:focus , .uneditable-input :focus
15- {
16- border-color : $primary-color ;
30+ textarea :focus ,
31+ input [type = " text" ]:focus ,
32+ input [type = " password" ]:focus ,
33+ input [type = " datetime" ]:focus ,
34+ input [type = " datetime-local" ]:focus ,
35+ input [type = " date" ]:focus ,
36+ input [type = " month" ]:focus ,
37+ input [type = " time" ]:focus ,
38+ input [type = " week" ]:focus ,
39+ input [type = " number" ]:focus ,
40+ input [type = " email" ]:focus ,
41+ input [type = " url" ]:focus ,
42+ input [type = " search" ]:focus ,
43+ input [type = " tel" ]:focus ,
44+ input [type = " color" ]:focus ,
45+ .uneditable-input :focus {
46+ background-color : $secondary-color ;
47+ color : $primary-color-opposite ;
48+ border : $primary-active-border ;
1749 box-shadow : $no-box-shadow ;
1850}
1951
20- .btn
21- {
22- box-shadow : 0 px 1 px 0 px rgba ( 255 , 255 , 255 , 0.2 ) inset , 0 px 1 px 2 px rgba ( 0 , 0 , 0 , 0.05 ) ;
52+ .btn {
53+ background : $primary-color ;
54+ color : $primary-color-opposite ;
2355 border-color : $button-border ;
56+ box-shadow : 0px 1px 0px rgba (255 , 255 , 255 , 0.2 ) inset , 0px 1px 2px rgba (0 , 0 , 0 , 0.05 );
2457}
2558
26- .btn :hover
27- {
59+ .btn :hover {
60+ background-color : $primary-color-active ;
2861 border-color : $button-border ;
2962 transition : background-position 0.2s linear 0s ;
30- color : $primary-color-text-hover ;
63+ color : $primary-color-opposite ;
64+ }
65+
66+ .btn :active ,
67+ .btn :focus {
68+ background-color : $primary-color-active !important ;
69+ border-color : $button-border !important ;
70+ color : $primary-color-opposite !important ;
3171}
3272
3373// Checkbox vertical align fix
34- input [type = " checkbox" ]
35- {
74+ input [type = " checkbox" ] {
3675 vertical-align : middle ;
3776 position : relative ;
3877 bottom : 4px ;
3978}
4079
41- label
42- {
80+ label {
4381 font-weight : normal !important ;
44- }
82+ }
0 commit comments