Skip to content

Commit 3851b2f

Browse files
adamzapbmispelon
authored andcommitted
Remove unneeded vendor prefixes for box-shadow
Browser versions that made these vendor prefixes obsolete were released by the middle of 2011: https://caniuse.com/css-boxshadow.
1 parent 5537f96 commit 3851b2f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

djangoproject/scss/_utils.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,10 @@ html {
172172

173173
// Secondary content box-shadow:
174174
@mixin secondary-shadow-top {
175-
-moz-box-shadow: 0 4px 8px rgba(12, 60, 38, 0.07);
176-
-webkit-box-shadow: 0 4px 8px rgba(12, 60, 38, 0.07);
177175
box-shadow: 0 4px 8px rgba(12, 60, 38, 0.07);
178176
}
179177

180178
@mixin secondary-shadow-bottom {
181-
-moz-box-shadow: 0 -4px 8px rgba(12, 60, 38, 0.07);
182-
-webkit-box-shadow: 0 -4px 8px rgba(12, 60, 38, 0.07);
183179
box-shadow: 0 -4px 8px rgba(12, 60, 38, 0.07);
184180
}
185181

0 commit comments

Comments
 (0)