diff options
Diffstat (limited to '')
-rw-r--r-- | template/default/default.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/template/default/default.css b/template/default/default.css index 35f54769c..2b5ed28fc 100644 --- a/template/default/default.css +++ b/template/default/default.css @@ -381,3 +381,35 @@ pre { text-align:left; } label:hover { cursor: pointer; } + +/** + * Errors box in administration + */ +#errors { + text-align: left; + background-color: red; + background-image: url(admin/images/errors.png); + background-repeat: no-repeat; + background-position: top right; + color: white; + font-weight: bold; + margin: 5px; + border:1px solid black; + padding: 10px 50px 10px 10px; +} + +/** + * Informations box in administration + */ +#infos { + text-align: left; + background-color: #eee; + background-image: url(admin/images/infos.png); + background-repeat: no-repeat; + background-position: top right; + color: black; + font-weight: bold; + margin: 5px; + border:1px solid gray; + padding: 10px 50px 10px 10px; +}
\ No newline at end of file |