PluginProbe
CSS & JavaScript Toolbox / 9.3
CSS & JavaScript Toolbox v9.3
trunk 0.3 0.8 10 10.1 11 11.2 11.3 11.4 11.5 11.6 11.7 11.8 11.9 11.9.1 12 12.0 12.0.1 12.0.3 12.0.4 12.0.5 12.0.6 12.0.7 6.0 6.0.11 All 60 releases
css-javascript-toolbox / views / blocks / block / public / css / block.css

block.css in CSS & JavaScript Toolbox 9.3, at views/blocks/block/public/css/block.css

289 lines 7.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 cjt-block is just a new added class so don't confuse about it
3 sometimes we need to use it instead of postbox class
4 like affecting only block box while running as Metabox inside edit post page!
5 */
6
7 b, strong {
8 color: #8c8c8c;
9 }
10
11 .cjt-block {min-width: 730px;}
12
13 .waitingToLoad{display: none !important;}
14
15 .postbox.cjt-block a,
16 .postbox.cjt-block a:hover,
17 .postbox.cjt-block a:visited {text-decoration: none;}
18
19 .postbox.cjt-block a,
20 .postbox.cjt-block a:visited {color: #a0a0a0 !important;}
21
22 .postbox.cjt-block a.active {color: #005DA4 !important;}
23
24 .postbox.cjt-block a:hover {color: #628ead !important;}
25
26 .inside {color: #7c7c7c;}
27
28 #cjtoolbox-admin {font-size: 12px !important;}
29 #cjtoolbox-admin div.postbox {
30 display:none;
31 -moz-border-radius: 6px;
32 -webkit-border-radius: 6px;
33 border-radius: 6px;
34 border-color: #cccccc;
35 }
36 /* Use 6px radius instead of 3px */
37 #cjtoolbox-admin .postbox .hndle {
38 -moz-border-top-left-radius: 6px;
39 -moz-border-top-right-radius: 6px;
40 -webkit-border-top-left-radius: 6px;
41 -webkit-border-top-right-radius: 6px;
42 border-top-left-radius: 6px;
43 border-top-right-radius: 6px;
44 border-bottom-color: #bbb;
45 font-size: 12px;
46 }
47 #cjtoolbox-admin #poststuff h3, .metabox-holder h3 {padding: 8px 10px;}
48 /* Editor langauges list */
49 .editor-langs {
50 position: absolute;
51 z-index: 2;
52 width: 200px;
53 overflow: hidden;
54 margin-top: -2px;
55 /* Border */
56 border-top-right-radius: 3px;
57 border-bottom-right-radius: 3px;
58 border-right-style: solid;
59 border-right-width: 1px;
60 border-color: inactiveborder;
61 margin-left: 33px;
62 }
63 .editor-langs select {
64 height: 70px;
65 width: 114px;
66 }
67 /** Toolbox **/
68 .block-toolbox {
69 height: 30px;
70 position: absolute;
71 right: 30px;
72 top: 0px;
73 }
74 .block-toolbox .icons-group {
75 display: inline-block;
76 }
77 /* Push all icons by 1 pixel down Put not the info icon */
78 .block-toolbox .icons-group.big-bar .cjt-tb-link{position: relative; top:1px}
79 .block-toolbox .icons-group.big-bar .cjttbl-info{position: static;}
80 .block-info .cjt-block-shortcode-text input {
81 background: transparent;
82 border: 0;
83 box-shadow: none;
84 width: 200px;
85 }
86 .block-toolbox .icons-group a.cjt-tb-link {
87 width: 24px;
88 height: 24px;
89 display: inline-block;
90 margin-top: 3px;
91 cursor: pointer;
92 }
93 .block-toolbox .icons-group a.il-60x23 {
94 width: 60px;
95 height: 23px;
96 }
97 .cjt-toolbox .icons-group .popup-menu.templates-lookup { /* Override default for Templates Lookup*/
98 border: 1px solid #ccc;
99 width: auto;
100 height: 357px;
101 left: 140px;
102 top: 31px;
103 margin-top: 2px;
104 margin-left: 1px;
105 }
106 /** Toolbox buttons **/
107
108 /* Editor languages classes */
109 .block-toolbox a.cjttbl-switch-editor-language{}
110 .block-toolbox a.cjttbl-editor-language-css { background: url(../images/toolbox/editor-languages/css.png); }
111 .block-toolbox a.cjttbl-editor-language-html { background: url(../images/toolbox/editor-languages/html.png); }
112 .block-toolbox a.cjttbl-editor-language-javascript { background: url(../images/toolbox/editor-languages/javascript.png); }
113 .block-toolbox a.cjttbl-editor-language-php { background: url(../images/toolbox/editor-languages/php.png); }
114 /* Other buttons */
115 .block-toolbox a.state-active { background: url(../images/toolbox/active.png); }
116 .block-toolbox a.state-inactive { background-image: url(../images/toolbox/inactive.png); }
117 .block-toolbox a.cjttbl-save {
118 background: url(../images/toolbox/save.gif);
119 background-position: left top !important;
120 text-decoration: none;
121 padding-left: 23px;
122 padding-top: 5px;
123 position: relative;
124 top: -7px;
125 width: 37px !important;
126 height: 18px !important;
127 }
128 /* Restore revision toolbox buttons. */
129 .block-toolbox a.cjttblSW-restore {
130 background: url(../images/toolbox/restore.png);
131 width: 50px !important;
132 }
133 .block-toolbox a.cjttbl-cancel-restore {
134 background: url(../images/toolbox/cancel-restore.png);
135 background-position: left top !important;
136 text-decoration: none;
137 padding-left: 23px;
138 padding-top: 5px;
139 position: relative;
140 top: -7px;
141 width: 45px !important;
142 height: 18px !important;
143 margin-right: 10px !important;
144 }
145
146 .block-toolbox a.cjttbl-save.cjttbs-loading {
147 top: -2px;
148 background-position: center center;
149 }
150
151 .block-toolbox a.cjttbl-save.cjttbs-disabled {background: url(../images/toolbox/save-inactive.png); }
152 .block-toolbox a.cjttbl-delete { background-image: url(../images/toolbox/delete.png); }
153 .block-toolbox a.location-header { background-image: url(../images/toolbox/header-hook.png); }
154 .block-toolbox a.location-footer { background-image: url(../images/toolbox/footer-hook.png); }
155 .block-toolbox a.cjttbl-get-shortcode { background-image: url(../images/toolbox/shortcode.png); }
156 .block-toolbox a.cjttbl-edit-name { background-image: url(../images/toolbox/edit-name.png); }
157 .block-toolbox a.cjttbl-info { background-image: url(../images/toolbox/info.png); }
158 .block-toolbox a.cjttbl-templates-lookup { background-image: url(../images/toolbox/templates-lookup.png); }
159
160 /** Editor Toolbox */
161 .cjt-toolbox.editor-toolbox {
162 position: relative;
163 float: right;
164 width: 40px;
165 height: 350px;
166 top: 5px;
167 margin-left: 10px;
168 display: none;
169 }
170
171 .loading-block{
172 font-weight: bold;
173 font-size: 13px;
174 color: #005da4;
175 }
176
177 /* Edit block name */
178 .edit-block-name {
179 position: absolute;
180 height: 30px;
181 top: 0px;
182 display: none;
183 font-size: 15px;
184 }
185 .hndle .file {
186 font-size: 15px;
187 margin-left: 7px;
188 cursor: pointer;
189 }
190 .hndle .name-file-separator {
191 font-size: 14px;
192 position: relative;
193 top: -1px;
194 margin-left: 5px;
195 cursor: pointer;
196 }
197 .edit-block-name .icons-group {
198 display: inline-block;
199 margin-left: 0px;
200 position: relative;
201 top: 3px;
202 }
203 .edit-block-name input.block-name {
204 width: 200px;
205 margin-right: 10px;
206 height: 24px;
207 position: relative;
208 top: -3px;
209 margin-left: -4px;
210 }
211 span.block-name {cursor: pointer; font-size: 15px;font-weight: normal;}
212 .edit-block-name .cancel { background-image: url(../images/edit-block-name/cancel.png); }
213 .edit-block-name .save { background-image: url(../images/edit-block-name/save.png); }
214
215 .cjcodeblock { margin-right:30px; }
216 .cjcontainer {min-width:700px;}
217 .datablock {padding-top: 14px;}
218 .datablock .code-editor { position: relative; width:auto; height:352px; }
219 .cjt-info-bar {
220 font-size: 11px;
221 margin-top: 6px;
222 color: #b5b5b5;
223 }
224 .cjt-info-bar span:not(:last-child) {
225 margin-right: 20px;
226 }
227
228 a.button-secondary { float:left; }
229 .linklist textarea { width:245px; font-size:11px; height:190px; }
230 .cjtitle { float:left; width:245px; }
231 .cssblock select { width:150px; }
232 .jsblock select { width:155px; }
233 .cjbutton { width:116px; height:24px; float:left; }
234 .cjbutton a { height:24px; width:24px; text-indent:-999em; display:block; float:left; }
235 .cjexample { clear:left; float:left; padding:5px 0 0; }
236
237 /** Editor Full Screen mode */
238 body.fullscreen {overflow: hidden;} /** No scroll-bars */
239 body.fullscreen #wpadminbar {display: none;} /** No admin menu */
240 .postbox.fullscreen {
241 position: fixed;
242 z-index: 10000;
243 top: 0px;
244 left: 0px;
245 width: 100%;
246 height: 100%;
247 }
248 .postbox.fullscreen .inside {padding: 0 !important;margin: 0 !important;}
249 .postbox.fullscreen .inside,
250 .postbox.fullscreen .cjcontainer,
251 .postbox.fullscreen .cjcontainer .cjcodeblock,
252 .postbox.fullscreen .cjcontainer .datablock,
253 .postbox.fullscreen .cjcontainer .code-editor {height: 100%;}
254 .postbox.fullscreen .cjcontainer .datablock {padding-top: 0;}
255 .postbox.fullscreen .cjcontainer .cjcodeblock {margin-right:328px;}
256 /* Lookup form */
257 .postbox.fullscreen .cjt-toolbox .icons-group .popup-menu.templates-lookup ,
258 .popup-menu {z-index: 32 !important;}
259
260 .ace_status-indicator {
261 position: relative;
262 left: 2px;
263 top: 5px;
264 /* z-index: 168; */
265 }
266
267 #cjt-inline-popup {display: none;}
268
269 #cjtoolbox > div.inside > div.cjcontainer > div > div.ace-statusbar {
270 float: right;
271 position: absolute;
272 top: -10px;
273 margin-left: 7px;
274 font-weight: bold;
275 font-size: 14px;
276 }
277
278 .ace_closeButton {
279 top: 35px;
280 left: 6px;
281 width: 62px;
282 height: 62px;
283 }
284
285 div[contains=setMode],
286 div[contains=setOptions],
287 div[contains=setMode],
288 div[contains=setTheme]
289 {display: none}