From d977eb8d8adc95285b4f84991c9b16c4a64e4500 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Thu, 25 Aug 2022 23:07:53 +0530 Subject: [PATCH 1/9] icon issue in data migration page --- core/css/server.css | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index e1dbe547..401c1425 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -815,12 +815,15 @@ } #uploadprogressbar + button.icon-close, - #google-rm-cred .icon-close, #google-drive button .icon-close, #google-photos button .icon-close { background-image: var(--icon-close-fff); } + #google-rm-cred .icon-close { + background-image: var(--icon-close-000); + } + .breadcrumb div.crumb span.icon-shared, .breadcrumb div.crumb span.icon-public, .selectedActions a, @@ -1653,19 +1656,19 @@ } #google-import-contacts .icon-contacts-dark { - background-image: var(--icon-contacts-app-ffffff); + background-image: var(--icon-contacts-app-808080); } #google-calendars button .icon-calendar-dark { - background-image: var(--icon-calendar-calendar-ffffff); + background-image: var(--icon-calendar-calendar-808080); } #google-import-files .icon-files-dark { - background-image: var(--icon-files-app-ffffff); + background-image: var(--icon-files-app-808080); } #google-import-photos .icon-picture { - background-image: var(--icon-picture-ffffff); + background-image: var(--icon-picture-808080); } #header .header-right .magnify-icon > svg { -- GitLab From 82551d8f66677c418664d9fcb4d17ab1e0d9a99b Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Thu, 25 Aug 2022 23:09:19 +0530 Subject: [PATCH 2/9] icon issue in data migration page --- 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 401c1425..168ad6e7 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -821,7 +821,7 @@ } #google-rm-cred .icon-close { - background-image: var(--icon-close-000); + background-image: var(--icon-close-808080); } .breadcrumb div.crumb span.icon-shared, -- GitLab From 8a33744db787545c8c45492a5fe6a8b900771675 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 26 Aug 2022 16:57:25 +0530 Subject: [PATCH 3/9] changed icon colors to black --- core/css/server.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 168ad6e7..1ce40d71 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -821,7 +821,7 @@ } #google-rm-cred .icon-close { - background-image: var(--icon-close-808080); + background-image: var(--icon-close-000); } .breadcrumb div.crumb span.icon-shared, @@ -1656,19 +1656,19 @@ } #google-import-contacts .icon-contacts-dark { - background-image: var(--icon-contacts-app-808080); + background-image: var(--icon-contacts-000); } #google-calendars button .icon-calendar-dark { - background-image: var(--icon-calendar-calendar-808080); + background-image: var(--icon-calendar-000); } #google-import-files .icon-files-dark { - background-image: var(--icon-files-app-808080); + background-image: var(--icon-files-000); } #google-import-photos .icon-picture { - background-image: var(--icon-picture-808080); + background-image: var(--icon-picture-000); } #header .header-right .magnify-icon > svg { -- GitLab From ed6b6d400438e4994e993032aef43619c4e92864 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 26 Aug 2022 17:00:45 +0530 Subject: [PATCH 4/9] changed icon colors to black --- 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 1ce40d71..8db63efc 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1646,7 +1646,7 @@ #content-vue.app-talk #app-sidebar .username-form button.icon-rename, button.edit-output-dir .icon-rename { - background-image: var(--icon-rename-fff); + background-image: var(--icon-rename-000); } /* Google integration */ -- GitLab From 08acad68b17ebb724fd63725a6e34c70e09cfc21 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 26 Aug 2022 17:05:58 +0530 Subject: [PATCH 5/9] added opacitiy 1 --- core/css/server.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/css/server.css b/core/css/server.css index 8db63efc..ac4d35df 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -822,6 +822,7 @@ #google-rm-cred .icon-close { background-image: var(--icon-close-000); + opacity: 1; } .breadcrumb div.crumb span.icon-shared, @@ -1647,6 +1648,7 @@ #content-vue.app-talk #app-sidebar .username-form button.icon-rename, button.edit-output-dir .icon-rename { background-image: var(--icon-rename-000); + opacity: 1; } /* Google integration */ @@ -1657,18 +1659,22 @@ #google-import-contacts .icon-contacts-dark { background-image: var(--icon-contacts-000); + opacity: 1; } #google-calendars button .icon-calendar-dark { background-image: var(--icon-calendar-000); + opacity: 1; } #google-import-files .icon-files-dark { background-image: var(--icon-files-000); + opacity: 1; } #google-import-photos .icon-picture { background-image: var(--icon-picture-000); + opacity: 1; } #header .header-right .magnify-icon > svg { -- GitLab From f034196a8e5e0096f6ec44dceddd57c3d1d2c661 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 26 Aug 2022 17:12:01 +0530 Subject: [PATCH 6/9] added important --- 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 ac4d35df..5a432fd9 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1648,7 +1648,7 @@ #content-vue.app-talk #app-sidebar .username-form button.icon-rename, button.edit-output-dir .icon-rename { background-image: var(--icon-rename-000); - opacity: 1; + opacity: 1 !important; } /* Google integration */ -- GitLab From e54d86a77ab8fb59c0e185e29b8615e90b0daea7 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 26 Aug 2022 17:17:56 +0530 Subject: [PATCH 7/9] added important --- 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 5a432fd9..6a21695f 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1646,9 +1646,9 @@ } #content-vue.app-talk #app-sidebar .username-form button.icon-rename, - button.edit-output-dir .icon-rename { + button.edit-output-dir span.icon-rename { background-image: var(--icon-rename-000); - opacity: 1 !important; + opacity: 1; } /* Google integration */ -- GitLab From b8a4031f9dea8d0471e9f9a945704ca648e746a7 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 26 Aug 2022 17:24:01 +0530 Subject: [PATCH 8/9] opacity class --- core/css/server.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 6a21695f..1f062658 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1648,7 +1648,6 @@ #content-vue.app-talk #app-sidebar .username-form button.icon-rename, button.edit-output-dir span.icon-rename { background-image: var(--icon-rename-000); - opacity: 1; } /* Google integration */ @@ -1659,24 +1658,25 @@ #google-import-contacts .icon-contacts-dark { background-image: var(--icon-contacts-000); - opacity: 1; } #google-calendars button .icon-calendar-dark { background-image: var(--icon-calendar-000); - opacity: 1; } #google-import-files .icon-files-dark { background-image: var(--icon-files-000); - opacity: 1; } #google-import-photos .icon-picture { background-image: var(--icon-picture-000); + } + + /* remove opacity */ + #google-import-photos .icon-picture, #google-import-contacts .icon-contacts-dark,#google-calendars button .icon-calendar-dark, #google-import-files .icon-files-dark { opacity: 1; } - + /** */ #header .header-right .magnify-icon > svg { display: none; } -- GitLab From 60063722710ef91018481a4ad3f92c8aed5513f6 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 26 Aug 2022 17:27:01 +0530 Subject: [PATCH 9/9] opacity 1 added --- core/css/server.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 1f062658..eb7cb467 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -1645,8 +1645,7 @@ background-color: transparent; } - #content-vue.app-talk #app-sidebar .username-form button.icon-rename, - button.edit-output-dir span.icon-rename { + #content-vue.app-talk #app-sidebar .username-form button.icon-rename, button.edit-output-dir span.icon-rename { background-image: var(--icon-rename-000); } @@ -1673,7 +1672,7 @@ } /* remove opacity */ - #google-import-photos .icon-picture, #google-import-contacts .icon-contacts-dark,#google-calendars button .icon-calendar-dark, #google-import-files .icon-files-dark { + button.edit-output-dir span.icon-rename, #google-rm-cred .icon-close, #google-import-photos .icon-picture, #google-import-contacts .icon-contacts-dark, #google-calendars button .icon-calendar-dark, #google-import-files .icon-files-dark { opacity: 1; } /** */ -- GitLab