PluginProbe
CSS & JavaScript Toolbox / 0.3
CSS & JavaScript Toolbox v0.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 / media / admin.css

admin.css in CSS & JavaScript Toolbox 0.3, at media/admin.css

70 lines 4.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /** CSS & Javascript Toolkit - Admin CSS **/
2 .wrap { position:relative; }
3 .wrap h2 { float:left; }
4 #wpcontent { min-width:1040px; }
5 #post-body { min-width:1020px; }
6 #cjtoolbox_donate { float:right; position:relative; right:20px; line-height:40px; width:380px; }
7 #cjtoolbox_donate input { position:absolute; right:0; top:0; }
8
9 #cjtoolbox_form { clear:both; }
10 .cjcodeblock { margin-right:350px; min-width:660px; }
11 .cjpageblock { width:320px; position:absolute; right:12px; }
12 .pagelist { padding:10px; height:172px; overflow:auto; background:#fff; border:1px solid #ccc; }
13 .pagelist li { line-height:19px; word-wrap:break-word; margin:0; padding:0; }
14 .pagelist ul { margin-left:18px; }
15 .cssblock, .jsblock { width:50%; }
16 .cssblock { float:left; }
17 .jsblock { float:right; }
18 .datablock textarea { width:100%; height:242px; }
19 .deleteblock a.button-secondary { padding:5px 10px; margin:10px 0 5px; float:right; }
20 .linklist textarea { width:290px; font-size:11px; height:190px; }
21
22 .cjtitle { float:left; width:245px; }
23 .cssblock select { width:150px; }
24 .jsblock select { width:155px; }
25 .cjbutton { width:85px; height:20px; float:left; }
26 .cjbutton a { height:20px; width:20px; text-indent:-999em; margin:5px 5px 0 0; display:block; float:left; }
27 .cjexample { clear:both; float:left; padding:5px 0 0; }
28 a.add_code { background:url(icons/add_code.png) no-repeat; }
29 a.delete_code { background:url(icons/delete_code.png) no-repeat; }
30 a.insert_code { background:url(icons/insert_code.png) no-repeat; }
31 a.l_ext { background:url(icons/external_link.gif) no-repeat; width:13px; height:11px; display:inline-block; }
32
33 #cjtoolbox-addblock { float:left; padding:5px 10px; }
34
35 #cjtoolbox-tips { padding:20px; }
36 #cjtoolbox-tips ul li { list-style-type:square; }
37
38
39 .cj-save-popup { position:absolute; -moz-border-radius:12px; -webkit-border-radius:12px; border-radius:12px; background:rgba(0, 0, 0, 0.4); color:#fff; font-size:24px; text-align:center; display:none; z-index:99; }
40 #cj-save-save { background:url(accept.png) 20px 50% no-repeat; padding:30px 30px 30px 70px; }
41 #cj-save-reset { background:url(warning.png) 20px 50% no-repeat; padding:30px 30px 30px 70px; }
42
43 #cj-ajax-load { position:absolute; background:rgba(255, 255, 255, 0.8); text-align:center; display:none; padding:50px; z-index:999; width:100%; height:100%; }
44 #cj-ajax-load img { position:absolute; }
45
46 #save_bar { background: #f3f3f3; border:solid #ccc; border-width:1px; padding: 10px 20px; text-align: right; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; }
47 .hide { display:none }
48 .ajax-loading-img-top { margin: 8px 4px 0; float:left }
49
50
51 /*
52 * jQuery UI Tabs 1.8.16
53 *
54 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
55 * Dual licensed under the MIT or GPL Version 2 licenses.
56 * http://jquery.org/license
57 *
58 * http://docs.jquery.com/UI/Tabs#theming
59 */
60 .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
61 .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
62 .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; padding: 0; white-space: nowrap; }
63 .ui-tabs .ui-tabs-nav li a { background:#F1F1F1; color:#999999; border-color:#DFDFDF #DFDFDF #CCCCCC; height:18px;margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border-width:1px;border-style:solid;-moz-border-radius:3px 3px 0 0;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-right-radius:3px;-khtml-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px; border-bottom: 0 !important; }
64 .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
65 .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
66 .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; background:#E9E9E9; border-color:#CCCCCC #CCCCCC #E9E9E9; color:#333333; }
67 .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
68 .ui-tabs .ui-tabs-panel { display: block; padding: 5px 10px; background: #EFEFEF; border-color:#CCCCCC; border-style:solid;border-width:1px;border-collapse:separate;-moz-border-radius:3px 3px 0 0;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-right-radius:3px;-khtml-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px; clear:both; height:228px; }
69 .ui-tabs .ui-tabs-hide { display: none !important; }
70