From 95cac369d6caa9e4cb88a76e7155bd38efb8b85a Mon Sep 17 00:00:00 2001 From: Andrea Falcon Date: Fri, 29 Jul 2022 09:32:20 +0200 Subject: [PATCH 1/8] fix: color pma_quick_warp links Signed-off-by: Andrea Falcon --- themes/metro/scss/_navigation.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/themes/metro/scss/_navigation.scss b/themes/metro/scss/_navigation.scss index 27a3500710..eb6a66df13 100644 --- a/themes/metro/scss/_navigation.scss +++ b/themes/metro/scss/_navigation.scss @@ -475,6 +475,7 @@ li.fast_filter { border: 1px solid #ddd; background: #f2f2f2; cursor: pointer; + color: #333; } .drop_list { From 479c5e32bae13a2b22f77b698bc9af4ae104ad8c Mon Sep 17 00:00:00 2001 From: Andrea Falcon Date: Fri, 29 Jul 2022 09:36:42 +0200 Subject: [PATCH 2/8] fix: close button style in modals Signed-off-by: Andrea Falcon --- themes/metro/scss/_common.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/themes/metro/scss/_common.scss b/themes/metro/scss/_common.scss index 59c34f774e..022f351704 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -2688,8 +2688,15 @@ meter { body { .ui-dialog { .ui-dialog-titlebar-close { - right: 0.3em; + right: 1em; left: initial; + border: 1px solid white; + + &::after { + content: "\00d7"; + font-size: 1.2rem; + line-height: 0.6rem; + } } .ui-dialog-title { From 0c4cfebf95702f3b91553150fbd15911d653d799 Mon Sep 17 00:00:00 2001 From: Andrea Falcon Date: Fri, 29 Jul 2022 09:37:14 +0200 Subject: [PATCH 3/8] fix: change color for alert-info Signed-off-by: Andrea Falcon --- themes/metro/scss/_alert.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/themes/metro/scss/_alert.scss b/themes/metro/scss/_alert.scss index d348396831..99166150bc 100644 --- a/themes/metro/scss/_alert.scss +++ b/themes/metro/scss/_alert.scss @@ -24,6 +24,20 @@ } } +.alert-info { + color: $button-color; + background-color: $navi-background-light; + background-image: none; + + a { + color: $button-color; + } + + h1 { + color: $navi-color; + } +} + .alert-success { color: $button-color; background-color: $browse-success-color; From 4a967ef9aa723b79386f2474a475aec1bbe649a5 Mon Sep 17 00:00:00 2001 From: Andrea Falcon Date: Fri, 29 Jul 2022 09:38:11 +0200 Subject: [PATCH 4/8] fix: change drop button icon in database page Signed-off-by: Andrea Falcon --- themes/metro/img/b_deltbl_white.png | Bin 0 -> 155 bytes themes/metro/scss/_icons.scss | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 themes/metro/img/b_deltbl_white.png diff --git a/themes/metro/img/b_deltbl_white.png b/themes/metro/img/b_deltbl_white.png new file mode 100644 index 0000000000000000000000000000000000000000..8f5b30a45caa49ebca23b5fc785c5226daa4a7b8 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!D3?x-;bCrM;V{wqX6XVU3I`u#fXMsm#F#`j) zFbFd;%$g$s6l4qV32_C||NsAAdUO6=Ad9Ia$S;`TfAmD9tw5fFr;B4q#hl~>AgDiZ rV9|kq|NV}QtSuqa6Wkp%f7>(MyTw)EdvVo6pjrk`S3j3^P6 Date: Fri, 29 Jul 2022 09:38:45 +0200 Subject: [PATCH 5/8] fix: hover buttons style Signed-off-by: Andrea Falcon --- themes/metro/scss/_common.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/themes/metro/scss/_common.scss b/themes/metro/scss/_common.scss index 022f351704..adef32396d 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -263,6 +263,12 @@ button:not(.accordion-button) { color: $button-color; text-decoration: none; background-color: $button-background; + + &:hover { + background-color: $button-hover; + color: white; + text-decoration: none; + } } textarea { From 3209d6de109f94abea1d8414e0daf1a0946668b7 Mon Sep 17 00:00:00 2001 From: Andrea Falcon Date: Fri, 29 Jul 2022 09:39:13 +0200 Subject: [PATCH 6/8] fix: change styles button print and account locking Signed-off-by: Andrea Falcon --- themes/metro/scss/_common.scss | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/themes/metro/scss/_common.scss b/themes/metro/scss/_common.scss index adef32396d..fbf7eee5d8 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -271,6 +271,32 @@ button:not(.accordion-button) { } } +button.jsAccountLocking { + background: none; + color: var(--bs-link-color); + margin-left: 0; + + &:hover { + background: none; + color: var(--bs-link-color); + text-decoration: underline; + } +} + +button.jsPrintButton { + background: none; + color: #444; + margin-left: 0; + padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x); + + &:hover { + background: none; + color: #444; + text-decoration: none; + border: 1px solid #444; + } +} + textarea { overflow: visible; border: 1px solid $browse-gray-color; From 1a5f648ded9d089265d9a94c1005fe0b0d959733 Mon Sep 17 00:00:00 2001 From: Andrea Falcon Date: Fri, 29 Jul 2022 09:39:56 +0200 Subject: [PATCH 7/8] fix: hover pma_quick_warp buttons Signed-off-by: Andrea Falcon --- themes/metro/scss/_navigation.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/themes/metro/scss/_navigation.scss b/themes/metro/scss/_navigation.scss index eb6a66df13..0953d586a5 100644 --- a/themes/metro/scss/_navigation.scss +++ b/themes/metro/scss/_navigation.scss @@ -481,6 +481,7 @@ li.fast_filter { .drop_list { &:hover .drop_button { background: #fff; + color: #333; } ul { From b44b5a584cc59d7874d68be3a224df21cedb7801 Mon Sep 17 00:00:00 2001 From: Andrea Falcon Date: Fri, 29 Jul 2022 09:56:12 +0200 Subject: [PATCH 8/8] fix: login styles page Signed-off-by: Andrea Falcon --- themes/metro/scss/_common.scss | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/themes/metro/scss/_common.scss b/themes/metro/scss/_common.scss index fbf7eee5d8..c5c7ed4dfc 100644 --- a/themes/metro/scss/_common.scss +++ b/themes/metro/scss/_common.scss @@ -104,10 +104,10 @@ body#loginform { select { margin: 0 !important; - border: 1px solid $navi-background; - background: $navi-background; - color: $navi-color; - padding-left: 0 !important; + border: 1px solid #ccc; + background: white; + color: #333; + padding-left: 5px; font-family: $font-family-base; min-width: 100%; @@ -124,6 +124,10 @@ body#loginform { padding-top: 0; padding-left: 0; padding-right: 0; + + a { + color: white; + } } .card,