PluginProbe
Adminimize / 1.11.9
Adminimize v1.11.9
1.11.14 1.11.13 1.11.1 1.11.10 1.11.11 1.11.12 1.11.2 1.11.3 1.11.4 1.11.5 1.11.6 1.11.7 1.11.8 1.11.9 1.3 1.4.7 1.6 1.7.12 1.7.13 1.7.14 1.7.15 1.7.16 1.7.17 1.7.18 1.7.19 All 53 releases
← All changes | css/style.css +112 -2 1.7.171.11.9 View file →
@@ -1,3 +1,113 @@
1 -tr:hover {
2 - background: #DFDFDF !important;
1 +@CHARSET "UTF-8";
2 +/**
3 + * Stylesheet for the Adminimize settings page.
4 + *
5 + * @version 2016-03-21
6 + */
7 +
8 +#minimenu td a {
9 + display: block;
3 10 }
11 +
12 +table th, table tr:nth-child(odd) {
13 + background: #eee;
14 +}
15 +
16 +.widefat thead td input[type=checkbox] {
17 + margin: 0 2px 0 0;
18 + vertical-align: middle;
19 +}
20 +
21 +table tbody td span, table tbody th span {
22 + float: right;
23 +}
24 +
25 +tr:hover,
26 +td:nth-child(even) + td:hover {
27 + background-color: #dfdfdf !important;
28 +}
29 +
30 +table.widefat th:nth-child(even),
31 +table.widefat td:nth-child(even) {
32 + background-color: #ffebe8;
33 +}
34 +
35 +table.widefat th:nth-child(even):hover,
36 +table.widefat td:nth-child(even):hover {
37 + background-color: #dfdfdf;
38 +}
39 +
40 +td:first-child {
41 + width: 30%;
42 +}
43 +
44 +table.widefat tr:nth-child(2) {
45 + font-style: italic;
46 +}
47 +
48 +.widefat td span, .widefat th span {
49 + color: #ccc;
50 + font-size: x-small;
51 + font-weight: lighter;
52 +}
53 +
54 +table.usertheme .num {
55 + width: 25px;
56 +}
57 +
58 +table.config_menu span.awaiting-mod{
59 + display: none;
60 +}
61 +
62 +#adminimize-toggle{
63 + border-width: 0;
64 + color: #777;
65 + cursor: not-allowed;
66 +}
67 +
68 +.switch {
69 + position: relative;
70 + display: inline-block;
71 + width: 40px;
72 + height: 20px;
73 + background-color: #dedede;
74 + border-radius: 20px;
75 +}
76 +
77 +.switch:after {
78 + content: "";
79 + position: absolute;
80 + width: 18px;
81 + height: 18px;
82 + border-radius: 50%;
83 + background-color: #fff;
84 + top: 1px;
85 + left: 1px;
86 + -webkit-transition: all .3s;
87 + transition: all .3s;
88 +}
89 +
90 +.adminimize-checkbox:checked + .switch::after {
91 + left : 20px;
92 +}
93 +
94 +.adminimize-checkbox:checked + .switch {
95 + background-color: #0d84e3;
96 +}
97 +
98 +.adminimize-checkbox {
99 + visibility: hidden;
100 +}
101 +
102 +#adminimize-export-role {
103 + display: none;
104 + align-items: flex-end;
105 +}
106 +
107 +#adminimize-export-role select {
108 + display: block;
109 +}
110 +
111 +#adminimize-export-role option {
112 + padding: 5px;
113 +}