1
- @charset "UTF-8" ;
2
1
/**
3
2
* Copyright 2013 Drifty Co.
4
3
* http://drifty.com/
@@ -2667,11 +2666,12 @@ a.subdued {
2667
2666
border-top : 1px solid transparent;
2668
2667
border-bottom : 1px solid # dddddd ;
2669
2668
background-color : white;
2669
+ /* border-width: 1px will actually create 2 device pixels on retina */
2670
+ /* this nifty trick sets an actual 1px border on hi-res displays */
2670
2671
background-size : 0 ; }
2671
2672
@media (min--moz-device-pixel-ratio : 1.5 ), (-webkit-min-device-pixel-ratio : 1.5 ), (min-device-pixel-ratio : 1.5 ), (min-resolution : 144dpi ), (min-resolution : 1.5dppx ) {
2672
2673
.bar {
2673
- border-top : none !important ;
2674
- border-bottom : none !important ;
2674
+ border : none;
2675
2675
background-image : linear-gradient (0deg , # dddddd, # dddddd 50% , transparent 50% );
2676
2676
background-position : bottom;
2677
2677
background-size : 100% 1px ;
@@ -2805,7 +2805,7 @@ a.subdued {
2805
2805
box-shadow : inset 0px 1px 3px rgba (0 , 0 , 0 , 0.15 );
2806
2806
border-color : # cccccc ; }
2807
2807
.bar-light .button .button-clear {
2808
- color : white ;
2808
+ color : # 444444 ;
2809
2809
background : none;
2810
2810
border-color : transparent;
2811
2811
box-shadow : none;
@@ -2826,7 +2826,7 @@ a.subdued {
2826
2826
box-shadow : inset 0px 1px 3px rgba (0 , 0 , 0 , 0.15 );
2827
2827
border-color : # a2a2a2 ; }
2828
2828
.bar-stable .button .button-clear {
2829
- color : white ;
2829
+ color : # 444444 ;
2830
2830
background : none;
2831
2831
border-color : transparent;
2832
2832
box-shadow : none;
@@ -4126,7 +4126,6 @@ textarea {
4126
4126
-webkit-border-radius : 2px ;
4127
4127
-moz-border-radius : 2px ;
4128
4128
border-radius : 2px ;
4129
- display : block !important ;
4130
4129
overflow : hidden;
4131
4130
padding : 4px 8px 3px ;
4132
4131
border : none;
@@ -4439,7 +4438,7 @@ input[type="range"] {
4439
4438
background-position : center;
4440
4439
background-size : 96% 4px ;
4441
4440
background-repeat : no-repeat;
4442
- -webkit-appearance : none !important ; }
4441
+ -webkit-appearance : none; }
4443
4442
input [type = "range" ]::-webkit-slider-thumb {
4444
4443
position : relative;
4445
4444
width : 20px ;
@@ -4448,7 +4447,7 @@ input[type="range"] {
4448
4447
background-color : white;
4449
4448
box-shadow : 0 0 2px rgba (0 , 0 , 0 , 0.5 ), 1px 3px 5px rgba (0 , 0 , 0 , 0.25 );
4450
4449
cursor : pointer;
4451
- -webkit-appearance : none !important ; }
4450
+ -webkit-appearance : none; }
4452
4451
input [type = "range" ]::-webkit-slider-thumb : before {
4453
4452
/* what creates the colorful line on the left side of the slider */
4454
4453
position : absolute;
@@ -5480,10 +5479,10 @@ a.button {
5480
5479
*/
5481
5480
.hidden ,
5482
5481
.hide {
5483
- display : none !important ; }
5482
+ display : none; }
5484
5483
5485
5484
.show {
5486
- display : block !important ; }
5485
+ display : block; }
5487
5486
5488
5487
.inline {
5489
5488
display : inline-block; }
0 commit comments