945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
|
}
.warning {
color: darkred;
background: yellow;
opacity: 0.7;
}
.hidden {
position: absolute;
opacity: 0;
pointer-events: none;
display: none;
}
input {
max-width: 95%;
}
textarea {
max-width: 95%;
}
|
>
>
>
>
>
|
|
|
|
|
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
|
}
.warning {
color: darkred;
background: yellow;
opacity: 0.7;
}
.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%;
}
textarea {
max-width: 95%;
}
|