PluginProbe ʕ •ᴥ•ʔ
Code Manager / 1.0.6
Code Manager v1.0.6
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.css
code-manager / assets / css Last commit date
images 5 years ago code_manager.css 5 years ago code_manager_global.css 5 years ago code_manager_settings.css 5 years ago code_manager_tabmode.css 5 years ago jquery-ui.min.css 5 years ago
code_manager.css
86 lines
1 .CodeMirror {
2 border: 1px solid #ddd;
3 }
4 .CodeMirror-fullscreen {
5 position: fixed;
6 top: 134px;
7 left: 180px;
8 right: 20px;
9 bottom: 0;
10 height: auto;
11 z-index: 9;
12 }
13 #iframe_container {
14 height: 600px;
15 resize: vertical;
16 overflow: auto;
17 }
18 #iframe_code_test {
19 width: 100%;
20 height: 100%;
21 }
22 fieldset.cm_fieldset {
23 border: 1px solid #ccd0d4;
24 border-radius: 4px;
25 box-shadow: 0 1px 1px rgba(0,0,0,.04);
26 padding: 10px;
27 }
28 fieldset.cm_fieldset legend {
29 font-weight: bold;
30 }
31 .cm_simple_table {
32 padding: 0;
33 width: 100%;
34 margin-bottom: 0;
35 padding-top: 5px;
36 padding-bottom: 5px;
37 }
38 .cm_simple_table td.label {
39 display: table-cell;
40 vertical-align: middle;
41 width: 15%;
42 text-align: right;
43 }
44 .cm_simple_table td.data {
45 display: table-cell;
46 vertical-align: middle;
47 width: 70%;
48 padding-bottom: 5px !important;
49 padding-top: 5px !important;
50 }
51 .cm_simple_table td.data input, .cm_simple_table td.data select, .cm_simple_table td.data textarea {
52 width: 100%;
53 max-width: 100%;
54 }
55 .cm_simple_table td.data textarea {
56 height: 150px;
57 }
58 .cm_simple_table td.data input[type='checkbox'] {
59 width: 16px;
60 height: 16px;
61 }
62 .cm_simple_table td.icon {
63 display: table-cell;
64 vertical-align: middle;
65 width: 15%;
66 text-align: left;
67 padding-top: 1px;
68 }
69 table.cm_simple_table > tbody > :nth-child(2n+1) td {
70 background-color: #f9f9f9;
71 display: table-cell;
72 }
73 table.cm_simple_table tbody td.label {
74 padding-right: 5px;
75 }
76 table.cm_simple_table tbody td.icon {
77 padding-left: 5px;
78 }
79 .cm_data_type {
80 font-size: 80%;
81 background-color: white;
82 border: 1px solid gray;
83 padding-left: 1px;
84 padding-right: 1px;
85 }
86