From 3d35c9270c97f776c291679c1b50ccf4d8bdf746 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 13:32:28 +0530 Subject: [PATCH 01/21] font color fix login connect --- core/css/guest.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/css/guest.css b/core/css/guest.css index df19febc..a520b91b 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1692,4 +1692,7 @@ a.legal { #body-login .guest-box.login-box .button-vue--vue-tertiary-no-background, #body-login .guest-box.login-box .input-field__input { color: #222222; +} +#body-login .picker-window p.info{ + color: #222222; } \ No newline at end of file -- GitLab From ed2c5370dd4d15b7a7385112d5ffbffc38e2173b Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 13:45:01 +0530 Subject: [PATCH 02/21] font color fix login connect --- core/css/guest.css | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index a520b91b..06cd5894 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1695,4 +1695,21 @@ a.legal { } #body-login .picker-window p.info{ color: #222222; -} \ No newline at end of file +} +#body-login .picker-window { + display: inline-block; + padding: 16px; + margin: 20px; + background-color: var(--color-main-background); + color: var(--color-main-text); + border-radius: var(--border-radius-large); + box-shadow: none; + border: none; + cursor: default; +} + +#body-login .picker-window.small { + max-width: 100%; +} + + -- GitLab From 99f3b6eab0d991dc485fee94872a33931b28bdf0 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 15:56:58 +0530 Subject: [PATCH 03/21] header fix post login --- core/css/server.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/css/server.css b/core/css/server.css index 9aae37a1..2c68fcc9 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -71,6 +71,9 @@ body[data-themes="dark"] { body.theme--highcontrast { --icon-inactive-color: black; } +@media (prefers-color-scheme: dark) { + --color-main-background-header: #272727; +} body { background-color: var(--color-main-background); -- GitLab From 49419ade7eb600b9ba8996bd97a868b31abbff87 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 16:06:14 +0530 Subject: [PATCH 04/21] header fix post login --- core/css/server.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 2c68fcc9..3b901d62 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -71,10 +71,13 @@ body[data-themes="dark"] { body.theme--highcontrast { --icon-inactive-color: black; } -@media (prefers-color-scheme: dark) { - --color-main-background-header: #272727; +@media(prefers-color-scheme: dark){ + :root { + --color-main-background-header: #272727; + } } + body { background-color: var(--color-main-background); font-weight: normal; -- GitLab From edfd97b33c132018624952207818e76ce14ee3fb Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 16:09:06 +0530 Subject: [PATCH 05/21] header fix post login --- core/css/server.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/css/server.css b/core/css/server.css index 3b901d62..3a3e1e12 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -74,6 +74,12 @@ body.theme--highcontrast { @media(prefers-color-scheme: dark){ :root { --color-main-background-header: #272727; + --input-background-color: #181818; + --icon-notifications-notifications-000000: url("/svg/notifications/notifications?color=000"); + --icon-notifications-notifications-new-000000: url("/svg/notifications/notifications-new?color=000"); + --icon-search-000: url("/svg/core/actions/search?color=fff"); + --logo: url("../img/logo@2x-dark.svg"); + --notification-icon-invert: invert(100%); } } -- GitLab From ee3c9f2e00831e460a70dffe1fc84b32addd47c3 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 16:30:53 +0530 Subject: [PATCH 06/21] login button icon hide --- core/css/guest.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index 06cd5894..be447f10 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1712,4 +1712,9 @@ a.legal { max-width: 100%; } - +#body-login .guest-box.login-box .button-vue--vue-tertiary-no-background .material-design-icon.eye-icon { + opacity:0.5; +} +#body-login .guest-box.login-box .button-vue.button-vue--icon-and-text.button-vue--vue-primary.button-vue--wide .button-vue__wrapper .button-vue__icon { + display:none; +} -- GitLab From 4ade3122dd4e7af68788fa71c70cbcf27ae722f1 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 16:34:06 +0530 Subject: [PATCH 07/21] login button icon hide --- core/css/guest.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index be447f10..daabfee0 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1716,5 +1716,10 @@ a.legal { opacity:0.5; } #body-login .guest-box.login-box .button-vue.button-vue--icon-and-text.button-vue--vue-primary.button-vue--wide .button-vue__wrapper .button-vue__icon { - display:none; + display:none; +} +#body-login .guest-box.login-box .input-field__label{ + color: #333333; + font-weight: 700; + font-size: 16px; } -- GitLab From e5b3c4e61397aaa903d8bed258b8a2b266e351d8 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 17:33:07 +0530 Subject: [PATCH 08/21] login button icon hide --- core/css/guest.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index daabfee0..77044a01 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1654,7 +1654,7 @@ a.legal { } #body-login .input-field__clear-button.button-vue{ vertical-align: middle; - height: 36px; + height: 32px; line-height: 36px; } #body-login .button-vue--vue-primary{ -- GitLab From d8f37916e2a5bc2579f106ccbbb183806369a818 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 22:05:41 +0530 Subject: [PATCH 09/21] border color in case of error --- core/css/guest.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/css/guest.css b/core/css/guest.css index 77044a01..74fd8779 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1155,10 +1155,17 @@ a.legal { width: 92%; margin-left: 0; margin-right: 0; + box-shadow: none; + +} +#body-login .v-align .guest-box p.message { + justify-content: center !important; + padding: 16px; border: 1px solid; box-shadow: none; color: #029f3c; } + #body-login .icon.icon-checkmark, #body-login .icon-checkmark-white{ display:none; -- GitLab From 5d7504cd7d0d2f69c6847314f109be76828fca21 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 3 May 2023 22:07:33 +0530 Subject: [PATCH 10/21] border color in case of error --- core/css/guest.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/guest.css b/core/css/guest.css index 74fd8779..b283fbb5 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1164,6 +1164,7 @@ a.legal { border: 1px solid; box-shadow: none; color: #029f3c; + border-radius: var(--border-radius-large); } #body-login .icon.icon-checkmark, -- GitLab From ebf094311dcdf8ec0e87a833ca75c8212185c43f Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 13:29:17 +0530 Subject: [PATCH 11/21] svg removed --- core/css/server.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 3a3e1e12..825fdfee 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -61,9 +61,6 @@ body[data-themes="dark"] { --color-main-background-header: #272727; --input-background-color: #181818; - --icon-notifications-notifications-000000: url("/svg/notifications/notifications?color=000"); - --icon-notifications-notifications-new-000000: url("/svg/notifications/notifications-new?color=000"); - --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); } @@ -75,9 +72,6 @@ body.theme--highcontrast { :root { --color-main-background-header: #272727; --input-background-color: #181818; - --icon-notifications-notifications-000000: url("/svg/notifications/notifications?color=000"); - --icon-notifications-notifications-new-000000: url("/svg/notifications/notifications-new?color=000"); - --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); } -- GitLab From 45091462ad6accd4845f19ca2aa794e58d8e4d96 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 13:31:40 +0530 Subject: [PATCH 12/21] svg removed --- core/css/server.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/css/server.css b/core/css/server.css index 825fdfee..965a7732 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -61,6 +61,9 @@ body[data-themes="dark"] { --color-main-background-header: #272727; --input-background-color: #181818; + --icon-notifications-notifications-000000: url("/svg/notifications/notifications?color=000"); + --icon-notifications-notifications-new-000000: url("/svg/notifications/notifications-new?color=000"); + --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); } -- GitLab From 1d551b6022d141b3a4c3505f912335e74b1c80f9 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 13:45:34 +0530 Subject: [PATCH 13/21] search icon --- core/css/server.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 965a7732..81a4a108 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1646,9 +1646,7 @@ button.edit-output-dir span.icon-rename, opacity: 1; } /** */ -#header .header-right .magnify-icon > svg { - display: none; -} + .new-icons .color-icons { background-image: url("../img/app-icons/other.svg"); width: 100%; -- GitLab From 4af402c8069661e3cba03a0d8b5d8af89a35f644 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 13:48:12 +0530 Subject: [PATCH 14/21] notificationicon --- core/css/server.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 81a4a108..10a41330 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -388,10 +388,6 @@ footer { height: 92px; } -#header #notifications .notifications-button__icon { - display: none; -} - #header #notifications .header-menu__trigger, #header #unified-search .magnify-icon { opacity: 0.6; -- GitLab From 8bc028fad1027174f9c414e54002f6cbed11e441 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 13:59:31 +0530 Subject: [PATCH 15/21] notificationicon --- core/css/server.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index 10a41330..d84a3992 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -55,6 +55,7 @@ --notification-icon-invert: invert(0%); --active-icon-filter: brightness(0) saturate(100%) invert(38%) sepia(88%) saturate(4068%) hue-rotate(197deg) brightness(102%) contrast(106%); --inactive-icon-filter: brightness(0) saturate(100%) invert(50%) sepia(12%) saturate(0%) hue-rotate(187deg) brightness(98%) contrast(94%); + --seach-notificaton-display: block; } /* Force a few variables to right values for dark theme */ @@ -66,6 +67,7 @@ body[data-themes="dark"] { --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); + --seach-notificaton-display: none; } body.theme--highcontrast { @@ -388,6 +390,10 @@ footer { height: 92px; } +#header #notifications .notifications-button__icon { + display: var(--seach-notificaton-display); +} + #header #notifications .header-menu__trigger, #header #unified-search .magnify-icon { opacity: 0.6; @@ -1642,7 +1648,9 @@ button.edit-output-dir span.icon-rename, opacity: 1; } /** */ - +#header .header-right .magnify-icon > svg { + display: var(--seach-notificaton-display); +} .new-icons .color-icons { background-image: url("../img/app-icons/other.svg"); width: 100%; -- GitLab From 537e958d671a3cedee0efa0b6cfb185eb0ca9d2a Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 14:01:32 +0530 Subject: [PATCH 16/21] notificationicon --- core/css/server.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index d84a3992..b765a654 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -55,7 +55,7 @@ --notification-icon-invert: invert(0%); --active-icon-filter: brightness(0) saturate(100%) invert(38%) sepia(88%) saturate(4068%) hue-rotate(197deg) brightness(102%) contrast(106%); --inactive-icon-filter: brightness(0) saturate(100%) invert(50%) sepia(12%) saturate(0%) hue-rotate(187deg) brightness(98%) contrast(94%); - --seach-notificaton-display: block; + --seach-notificaton-display: none; } /* Force a few variables to right values for dark theme */ @@ -67,7 +67,7 @@ body[data-themes="dark"] { --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); - --seach-notificaton-display: none; + --seach-notificaton-display: block; } body.theme--highcontrast { -- GitLab From 2fc312ebf6a914d622addac392137b8f91e7744c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 14:04:28 +0530 Subject: [PATCH 17/21] notificationicon --- core/css/server.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index b765a654..2368bb54 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -59,7 +59,7 @@ } /* Force a few variables to right values for dark theme */ -body[data-themes="dark"] { +body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ --color-main-background-header: #272727; --input-background-color: #181818; --icon-notifications-notifications-000000: url("/svg/notifications/notifications?color=000"); -- GitLab From b5c01d52f186873a3796a75613182f378bba4c4d Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 14:56:50 +0530 Subject: [PATCH 18/21] notificationicon --- core/css/server.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 2368bb54..51cc2de4 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -62,8 +62,6 @@ body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ --color-main-background-header: #272727; --input-background-color: #181818; - --icon-notifications-notifications-000000: url("/svg/notifications/notifications?color=000"); - --icon-notifications-notifications-new-000000: url("/svg/notifications/notifications-new?color=000"); --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); -- GitLab From 3c7e8d4ca1aff3330879069c456e19d8bfb2867c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 19:07:53 +0530 Subject: [PATCH 19/21] applied suggestion --- core/css/server.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 51cc2de4..adae46c3 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -55,7 +55,7 @@ --notification-icon-invert: invert(0%); --active-icon-filter: brightness(0) saturate(100%) invert(38%) sepia(88%) saturate(4068%) hue-rotate(197deg) brightness(102%) contrast(106%); --inactive-icon-filter: brightness(0) saturate(100%) invert(50%) sepia(12%) saturate(0%) hue-rotate(187deg) brightness(98%) contrast(94%); - --seach-notificaton-display: none; + --search-notificaton-display: none; } /* Force a few variables to right values for dark theme */ @@ -65,7 +65,7 @@ body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); - --seach-notificaton-display: block; + --search-notificaton-display: block; } body.theme--highcontrast { @@ -389,7 +389,7 @@ footer { } #header #notifications .notifications-button__icon { - display: var(--seach-notificaton-display); + display: var(--search-notificaton-display); } #header #notifications .header-menu__trigger, @@ -1647,7 +1647,7 @@ button.edit-output-dir span.icon-rename, } /** */ #header .header-right .magnify-icon > svg { - display: var(--seach-notificaton-display); + display: var(--search-notificaton-display); } .new-icons .color-icons { background-image: url("../img/app-icons/other.svg"); -- GitLab From c3ca96ed011417530ac686f30748ea61b0c33eaa Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 19:49:33 +0530 Subject: [PATCH 20/21] revert icon change --- core/css/server.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index adae46c3..2e46f303 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -55,8 +55,7 @@ --notification-icon-invert: invert(0%); --active-icon-filter: brightness(0) saturate(100%) invert(38%) sepia(88%) saturate(4068%) hue-rotate(197deg) brightness(102%) contrast(106%); --inactive-icon-filter: brightness(0) saturate(100%) invert(50%) sepia(12%) saturate(0%) hue-rotate(187deg) brightness(98%) contrast(94%); - --search-notificaton-display: none; -} + } /* Force a few variables to right values for dark theme */ body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ @@ -65,7 +64,6 @@ body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ --icon-search-000: url("/svg/core/actions/search?color=fff"); --logo: url("../img/logo@2x-dark.svg"); --notification-icon-invert: invert(100%); - --search-notificaton-display: block; } body.theme--highcontrast { @@ -389,7 +387,7 @@ footer { } #header #notifications .notifications-button__icon { - display: var(--search-notificaton-display); + display: none; } #header #notifications .header-menu__trigger, @@ -1647,7 +1645,7 @@ button.edit-output-dir span.icon-rename, } /** */ #header .header-right .magnify-icon > svg { - display: var(--search-notificaton-display); + display: none; } .new-icons .color-icons { background-image: url("../img/app-icons/other.svg"); -- GitLab From e2725e0a9b7f5577a15d3531a0102f611994e68b Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 4 May 2023 19:58:51 +0530 Subject: [PATCH 21/21] border radius removed from content --- core/css/server.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index 2e46f303..5aa38487 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -851,7 +851,9 @@ body[data-dashboard-background="default"] #app-dashboard h2 { #content.app-files #emptycontent .icon-share { background-image: var(--icon-files-share-808080); } - +#content { + border-radius: unset; +} #content #app-content-files #controls { background-color: var(--color-main-background); } -- GitLab