Skip to content

Commit

Permalink
work around the fact that uglifyjs in webpack-prod-builds removes aut…
Browse files Browse the repository at this point in the history
…oprefixes
  • Loading branch information
philippotto committed Oct 29, 2017
1 parent 884fc82 commit fe568ca
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions app/styles/checkbox.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ input[type="checkbox"] {
top: 0;
border-radius: 4px;

-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5),
0px 1px 0px rgba(255, 255, 255, 0.4);
-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5),
0px 1px 0px rgba(255, 255, 255, 0.4);
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5),
0px 1px 0px rgba(255, 255, 255, 0.4);
-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);

background: #45484d;
background: -webkit-linear-gradient(top, #222 0%, #45484d 100%);
background: -moz-linear-gradient(top, #222 0%, #45484d 100%);
background: -o-linear-gradient(top, #222 0%, #45484d 100%);
Expand Down

0 comments on commit fe568ca

Please sign in to comment.