1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
|
}
.capsumWrite {
background-color: #ffb;
}
label {
white-space: nowrap;
}
.copy-button {
display: inline-block;
width: 14px;
height: 14px;
/*Note: .24em is slightly smaller than the average width of a normal space.*/
margin: -2px .24em 0 0;
padding: 0;
|
>
>
>
|
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
|
}
.capsumWrite {
background-color: #ffb;
}
label {
white-space: nowrap;
}
label[for] {
cursor: pointer;
}
.copy-button {
display: inline-block;
width: 14px;
height: 14px;
/*Note: .24em is slightly smaller than the average width of a normal space.*/
margin: -2px .24em 0 0;
padding: 0;
|
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
|
color: darkred;
background: yellow;
}
.warning {
color: black;
background: yellow;
}
.hidden {
/* The framework-wide way of hiding elements is to assign them this
CSS class. To make them visible again, remove it. The !important
qualifiers are unfortunate but sometimes necessary when hidden
element has other classes which specify visibility-related
options. */
position: absolute !important;
opacity: 0 !important;
pointer-events: none !important;
display: none !important;
}
input {
max-width: 95%;
|
|
|
|
|
|
>
>
>
>
>
|
|
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
|
color: darkred;
background: yellow;
}
.warning {
color: black;
background: yellow;
}
.hidden, .initially-hidden {
/* The framework-wide way of hiding elements is to assign them th
.hidden class. To make them visible again, remove it. The
!important qualifiers are unfortunate but sometimes necessary
when hidden element has other classes which specify
visibility-related options. The .initially-hidden class is for
pages which need to show, e.g., a progress widget while a large
WASM blob loads. Elements aside from that load-time widget can be
made .initially-hidden and then have that class removed once the
long-running startup process is done. See /pikchrshow for an
example. */
position: absolute !important;
opacity: 0 !important;
pointer-events: none !important;
display: none !important;
}
input {
max-width: 95%;
|