From 58fb64f751458c5f592fe2b35c95b022a0f685e2 Mon Sep 17 00:00:00 2001 From: HWFord <54360213+HWFord@users.noreply.github.com> Date: Thu, 21 Nov 2019 14:52:37 +0100 Subject: [PATCH] Dark mode message boxes color made darker --- admin/themes/roma/theme.css | 68 +++++++++++++++++++++++++++++++++++-- 1 file changed, 66 insertions(+), 2 deletions(-) diff --git a/admin/themes/roma/theme.css b/admin/themes/roma/theme.css index de5a9fab6..1cecf89f4 100644 --- a/admin/themes/roma/theme.css +++ b/admin/themes/roma/theme.css @@ -196,7 +196,7 @@ INPUT[type="text"].large { width: 317px; } } .buttonLike:disabled, input[type="button"]:disabled, input[type="submit"]:disabled, input[type="reset"]:disabled { - color:#555; + color:#555; border-color:#666; cursor:not-allowed; background-color: #666; @@ -415,4 +415,68 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important; .selectedAlbum span {background-color: #555; color: #999;} #uploadForm li.plupload_droptext {background-color: #343434!important; color: #777 !important;} .addFilesButtonChanged {background-color: #888;} -.addFilesButtonChanged:hover {background-color: #777;} \ No newline at end of file +.addFilesButtonChanged:hover {background-color: #777;} + +/*Error message*/ + +.errors { + color: #ffc4bf; + background-color: #d31100; + border-left: 4px solid #ffc4bf; +} + +.errors li{ + color: #ff0303; +} + +.errors a{ + background-color: #ff4838; + padding: 2px 7px; + color: #ffe8e6; +} + +/*Success message*/ + +.infos { + color: #9bff92; + background-color: #10bb00; + border-left: 4px solid #9bff92; +} + +.infos li{ + color: #9bff92; +} + +.infos a{ + background-color: #12e100; + padding: 2px 7px; + color: #e3ffe1; +} + +/*Warning message*/ + +.warnings { + color: #ffc58c; + background-color: #ee6300; + border-left: 4px solid #ffc58c; +} + +.warnings a{ + background-color: #ff8e3d; + padding: 2px 7px; + color: #ffedda; +} + +/*announcement message*/ + +.messages { + color: #45a8ff; + background-color: #003360; + border-left: 4px solid #45a8ff; +} + +.eiw .messages a { + background-color: #00529b; + color: #a7d6ff; + padding: 2px 7px; +}