-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfix-old-safari.css
32 lines (30 loc) · 1022 Bytes
/
fix-old-safari.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Base Material styles for elements in Safari < 6
* These are more difficult to theme, but will improve the appearances of some elements.
* Supplement to the MaterialZ CSS library
*
* Copyright 2015-2021 Zachary Yaro
* Released under the MIT license
* https://materialz.dev/LICENSE.txt
*/
@charset "UTF-8";
input[type="radio"]::after {
-webkit-box-shadow: inset 0 0 0 0 black;
-moz-box-shadow: inset 0 0 0 0 black;
box-shadow: inset 0 0 0 0 black;
}
input[type="radio"]:checked::after {
color: inherit;
-webkit-box-shadow: inset 0 0 0 10px #40c4ff;
-moz-box-shadow: inset 0 0 0 10px #40c4ff;
box-shadow: inset 0 0 0 10px #40c4ff;
}
input[type="checkbox"] {
-webkit-box-shadow: inset 0 0 0 0 black;
-moz-box-shadow: inset 0 0 0 0 black;
box-shadow: inset 0 0 0 0 black;
}
input[type="checkbox"]:checked {
-webkit-box-shadow: inset 0 0 0 10px #40c4ff;
-moz-box-shadow: inset 0 0 0 10px #40c4ff;
box-shadow: inset 0 0 0 10px #40c4ff;
}