940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
|
transition: max-height 0.25s ease-out;
}
.error {
color: darkred;
background: yellow;
}
.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. */
|
|
<
|
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
|
transition: max-height 0.25s ease-out;
}
.error {
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. */
|
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
|
border: 1px solid black;
border-radius: 0.25em;
position: absolute;
display: inline-block;
z-index: 100;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
background-color: inherit;
font-size: 80%;
}
.fossil-toast {/* "toast"-style popup message */
padding: 0.25em 0.5em;
margin: 0;
border-radius: 0.25em;
font-size: 1em;
opacity: 0.8;
border-size: 1px;
border-style: dotted;
border-color: rgb( 127, 127, 127, 0.5 );
}
blockquote.file-content {
/* file content block in the /file page */
margin: 0 1em;
}
|
<
>
|
>
>
>
>
>
|
<
<
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
>
>
|
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
|
border: 1px solid black;
border-radius: 0.25em;
position: absolute;
display: inline-block;
z-index: 100;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
background-color: inherit;
}
.fossil-toast-message {
/* "toast"-style popup message.
See fossil.popupwidget:toast() */
position: absolute;
display: block;
z-index: 101;
text-align: left;
padding: 0.15em 0.5em;
margin: 0;
font-size: 1em;
border-width: 1px;
border-style: solid;
border-color: rgba( 127, 127, 127, 0.75 );
border-radius: 0.25em;
background-color: rgba(20, 20, 20, 1)
/* problem: if we inherit the color it may either be
transparent or inherit translucency via the
skin, leaving it unreadable. Since we set the bg
color we must also set the fg color. */;
color: rgba(235, 235, 235, 0.9);
}
.fossil-toast-message.error,
.fossil-toast-message.warning {
background: yellow;
}
.fossil-toast-message.error {
font-weight: bold;
color: darkred;
border-color: darkred;
}
.fossil-toast-message.warning {
color: black;
}
blockquote.file-content {
/* file content block in the /file page */
margin: 0 1em;
}
|