PluginProbe ʕ •ᴥ•ʔ
Code Manager / 1.0.16
Code Manager v1.0.16
1.0.47 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.25 1.0.26 1.0.27 1.0.28 1.0.3 1.0.30 1.0.31 1.0.32 1.0.33 1.0.34 1.0.35 1.0.36 1.0.37 1.0.38 1.0.39 1.0.4 1.0.40 1.0.41 1.0.42 1.0.43 1.0.44 1.0.45 1.0.46 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9
code-manager / assets / css / code_manager_dashboard.css
code-manager / assets / css Last commit date
images 4 years ago code_manager.css 4 years ago code_manager_dashboard.css 4 years ago code_manager_global.css 4 years ago code_manager_settings.css 4 years ago code_manager_tabmode.css 4 years ago jquery-ui.min.css 4 years ago
code_manager_dashboard.css
226 lines
1 #cm-dashboard {
2 background-color: #fff;
3 color: inherit;
4 width: 100%;
5 margin-left: -20px;
6 padding: 0 0 0 20px;
7 border-bottom: 1px solid #c3c4c7;
8 }
9 #cm-dashboard .cm-dashboard {
10 display: flex;
11 justify-content: flex-start;
12 flex-direction: row;
13 }
14 #cm-dashboard .cm-dashboard .cm-dashboard-group {
15 display: flex;
16 justify-content: space-around;
17 flex-direction: row;
18 flex-wrap: wrap;
19 padding: 0 3px;
20 border-right: 1px solid #c3c4c7;
21 }
22 #cm-dashboard .cm-dashboard .cm-dashboard-group:last-child {
23 margin-right: 20px;
24 border-right: none;
25 }
26 #cm-dashboard .cm-dashboard .cm-dashboard-group:hover {
27 background-color: #f6f7f7;
28 }
29 #cm-dashboard .cm-dashboard .cm-dashboard-group .cm-dashboard-item {
30 display: flex;
31 flex-direction: column;
32 font-size: 8.5px;
33 font-weight: bold;
34 align-items: center;
35 text-align: center;
36 text-decoration: none;
37 color: #3c434a;
38 }
39 #cm-dashboard .cm-dashboard .cm-dashboard-group .cm-dashboard-item:hover {
40 color: #2271b1;
41 cursor: pointer;
42 }
43 #cm-dashboard .cm-dashboard .cm-dashboard-group .cm-dashboard-item .fas {
44 font-size: 28px;
45 padding: 10px 8px 0 8px;
46 }
47 #cm-dashboard .cm-dashboard .cm-dashboard-group .cm-dashboard-item .material-icons {
48 font-size: 28px;
49 padding: 10px 8px 0 8px;
50 }
51 #cm-dashboard .cm-dashboard .cm-dashboard-group .cm-dashboard-item div {
52 padding: 8px 0;
53 }
54 #cm-dashboard .cm-dashboard .cm-dashboard-group .subject {
55 text-align: center;
56 font-size: 9px;
57 }
58 .cm-dashboard-toolbar {
59 font-size: 24px;
60 background-color: #fff;
61 color: inherit;
62 width: 100%;
63 margin-left: -20px;
64 padding: 0 0 0 20px;
65 border-bottom: 1px solid #c3c4c7;
66 }
67 .cm-dashboard-toolbar > div {
68 display: inline-block;
69 text-align: center;
70 font-size: 7px;
71 line-height: 7px;
72 margin: 0;
73 }
74 .cm-dashboard-toolbar > div > div {
75 padding: 8px;
76 }
77 .cm-dashboard-toolbar > div i {
78 font-size: 24px;
79 margin-bottom: 5px;
80 }
81 .cm-dashboard-toolbar > div:hover {
82 background-color: #f6f7f7;
83 }
84 #cm-dashboard-mobile {
85 background-color: #fff;
86 color: inherit;
87 margin-left: -10px;
88 padding: 0;
89 border-bottom: 1px solid #c3c4c7;
90 }
91 @media screen and (min-width: 782px) {
92 #cm-dashboard-mobile {
93 margin-left: -20px;
94 }
95 }
96 #cm-dashboard-drop-down {
97 display: flex;
98 flex-direction: row;
99 padding: 10px;
100 }
101 .cm_nav_title {
102 font-size: 16px;
103 font-weight: bold;
104 padding-left: 4px;
105 }
106 .cm_nav_toggle {
107 font-size: 16px;
108 font-weight: bold;
109 cursor: pointer;
110 }
111 #cm-dashboard-mobile ul {
112 display: none;
113 flex-direction: column;
114 flex-wrap: wrap;
115 justify-content: space-between;
116 text-align: left;
117 list-style-type: none;
118 margin-top: 0;
119 margin-bottom: 0;
120 }
121 #cm-dashboard-mobile ul li.menu-item {
122 cursor: pointer;
123 font-weight: bold;
124 padding: 8px 10px;
125 margin: 0;
126 }
127 #cm-dashboard-mobile ul li.menu-item a {
128 text-decoration: none;
129 color: inherit;
130 }
131 #cm-dashboard-mobile ul li.menu-item:hover {
132 background-color: grey;
133 color: white;
134 }
135 #cm-dashboard-mobile .material-icons {
136 width: 20px;
137 font-size: 16px;
138 vertical-align: text-top;
139 }
140 .cm-separator {
141 border-bottom: 1px solid #c3c4c7;
142 }
143
144 /* TOOLTIP */
145
146 .cm_tooltip_css {
147 background: black;
148 color: white;
149 border: 2px solid white;
150 font: bold 10px "Helvetica Neue", Sans-Serif;
151 text-transform: uppercase;
152 box-shadow: 0 0 7px black;
153 }
154 i.cm_tooltip:hover {
155 cursor: pointer;
156 }
157 .cm_tooltip_dashboard {
158 background: black;
159 color: white;
160 border: 2px solid white;
161 font: bold 10px "Helvetica Neue", Sans-Serif;
162 box-shadow: 0 0 7px black;
163 }
164 .cm_tooltip_icons_css, .arrow:after {
165 background: black;
166 border: 2px solid white;
167 }
168 .cm_tooltip_icons_css {
169 padding: 10px 20px;
170 color: white;
171 border-radius: 20px;
172 font: bold 10px "Helvetica Neue", Sans-Serif;
173 text-transform: uppercase;
174 box-shadow: 0 0 7px black;
175 }
176 .arrow {
177 width: 70px;
178 height: 16px;
179 overflow: hidden;
180 position: absolute;
181 left: 50%;
182 margin-left: -35px;
183 bottom: -16px;
184 }
185 .arrow.top {
186 top: -16px;
187 bottom: auto;
188 }
189 .arrow.left {
190 left: 20%;
191 }
192 .arrow:after {
193 content: "";
194 position: absolute;
195 left: 20px;
196 top: -20px;
197 width: 25px;
198 height: 25px;
199 box-shadow: 6px 5px 9px -9px black;
200 -webkit-transform: rotate(45deg);
201 -ms-transform: rotate(45deg);
202 transform: rotate(45deg);
203 }
204 .arrow.top:after {
205 bottom: -20px;
206 top: auto;
207 }
208 .php-error #adminmenuwrap {
209 margin-top: 0;
210 }
211
212 .cm_tab_mode_intro {
213 position: relative;
214 background-color: white;
215 border: 1px solid #c3c4c7;
216 border-radius: 10px;
217 padding: 10px 20px;
218 margin-top: 20px;
219 }
220 .cm_tab_mode_intro_close {
221 position: absolute;
222 top: -2px;
223 right: -2px;
224 font-size: 22px;
225 }
226