-
Notifications
You must be signed in to change notification settings - Fork 1
/
fix-old-ie.css
84 lines (80 loc) · 2.5 KB
/
fix-old-ie.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* Base Material styles for elements in IE < 9
* 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";
button:hover,
button:focus,
[role="button"]:hover,
[role="button"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
select:hover,
select:focus {
background-color: #e2e3e3;
background-color: rgba(128, 128, 128, 0.2);
}
/* The “active” class is used to force the appearance of the active/pressed state */
button:active,
button.active,
[role="button"]:active,
[role="button"].active,
input[type="button"]:active,
input[type="button"].active,
input[type="submit"]:active,
input[type="submit"].active,
input[type="reset"]:active,
input[type="reset"].active,
select:active,
select.active {
background-color: #c4c5c5;
background-color: rgba(128, 128, 128, 0.4);
}
/* --------======== DEPTH SHADOWS ========-------- */
.z1 {
filter: progid:DXImageTransform.Microsoft.Glow(Color=#b8b8b8,Strength=5);
-ms-filter: "progid:DXImageTransform.Microsoft.Glow(Color=#b8b8b8,Strength=5)";
}
button.z1:hover,
button.z1:focus,
[role="button"].z1:hover,
[role="button"].z1:focus,
input[type="button"].z1:hover,
input[type="button"].z1:focus,
input[type="submit"].z1:hover,
input[type="submit"].z1:focus,
input[type="reset"].z1:hover,
input[type="reset"].z1:focus {
filter: progid:DXImageTransform.Microsoft.Glow(Color=#b4b4b4,Strength=7);
-ms-filter: "progid:DXImageTransform.Microsoft.Glow(Color=#b4b4b4,Strength=7)";
}
.z2,
button.z1:active,
button.z1.active,
[role="button"].z1:active,
[role="button"].z1.active,
input[type="button"].z1:active,
input[type="button"].z1.active,
input[type="submit"].z1:active,
input[type="submit"].z1.active,
input[type="reset"].z1:active,
input[type="reset"].z1.active {
filter: progid:DXImageTransform.Microsoft.Glow(Color=#b0b0b0,Strength=10);
-ms-filter: "progid:DXImageTransform.Microsoft.Glow(Color=#b0b0b0,Strength=10)";
}
button.z1:disabled,
[role="button"].z1.disabled,
input[type="button"].z1.disabled,
input[type="submit"].z1.disabled,
input[type="reset"].z1.disabled {
filter: progid:DXImageTransform.Microsoft.Glow(Color=#b8b8b8,Strength=5);
-ms-filter: "progid:DXImageTransform.Microsoft.Glow(Color=#b8b8b8,Strength=5)";
}