1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
|
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
|
-
+
-
+
|
both a LABEL tag and an INPUT or SELECT control. The wrapper is
"necessary", as opposed to placing the INPUT in the LABEL, so that
we can include multiple INPUT elements (e.g. a set of radio
buttons). Note that these elements must sometimes be BLOCK elements
(e.g. DIV) so that certain nesting constructs are legal.
*/
.input-with-label {
border: 1px inset #808080;
border: 1px inset rgba(128, 128, 128, 0.5);
border-radius: 0.25em;
padding: 0.25em 0.4em;
padding: 0.15em 0.25em;
margin: 0 0.5em;
display: inline-block;
cursor: default;
white-space: nowrap;
}
.input-with-label > * {
vertical-align: middle;
|
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
|
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
|
+
-
+
|
*/
.help-buttonlet {
display: inline-block;
min-width: 1rem;
max-width: 1rem;
min-height: 1rem;
max-height: 1rem;
line-height: 1 /*important for some skins*/;
font-size: 0.9em;
font-size: 100%;
border-radius: 0.5rem;
background-color: rgba(54, 54, 255,1);
color: rgb(255, 255, 255);
cursor: pointer;
font-family: monspace;
text-align: center;
margin: 0 0 0 0.35em;
|