1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
/* plugin:configmanager */
#config__manager div.success,
#config__manager div.error,
#config__manager div.info {
background-position: 0.5em;
padding: 0.5em;
text-align: center;
}
#config__manager fieldset {
margin: 1em;
width: auto;
margin-bottom: 2em;
background-color: __background_alt__;
color: __text__;
padding: 0 1em;
}
[dir=rtl] #config__manager fieldset {
clear: both;
}
#config__manager legend {
font-size: 1.25em;
}
#config__manager form { }
#config__manager table {
margin: 1em 0;
width: 100%;
}
#config__manager fieldset td {
text-align: left;
}
[dir=rtl] #config__manager fieldset td {
text-align: right;
}
#config__manager fieldset td.value {
/* fixed data column width */
width: 31em;
}
[dir=rtl] #config__manager label {
text-align: right;
}
[dir=rtl] #config__manager td.value input.checkbox {
float: right;
padding-left: 0;
padding-right: 0.7em;
}
[dir=rtl] #config__manager td.value label {
float: left;
}
#config__manager td.label {
padding: 0.8em 0 0.6em 1em;
vertical-align: top;
}
[dir=rtl] #config__manager td.label {
padding: 0.8em 1em 0.6em 0;
}
#config__manager td.label label {
clear: left;
display: block;
}
[dir=rtl] #config__manager td.label label {
clear: right;
}
#config__manager td.label img {
padding: 0 10px;
vertical-align: middle;
float: right;
}
[dir=rtl] #config__manager td.label img {
float: left;
}
#config__manager td.label span.outkey {
font-size: 70%;
margin-top: -1.7em;
margin-left: -1em;
display: block;
background-color: __background__;
color: __text_neu__;
float: left;
padding: 0 0.1em;
position: relative;
z-index: 1;
}
[dir=rtl] #config__manager td.label span.outkey {
float: right;
margin-right: 1em;
}
#config__manager td input.edit {
width: 30em;
}
#config__manager td .input {
width: 30.8em;
}
#config__manager td select.edit { }
#config__manager td textarea.edit {
width: 27.5em;
height: 4em;
}
#config__manager td textarea.edit:focus {
height: 10em;
}
#config__manager tr .input,
#config__manager tr input,
#config__manager tr textarea,
#config__manager tr select {
background-color: #fff;
color: #000;
}
#config__manager tr.default .input,
#config__manager tr.default input,
#config__manager tr.default textarea,
#config__manager tr.default select,
#config__manager .selectiondefault {
background-color: #ccddff;
color: #000;
}
#config__manager tr.protected .input,
#config__manager tr.protected input,
#config__manager tr.protected textarea,
#config__manager tr.protected select,
#config__manager tr.protected .selection {
background-color: #ffcccc!important;
color: #000 !important;
}
#config__manager td.error { background-color: red; color: #000; }
#config__manager .selection {
width: 14.8em;
float: left;
margin: 0 0.3em 2px 0;
}
[dir=rtl] #config__manager .selection {
width: 14.8em;
float: right;
margin: 0 0 2px 0.3em;
}
#config__manager .selection label {
float: right;
width: 14em;
font-size: 90%;
}
#config__manager .other {
clear: both;
padding-top: 0.5em;
}
#config__manager .other label {
padding-left: 2px;
font-size: 90%;
}
/* end plugin:configmanager */
|