Skip to content

Commit 9045f3c

Browse files
committed
fix: removed -moz-box-shadow
1 parent f97366d commit 9045f3c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/css/box-shadow.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525

2626
.box-shadow-bottom{
2727
-webkit-box-shadow: 0 10px 6px -6px #777;
28-
-moz-box-shadow: 0 10px 6px -6px #777;
28+
/*-moz-box-shadow: 0 10px 6px -6px #777;*/
2929
box-shadow: 0 10px 6px -6px #777;
3030
}
3131

3232
.box-shadow-bottom-4 {
33-
-moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
33+
/*-moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);*/
3434
-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
3535
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
3636
}

src/css/dropdown.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
display: block;
1111
color: white;
1212
background: #C0392B;
13-
-moz-box-shadow: 0 1px 0 #d65548 inset, 0 -1px 0 #962d22 inset;
13+
/*-moz-box-shadow: 0 1px 0 #d65548 inset, 0 -1px 0 #962d22 inset;*/
1414
-webkit-box-shadow: 0 1px 0 #d65548 inset, 0 -1px 0 #962d22 inset;
1515
box-shadow: 0 1px 0 #d65548 inset, 0 -1px 0 #962d22 inset;
1616
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
@@ -65,7 +65,7 @@
6565
display: block;
6666
color: #6f6f6f;
6767
background: #EEE;
68-
-moz-box-shadow: 0 1px 0 white inset, 0 -1px 0 #d5d5d5 inset;
68+
/*-moz-box-shadow: 0 1px 0 white inset, 0 -1px 0 #d5d5d5 inset;*/
6969
-webkit-box-shadow: 0 1px 0 white inset, 0 -1px 0 #d5d5d5 inset;
7070
box-shadow: 0 1px 0 white inset, 0 -1px 0 #d5d5d5 inset;
7171
text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.3);

src/css/navbar.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
background: #fff;
1818
transform: translateY(0% )!important;
1919
-webkit-transform: translateY(0%) !important;
20-
-moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
20+
/*-moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);*/
2121
-webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
2222
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
2323
}

0 commit comments

Comments
 (0)