images
2 years ago
code_manager.css
2 years ago
code_manager_dashboard.css
2 years ago
code_manager_global.css
2 years ago
code_manager_settings.css
2 years ago
code_manager_tabmode.css
2 years ago
jquery-ui.min.css
2 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 |