From cfcbfa536ca6897921247af8070f61a3808cd9e9 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 20:08:08 +0530 Subject: [PATCH 01/81] text color fix --- styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/styles.css b/styles.css index c29242d..fa9121c 100644 --- a/styles.css +++ b/styles.css @@ -1313,6 +1313,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar border-radius: var(--border-radius-large); text-shadow: none; margin: 10px; + color:var(--color-primary); } #rl-app .messageView .messageAssignedTags { -- GitLab From 88a803010e16898d5efaed846ad8aa37fc464959 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 20:22:00 +0530 Subject: [PATCH 02/81] warning msg --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index fa9121c..c379c8c 100644 --- a/styles.css +++ b/styles.css @@ -2528,7 +2528,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar } #rl-app #V-Login .alert { top: 0; - background-color: var(--color-warning-rgb); + background-color: var(--color-warning); } #rl-app #V-Login .alert .close{ -- GitLab From b58c202e6f378c6e8d13c0faa6f74a1acc5e27d0 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 20:41:35 +0530 Subject: [PATCH 03/81] warning msg --- styles.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/styles.css b/styles.css index c379c8c..d5e4b8e 100644 --- a/styles.css +++ b/styles.css @@ -54,6 +54,7 @@ --color-error-rgb: 233,50,45; --color-error-hover: #ed5a56; --color-warning: #eca700; + --color-warning-light: #fdf6e6; --color-warning-rgb: 236,167,0; --color-warning-hover: #efb832; --color-success: #46ba61; @@ -152,6 +153,7 @@ --color-error-rgb: 233,50,45; --color-error-hover: #ed5a56; --color-warning: #eca700; + --color-warning-light: #fdf6e6; --color-warning-rgb: 236,167,0; --color-warning-hover: #efb832; --color-success: #46ba61; -- GitLab From 6a66391402204f468568706d200d3f0e018cb651 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 20:47:46 +0530 Subject: [PATCH 04/81] warning msg --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index d5e4b8e..fab8a8d 100644 --- a/styles.css +++ b/styles.css @@ -2530,7 +2530,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar } #rl-app #V-Login .alert { top: 0; - background-color: var(--color-warning); + background-color: var(--color-warning-light); } #rl-app #V-Login .alert .close{ -- GitLab From a561ede1f2d765f5b52296efb2ed7d8ceb1bd271 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 21:58:54 +0530 Subject: [PATCH 05/81] selected folder --- styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/styles.css b/styles.css index fab8a8d..2c62f1e 100644 --- a/styles.css +++ b/styles.css @@ -1317,6 +1317,14 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar margin: 10px; color:var(--color-primary); } +#rl-app #V-MailMessageView .b-message-view-backdrop .backdrop-message::before{ + background-image: url(images/createfolder-color.svg); + background-position: center center; + background-repeat: no-repeat; + height: 18px; + color: transparent; + content:""; +} #rl-app .messageView .messageAssignedTags { margin: 0 5px; -- GitLab From 9539262c48c81b87559480e11121a51bc85e3de8 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 22:04:15 +0530 Subject: [PATCH 06/81] quota hide --- styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles.css b/styles.css index 2c62f1e..38804aa 100644 --- a/styles.css +++ b/styles.css @@ -2545,4 +2545,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar top: -24px; right: -14px; } +#rl-app .messageList .b-footer .e-quota{ + display:none +} -- GitLab From 15ce33de4683ae40d3a6e6e824677704a9a87c4c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 22:30:04 +0530 Subject: [PATCH 07/81] adjustment --- styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles.css b/styles.css index 38804aa..15de36d 100644 --- a/styles.css +++ b/styles.css @@ -2548,4 +2548,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar #rl-app .messageList .b-footer .e-quota{ display:none } +html.rl-left-panel-disabled #rl-left .b-folders .b-content { + top: 90px; +} -- GitLab From 66dac679d526d425108a2214d3d89ac704f04829 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Mon, 2 Jan 2023 23:38:16 +0530 Subject: [PATCH 08/81] back outward --- images/back-outward.svg | 3 +++ styles.css | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 images/back-outward.svg diff --git a/images/back-outward.svg b/images/back-outward.svg new file mode 100644 index 0000000..346b219 --- /dev/null +++ b/images/back-outward.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index 15de36d..740845d 100644 --- a/styles.css +++ b/styles.css @@ -2551,4 +2551,19 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar html.rl-left-panel-disabled #rl-left .b-folders .b-content { top: 90px; } +html.rl-left-panel-disabled #rl-left .b-folders li a.selectable::before{ + padding-right: 24px; +} +html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.fontastic:nth-child(1){ + background-image: url(images/back-outward.svg); + background-position: center center; + background-repeat: no-repeat; + height: 34px; + padding-left: 20px; + padding-right: 19px; + line-height: 0; + font-size: 0; + color: transparent; +} + -- GitLab From 95a3fa1ba5f621e0c2b08fd47021cd81c3d78d90 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Tue, 3 Jan 2023 10:51:00 +0530 Subject: [PATCH 09/81] icon color fix --- styles.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/styles.css b/styles.css index 740845d..4d63159 100644 --- a/styles.css +++ b/styles.css @@ -1946,7 +1946,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar color:transparent; } #rl-app #rl-right #V-MailMessageList .btn-toolbar div.btn-group:nth-of-type(1) a.btn { - background-image: url('images/createfolder-color.svg'); + background-image: url('images/createfolder.svg'); background-position: center center; background-repeat: no-repeat; height:18px; @@ -1960,7 +1960,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar color:transparent; } #rl-app #rl-right #V-MailMessageList .btn-toolbar div.btn-group:nth-of-type(2) a.btn:nth-child(1) { - background-image: url('images/archieve-color.svg'); + background-image: url('images/archieve.svg'); background-position: center center; background-repeat: no-repeat; height:18px; @@ -1974,7 +1974,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar color:transparent; } #rl-app #rl-right #V-MailMessageList .btn-toolbar div.btn-group:nth-of-type(2) a.btn.fontastic:nth-child(2) { - background-image: url('images/spam-color.svg'); + background-image: url('images/spam.svg'); background-position: center center; background-repeat: no-repeat; height:18px; @@ -1988,7 +1988,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar color:transparent; } #rl-app #rl-right #V-MailMessageList .btn-toolbar div.btn-group:nth-of-type(2) a.btn.fontastic:nth-child(4) { - background-image: url('images/trash-color.svg'); + background-image: url('images/trash.svg'); background-position: center center; background-repeat: no-repeat; height:18px; -- GitLab From 653874af1a089723086e5769862367e156b51a07 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 11:52:26 +0530 Subject: [PATCH 10/81] ui fixes --- images/compose-contact.svg | 2 +- styles.css | 23 ++++++++++++++++++++++- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/images/compose-contact.svg b/images/compose-contact.svg index 2e52fb4..8e900b9 100644 --- a/images/compose-contact.svg +++ b/images/compose-contact.svg @@ -1,3 +1,3 @@ - + diff --git a/styles.css b/styles.css index 4d63159..bc04f42 100644 --- a/styles.css +++ b/styles.css @@ -2565,5 +2565,26 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font font-size: 0; color: transparent; } - +#rl-app #V-MailMessageList .messageListItem.unseen { + background-color: unset; + border-left: unset; +} +#rl-app #V-MailMessageList .messageListItem.unseen .senderParent.actionHandle{ + font-weight: 500; + font-size: 16px; +} +#rl-app #V-MailMessageList .messageListItem .senderParent.actionHandle{ + font-weight: 400; + font-size: 16px; +} +#rl-app #V-MailMessageList .msgflag-\$label1:not(.focused), +#rl-app #V-MailMessageList .msgflag-\$label2:not(.focused), +#rl-app #V-MailMessageList .msgflag-\$label3:not(.focused), +#rl-app #V-MailMessageList .msgflag-\$label4:not(.focused), +#rl-app #V-MailMessageList .msgflag-\$label5:not(.focused){ + border-left: unset; +} +#rl-app #area-toggle{ + margin-top:10px; +} -- GitLab From 03b5d7a65d0d6c5cc6ce273da22f8d820db70400 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 11:54:40 +0530 Subject: [PATCH 11/81] ui fixes --- images/compose-contact.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/compose-contact.svg b/images/compose-contact.svg index 8e900b9..2e52fb4 100644 --- a/images/compose-contact.svg +++ b/images/compose-contact.svg @@ -1,3 +1,3 @@ - + -- GitLab From 5fbc27919be81ed0a1ec2ee4b588ae45ed15f4c0 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 11:55:34 +0530 Subject: [PATCH 12/81] ui fixes --- images/compose-contact.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/compose-contact.svg b/images/compose-contact.svg index 2e52fb4..dcc5674 100644 --- a/images/compose-contact.svg +++ b/images/compose-contact.svg @@ -1,3 +1,3 @@ - + -- GitLab From bd3870fee96cbd3fd48e153687571f32de045eaa Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:00:11 +0530 Subject: [PATCH 13/81] ui fixes --- images/send-icon.svg | 3 +++ styles.css | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 images/send-icon.svg diff --git a/images/send-icon.svg b/images/send-icon.svg new file mode 100644 index 0000000..031edb7 --- /dev/null +++ b/images/send-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index bc04f42..f47017d 100644 --- a/styles.css +++ b/styles.css @@ -2474,6 +2474,18 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar background: var(--color-success-second); border-radius: 6px; } +#rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.btn-success .icon-paper-plane::before{ + background-image: url('images/cross.svg'); + background-position: center center; + background-repeat: no-repeat; + height: 20px; + width: 20px; + color: transparent; + content:""; + border: none; + text-shadow: none; + vertical-align: middle; +} #rl-app #rl-popups #V-PopupsCompose .pull-right .close{ background-image: url('images/cross.svg'); background-position: center center; -- GitLab From 0a0ea1a6965c85e5e47a181e5a1de3f37a89a6d8 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:02:18 +0530 Subject: [PATCH 14/81] ui fixes --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index f47017d..df9e0d2 100644 --- a/styles.css +++ b/styles.css @@ -2475,7 +2475,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar border-radius: 6px; } #rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.btn-success .icon-paper-plane::before{ - background-image: url('images/cross.svg'); + background-image: url('images/send-icon.svg'); background-position: center center; background-repeat: no-repeat; height: 20px; -- GitLab From b57bd3fa5d28afba9c49276c7ad3765dad6b36ea Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:07:51 +0530 Subject: [PATCH 15/81] ui fixes --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index df9e0d2..d5eed8b 100644 --- a/styles.css +++ b/styles.css @@ -2474,7 +2474,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar background: var(--color-success-second); border-radius: 6px; } -#rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.btn-success .icon-paper-plane::before{ +#rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.btn-success .icon-paper-plane{ background-image: url('images/send-icon.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From aaf6c829501f3dfb718f0afabd3278c318f5ab20 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:14:23 +0530 Subject: [PATCH 16/81] delete icon fix --- images/delete-black.svg | 3 +++ styles.css | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 images/delete-black.svg diff --git a/images/delete-black.svg b/images/delete-black.svg new file mode 100644 index 0000000..9094b15 --- /dev/null +++ b/images/delete-black.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index d5eed8b..62fa628 100644 --- a/styles.css +++ b/styles.css @@ -2486,6 +2486,18 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar text-shadow: none; vertical-align: middle; } +#rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.btn-delete{ + background-image: url('images/delete-black.svg'); + background-position: center center; + background-repeat: no-repeat; + height: 20px; + width: 20px; + color: transparent; + content:""; + border: none; + text-shadow: none; + vertical-align: middle; +} #rl-app #rl-popups #V-PopupsCompose .pull-right .close{ background-image: url('images/cross.svg'); background-position: center center; -- GitLab From 5183363db2540e1ae558300ca1150799f2cbae47 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:16:52 +0530 Subject: [PATCH 17/81] delete icon fix --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 62fa628..f85b5f3 100644 --- a/styles.css +++ b/styles.css @@ -2486,7 +2486,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar text-shadow: none; vertical-align: middle; } -#rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.btn-delete{ +#rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.btn-danger.button-delete{ background-image: url('images/delete-black.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From d14fafbc5ce1b5bb4df4e1257c4ddfc7f7e38856 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:23:14 +0530 Subject: [PATCH 18/81] delete icon fix --- styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles.css b/styles.css index f85b5f3..0e94bd8 100644 --- a/styles.css +++ b/styles.css @@ -2498,6 +2498,9 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar text-shadow: none; vertical-align: middle; } +#rl-app #rl-popups #V-PopupsCompose .g-ui-user-select-none .btn.button-delete{ + background: var(--color-primary-text); +} #rl-app #rl-popups #V-PopupsCompose .pull-right .close{ background-image: url('images/cross.svg'); background-position: center center; -- GitLab From 16f568d6494a7c5042333e5fb40f7a2657c24f7f Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:41:41 +0530 Subject: [PATCH 19/81] align close icon --- styles.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 0e94bd8..08d286f 100644 --- a/styles.css +++ b/styles.css @@ -2511,7 +2511,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar content:""; border: none; text-shadow: none; - vertical-align: middle; + vertical-align: bottom; } #rl-app #rl-popups #V-PopupsCompose .pull-right .minimize-custom{ background-image: url('images/minimize.svg'); @@ -2523,7 +2523,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar content: ""; border: none; text-shadow: none; - vertical-align: middle; + vertical-align: bottom; } #rl-app #V-PopupsCompose header .pull-right a.btn:nth-child(3){ @@ -2615,3 +2615,6 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font margin-top:10px; } +#rl-app .rl-mobile .messageListItem .flagParent, #rl-app .rl-side-preview-pane .messageListItem .flagParent{ + display:none; +} -- GitLab From 2274df40b034a7899e75f4f9dabee81359c8354a Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 12:45:11 +0530 Subject: [PATCH 20/81] align close icon --- images/cross.svg | 2 +- images/minimize.svg | 2 +- styles.css | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/images/cross.svg b/images/cross.svg index bb523ae..11f11cf 100644 --- a/images/cross.svg +++ b/images/cross.svg @@ -1,3 +1,3 @@ - + diff --git a/images/minimize.svg b/images/minimize.svg index 94d03cc..d0e1938 100644 --- a/images/minimize.svg +++ b/images/minimize.svg @@ -1,3 +1,3 @@ - + diff --git a/styles.css b/styles.css index 08d286f..ad2dc00 100644 --- a/styles.css +++ b/styles.css @@ -2524,6 +2524,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar border: none; text-shadow: none; vertical-align: bottom; + margin-left:0px; } #rl-app #V-PopupsCompose header .pull-right a.btn:nth-child(3){ -- GitLab From f903cc7121890e8419f713cebdd704f6255f3de3 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:08:00 +0530 Subject: [PATCH 21/81] attach icon replaced --- images/public-attachment.svg | 3 +++ styles.css | 19 ++++++++++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 images/public-attachment.svg diff --git a/images/public-attachment.svg b/images/public-attachment.svg new file mode 100644 index 0000000..980a64a --- /dev/null +++ b/images/public-attachment.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index ad2dc00..482c567 100644 --- a/styles.css +++ b/styles.css @@ -2523,7 +2523,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar content: ""; border: none; text-shadow: none; - vertical-align: bottom; + vertical-align: middle; margin-left:0px; } @@ -2619,3 +2619,20 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app .rl-mobile .messageListItem .flagParent, #rl-app .rl-side-preview-pane .messageListItem .flagParent{ display:none; } +#rl-app .sm-nc-files-tree button{ + background-color: var(--color-main-background); + color:var( --color-primary); + border-color:var(--color-main-background); +} +#rl-app .sm-nc-files-tree button[name="share-public"]::before{ + background-image: url(images/public-attachment.svg); + background-position: center center; + background-repeat: no-repeat; + height: 20px; + padding-left: 20px; + padding-right: 19px; + line-height: 0; + font-size: 0; + color: transparent; +} + -- GitLab From baed1d3dd9ad1e7457ba7be37484a25dd318fa18 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:15:50 +0530 Subject: [PATCH 22/81] attach icon replaced --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 482c567..b65ee42 100644 --- a/styles.css +++ b/styles.css @@ -2619,7 +2619,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app .rl-mobile .messageListItem .flagParent, #rl-app .rl-side-preview-pane .messageListItem .flagParent{ display:none; } -#rl-app .sm-nc-files-tree button{ +#rl-app .sm-nc-files-tree button.button-vue{ background-color: var(--color-main-background); color:var( --color-primary); border-color:var(--color-main-background); -- GitLab From 8db9d44ffc748ba4cb4924db656bef2930bceb14 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:16:44 +0530 Subject: [PATCH 23/81] attach icon replaced --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index b65ee42..90f961d 100644 --- a/styles.css +++ b/styles.css @@ -2619,12 +2619,12 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app .rl-mobile .messageListItem .flagParent, #rl-app .rl-side-preview-pane .messageListItem .flagParent{ display:none; } -#rl-app .sm-nc-files-tree button.button-vue{ +#rl-app #V-PopupsNextcloudFiles .sm-nc-files-tree button.button-vue{ background-color: var(--color-main-background); color:var( --color-primary); border-color:var(--color-main-background); } -#rl-app .sm-nc-files-tree button[name="share-public"]::before{ +#rl-app #V-PopupsNextcloudFiles .sm-nc-files-tree button[name="share-public"]::before{ background-image: url(images/public-attachment.svg); background-position: center center; background-repeat: no-repeat; -- GitLab From 6ccb55f938ddec9970e0bbc71301e3951bebef3a Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:19:44 +0530 Subject: [PATCH 24/81] attach icon replaced --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 90f961d..4b1c94b 100644 --- a/styles.css +++ b/styles.css @@ -2619,12 +2619,12 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app .rl-mobile .messageListItem .flagParent, #rl-app .rl-side-preview-pane .messageListItem .flagParent{ display:none; } -#rl-app #V-PopupsNextcloudFiles .sm-nc-files-tree button.button-vue{ +#rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button.button-vue{ background-color: var(--color-main-background); color:var( --color-primary); border-color:var(--color-main-background); } -#rl-app #V-PopupsNextcloudFiles .sm-nc-files-tree button[name="share-public"]::before{ +#rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button[name="share-public"]::before{ background-image: url(images/public-attachment.svg); background-position: center center; background-repeat: no-repeat; -- GitLab From 99752df5e36358d5f5b8b8380cc513dd246b0126 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:30:35 +0530 Subject: [PATCH 25/81] attach icon replaced --- images/attach.svg | 3 +++ styles.css | 22 +++++++++++++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 images/attach.svg diff --git a/images/attach.svg b/images/attach.svg new file mode 100644 index 0000000..fae352b --- /dev/null +++ b/images/attach.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index 4b1c94b..961131a 100644 --- a/styles.css +++ b/styles.css @@ -2622,17 +2622,33 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button.button-vue{ background-color: var(--color-main-background); color:var( --color-primary); - border-color:var(--color-main-background); + border: none; + text-decoration: underline; } -#rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button[name="share-public"]::before{ +#rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button[name="share-public"]::before, +#rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button[name="share-internal"]::before{ background-image: url(images/public-attachment.svg); background-position: center center; background-repeat: no-repeat; height: 20px; padding-left: 20px; - padding-right: 19px; + padding-right: 10px; + line-height: 0; + font-size: 0; + color: transparent; + vertical-align: middle; +} +#rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button[name="select"]::before{ + background-image: url(images/attach.svg); + background-position: center center; + background-repeat: no-repeat; + height: 20px; + padding-left: 20px; + padding-right: 10px; line-height: 0; font-size: 0; color: transparent; + vertical-align: middle; } + -- GitLab From 88400d3a3778d7f931643162d57a29755bc64209 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:35:51 +0530 Subject: [PATCH 26/81] attach icon replaced --- styles.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/styles.css b/styles.css index 961131a..3fd187e 100644 --- a/styles.css +++ b/styles.css @@ -2620,10 +2620,11 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font display:none; } #rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button.button-vue{ - background-color: var(--color-main-background); + background-color: transparent; color:var( --color-primary); border: none; text-decoration: underline; + font-style: 16px; } #rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button[name="share-public"]::before, #rl-app #V-PopupsNextcloudFiles #sm-nc-files-tree button[name="share-internal"]::before{ @@ -2631,8 +2632,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font background-position: center center; background-repeat: no-repeat; height: 20px; - padding-left: 20px; - padding-right: 10px; + width: 25px; line-height: 0; font-size: 0; color: transparent; @@ -2642,7 +2642,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font background-image: url(images/attach.svg); background-position: center center; background-repeat: no-repeat; - height: 20px; + height: 22px; padding-left: 20px; padding-right: 10px; line-height: 0; -- GitLab From 52ede9b6a8b0a680e87fccbe74979f5a0eb24ffc Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:46:17 +0530 Subject: [PATCH 27/81] delete icon contact page --- styles.css | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/styles.css b/styles.css index 3fd187e..7e2db40 100644 --- a/styles.css +++ b/styles.css @@ -2306,11 +2306,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar margin-right: 10px; border-radius:6px; } -#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ - background: var(--color-primary-element-text-blue); - border-radius: 6px; - color: var(--color-primary-element-text); -} + #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn-success{ background: transparent; } @@ -2650,5 +2646,23 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font color: transparent; vertical-align: middle; } +#rl-app #V-PopupsNextcloudFiles .close{ + opacity: 0.9; +} +#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ + background: transparent; +} +#rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ + background-image: url('images/delete-black.svg'); + background-position: center center; + background-repeat: no-repeat; + height: 20px; + width: 20px; + color: transparent; + content:""; + border: none; + text-shadow: none; + vertical-align: middle; +} -- GitLab From ec24d5dd5db7c6c0b07f11a8def503d5d715a920 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:48:07 +0530 Subject: [PATCH 28/81] delete icon contact page --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 7e2db40..20641d8 100644 --- a/styles.css +++ b/styles.css @@ -2652,7 +2652,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ background: transparent; } -#rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ +#rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn:nth-child(3){ background-image: url('images/delete-black.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From abc482d8ab0193b59e9ff5d86553858c9e943327 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 13:55:20 +0530 Subject: [PATCH 29/81] delete icon contact page --- styles.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/styles.css b/styles.css index 20641d8..8ff6701 100644 --- a/styles.css +++ b/styles.css @@ -2652,6 +2652,22 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ background: transparent; } +#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn:nth-child(1){ + background: var(--color-primary-element-text-blue); + border-radius: 6px; + color: var(--color-primary-element-text); + min-height: 32px; + height: 32px; + padding: 6px 14px; +} +#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn:nth-child(2){ + background: var(--color-success-second); + border-radius: 6px; + color: var(--color-primary-element-text); + min-height: 32px; + height: 32px; + padding: 6px 14px; +} #rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn:nth-child(3){ background-image: url('images/delete-black.svg'); background-position: center center; -- GitLab From 1be75480c5e9f9e9620dd990820f6c352e2dd727 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 14:00:27 +0530 Subject: [PATCH 30/81] delete icon contact page --- styles.css | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/styles.css b/styles.css index 8ff6701..9ff3446 100644 --- a/styles.css +++ b/styles.css @@ -2307,9 +2307,6 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar border-radius:6px; } -#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn-success{ - background: transparent; -} #V-PopupsContacts .b-view-content-toolbar.btn-toolbar .btn.button-save-contact, #V-PopupsContacts .b-view-content-toolbar.btn-toolbar #button-add-prop-dropdown-id{ background: var(--color-primary-element-text); @@ -2652,7 +2649,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ background: transparent; } -#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn:nth-child(1){ +#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn:nth-child(1){ background: var(--color-primary-element-text-blue); border-radius: 6px; color: var(--color-primary-element-text); @@ -2660,7 +2657,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font height: 32px; padding: 6px 14px; } -#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn:nth-child(2){ +#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn:nth-child(2){ background: var(--color-success-second); border-radius: 6px; color: var(--color-primary-element-text); @@ -2668,7 +2665,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font height: 32px; padding: 6px 14px; } -#rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn:nth-child(3){ +#rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn:nth-child(3){ background-image: url('images/delete-black.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From 4669d91598a52f4b310db2ea3df5efb768885699 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 14:32:20 +0530 Subject: [PATCH 31/81] drop icon contact page --- styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 9ff3446..730fa02 100644 --- a/styles.css +++ b/styles.css @@ -2646,7 +2646,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-PopupsNextcloudFiles .close{ opacity: 0.9; } -#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn{ +#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn, +#V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar #contacts-more-dropdown-id{ background: transparent; } #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn:nth-child(1){ -- GitLab From 8520ee0b4b98950be6863d94e6ce9ae17b1410bd Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 14:34:38 +0530 Subject: [PATCH 32/81] drop icon contact page --- styles.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/styles.css b/styles.css index 730fa02..86855cf 100644 --- a/styles.css +++ b/styles.css @@ -2649,6 +2649,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn, #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar #contacts-more-dropdown-id{ background: transparent; + color:var( --color-primary-element-text-black); + opacity: 0.8; } #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn:nth-child(1){ background: var(--color-primary-element-text-blue); -- GitLab From bcbb8d2b8f5f88ae1bb0fbab81bee089465d9604 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 14:49:04 +0530 Subject: [PATCH 33/81] drop icon contact page --- styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/styles.css b/styles.css index 86855cf..ce9400d 100644 --- a/styles.css +++ b/styles.css @@ -2659,6 +2659,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font min-height: 32px; height: 32px; padding: 6px 14px; + opacity: 1; } #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn:nth-child(2){ background: var(--color-success-second); @@ -2667,6 +2668,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font min-height: 32px; height: 32px; padding: 6px 14px; + opacity: 1; } #rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .btn-toolbar .btn:nth-child(3){ background-image: url('images/delete-black.svg'); @@ -2680,5 +2682,12 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font text-shadow: none; vertical-align: middle; } +#rl-app #V-PopupsContacts .b-list-toolbar .e-search{ + border-radius: 52px; + padding-left: 10px; +} +#rl-app #V-PopupsContacts .e-contact-item{ + border-left: none; +} -- GitLab From df94d09fb6d1cab441370400877fe0480d560010 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 15:18:24 +0530 Subject: [PATCH 34/81] drop icon contact page --- styles.css | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index ce9400d..cca0e13 100644 --- a/styles.css +++ b/styles.css @@ -2689,5 +2689,14 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-PopupsContacts .e-contact-item{ border-left: none; } - - +#rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .close{ + opacity: 0.8; +} +#rl-app #V-PopupsContacts .e-contact-item .nameParent{ + text-align:center; +} +#rl-app #V-PopupsContacts .b-view-content .b-contact-view-desc{ + top: 50%; + position: relative; + padding-top:0px; +} \ No newline at end of file -- GitLab From c006365d9e52bd342f0de29183f5281ab6bfb09b Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 15:32:14 +0530 Subject: [PATCH 35/81] contact left width --- styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index cca0e13..7a91250 100644 --- a/styles.css +++ b/styles.css @@ -2692,11 +2692,11 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-PopupsContacts .b-header-toolbar.g-ui-user-select-none .close{ opacity: 0.8; } -#rl-app #V-PopupsContacts .e-contact-item .nameParent{ - text-align:center; -} #rl-app #V-PopupsContacts .b-view-content .b-contact-view-desc{ top: 50%; position: relative; padding-top:0px; +} +#rl-app #V-PopupsContacts .left{ + width:30%; } \ No newline at end of file -- GitLab From 058e2133a64d351743262b176bd3bffed8e2cd8e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 15:46:37 +0530 Subject: [PATCH 36/81] border fix --- styles.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 7a91250..d597468 100644 --- a/styles.css +++ b/styles.css @@ -2699,4 +2699,12 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font } #rl-app #V-PopupsContacts .left{ width:30%; -} \ No newline at end of file +} +#rl-app #V-Settings-General .form-horizontal .legend, +#rl-app #V-SettingsMenu .b-footer{ + border-top: 1px solid var(--border-color,#ddd); + border-bottom: none; +} +#rl-app #V-SettingsPane #rl-settings-subscreen{ + padding:0px; +} -- GitLab From e5208b97eb61a7ab7b4a413329ed7436ebd3ab9b Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 15:53:15 +0530 Subject: [PATCH 37/81] back to inbox fix --- images/back-to-inbox.svg | 3 +++ styles.css | 26 +++++++++++++++++++++++++- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 images/back-to-inbox.svg diff --git a/images/back-to-inbox.svg b/images/back-to-inbox.svg new file mode 100644 index 0000000..2d7a1ee --- /dev/null +++ b/images/back-to-inbox.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index d597468..71cf249 100644 --- a/styles.css +++ b/styles.css @@ -2700,11 +2700,35 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-PopupsContacts .left{ width:30%; } -#rl-app #V-Settings-General .form-horizontal .legend, +#rl-app #V-Settings-General .form-horizontal .legend:nth-child(1), #rl-app #V-SettingsMenu .b-footer{ border-top: 1px solid var(--border-color,#ddd); border-bottom: none; } +#rl-app #V-Settings-General .form-horizontal .legend{ + border-bottom: none; +} #rl-app #V-SettingsPane #rl-settings-subscreen{ padding:0px; } +#rl-app #V-SettingsPane .btn-toolbar .btn:nth-child(1){ + background: var(--color-success-second); + border-radius: 6px; + color: var(--color-primary-element-text); + min-height: 32px; + height: 32px; + width: 157px; + border-radius: 6px; + } + #rl-app #V-SettingsPane .btn-toolbar .btn:nth-child(1)::before{ + background-image: url('images/back-to-inbox.svg'); + background-position: center center; + background-repeat: no-repeat; + height: 20px; + width: 20px; + color: transparent; + content:""; + border: none; + text-shadow: none; + vertical-align: middle; + } -- GitLab From fc1e57a07c698ef7a5bf00758be6782340782226 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 16:19:58 +0530 Subject: [PATCH 38/81] back to inbox fix --- styles.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 71cf249..cf2080c 100644 --- a/styles.css +++ b/styles.css @@ -2712,14 +2712,16 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font padding:0px; } #rl-app #V-SettingsPane .btn-toolbar .btn:nth-child(1){ - background: var(--color-success-second); + background: var(--color-primary); border-radius: 6px; color: var(--color-primary-element-text); min-height: 32px; height: 32px; width: 157px; border-radius: 6px; - } + line-height: 20px; + padding: 6px 14px; +} #rl-app #V-SettingsPane .btn-toolbar .btn:nth-child(1)::before{ background-image: url('images/back-to-inbox.svg'); background-position: center center; @@ -2731,4 +2733,6 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font border: none; text-shadow: none; vertical-align: middle; + line-height: 20px; + padding: 6px 14px; } -- GitLab From 7d1cc6cc58ab98f27c5dd5a82c0c608758192bec Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 16:23:36 +0530 Subject: [PATCH 39/81] back to inbox fix --- styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index cf2080c..016dea0 100644 --- a/styles.css +++ b/styles.css @@ -2717,10 +2717,11 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font color: var(--color-primary-element-text); min-height: 32px; height: 32px; - width: 157px; border-radius: 6px; line-height: 20px; padding: 6px 14px; + font-size: 16px; + font-weight: 400; } #rl-app #V-SettingsPane .btn-toolbar .btn:nth-child(1)::before{ background-image: url('images/back-to-inbox.svg'); @@ -2732,7 +2733,6 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font content:""; border: none; text-shadow: none; - vertical-align: middle; line-height: 20px; - padding: 6px 14px; + } -- GitLab From b778badbfc8d80582f514bf158b84a3a173a820c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 16:28:39 +0530 Subject: [PATCH 40/81] back to inbox fix --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 016dea0..8b70257 100644 --- a/styles.css +++ b/styles.css @@ -2719,7 +2719,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font height: 32px; border-radius: 6px; line-height: 20px; - padding: 6px 14px; + padding: 6px 10px; font-size: 16px; font-weight: 400; } -- GitLab From a739101d6008cd02a1758aa1504904936f4b211e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 17:33:03 +0530 Subject: [PATCH 41/81] back to inbox fix --- images/profileicon.svg | 3 +++ styles.css | 12 ++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 images/profileicon.svg diff --git a/images/profileicon.svg b/images/profileicon.svg new file mode 100644 index 0000000..b85d744 --- /dev/null +++ b/images/profileicon.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index 8b70257..779a834 100644 --- a/styles.css +++ b/styles.css @@ -103,6 +103,7 @@ --color-primary-text: #ffffff; --color-primary-hover: #3282ae; --color-primary-light: #e5eff4; + --color-primary-light-second:rgba(248, 67, 46, 0.08); --color-primary-light-text: #00273d; --color-primary-light-hover: #dbe4e9; --color-primary-text-dark: #ededed; @@ -202,6 +203,7 @@ --color-primary-text: #ffffff; --color-primary-hover: #04537f; --color-primary-light: #141e24; + --color-primary-light-second:rgba(248, 67, 46, 0.08); --color-primary-light-text: #99c0d6; --color-primary-light-hover: #1d272d; --color-primary-text-dark: hsl(0, 0%, 93%); @@ -407,7 +409,7 @@ html.rl-left-panel-disabled #rl-app .b-folders .b-toolbar { #rl-app #V-SettingsMenu nav a.selected, #rl-app .b-folders li a.selectable.selected { color: unset; - background-color: var(--color-primary-light); + background-color: var(--color-primary-light-second); border-radius: unset; } @@ -2734,5 +2736,11 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font border: none; text-shadow: none; line-height: 20px; - + vertical-align: bottom; + } + #rl-app #V-Settings-Accounts .legend, + #rl-app #V-Settings-Accounts a, + #rl-app #V-Settings-Accounts .table.table-hover.list-table.identities-list + { + padding-left: 20px; } -- GitLab From 660029361aecede20f3c938b08839ea170e66604 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 17:51:07 +0530 Subject: [PATCH 42/81] back to inbox fix --- images/account-blue.svg | 3 +++ styles.css | 18 +++++++++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 images/account-blue.svg diff --git a/images/account-blue.svg b/images/account-blue.svg new file mode 100644 index 0000000..d9dd990 --- /dev/null +++ b/images/account-blue.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index 779a834..6694566 100644 --- a/styles.css +++ b/styles.css @@ -409,7 +409,7 @@ html.rl-left-panel-disabled #rl-app .b-folders .b-toolbar { #rl-app #V-SettingsMenu nav a.selected, #rl-app .b-folders li a.selectable.selected { color: unset; - background-color: var(--color-primary-light-second); + background-color: var(--color-background-blue); border-radius: unset; } @@ -2744,3 +2744,19 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font { padding-left: 20px; } + #rl-app #V-Settings-Accounts .legend .btn { + background: var(--color-primary-element-text); + border-radius: 6px; + color: var(--color-primary); + border: 1px solid var(--color-primary); + } + #rl-app #V-Settings-Accounts .legend .btn .icon-user-add::before { + background-image: url('images/account-blue.svg'); + background-position: center center; + background-repeat: no-repeat; + height:16px; + width:16px; + line-height: 0; + font-size: 0; + color: transparent; +} \ No newline at end of file -- GitLab From ac838fa22404cc2f41faedbcc600a130ab337acf Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 17:52:30 +0530 Subject: [PATCH 43/81] back to inbox fix --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 6694566..0af3c8f 100644 --- a/styles.css +++ b/styles.css @@ -2744,13 +2744,13 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font { padding-left: 20px; } - #rl-app #V-Settings-Accounts .legend .btn { + #rl-app #V-Settings-Accounts .btn { background: var(--color-primary-element-text); border-radius: 6px; color: var(--color-primary); border: 1px solid var(--color-primary); } - #rl-app #V-Settings-Accounts .legend .btn .icon-user-add::before { + #rl-app #V-Settings-Accounts .btn .icon-user-add::before { background-image: url('images/account-blue.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From d8a720f5dfaa68d8824fd53325b0f7bdecf2e827 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 17:55:44 +0530 Subject: [PATCH 44/81] back to inbox fix --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 0af3c8f..02da1a2 100644 --- a/styles.css +++ b/styles.css @@ -2748,9 +2748,9 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font background: var(--color-primary-element-text); border-radius: 6px; color: var(--color-primary); - border: 1px solid var(--color-primary); + border: 1px solid var(--color-primary) !important; } - #rl-app #V-Settings-Accounts .btn .icon-user-add::before { + #rl-app #V-Settings-Accounts .btn .icon-user-add { background-image: url('images/account-blue.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From 6fe43a6493480dd274a8b8f7995a99615f2f92b7 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:01:52 +0530 Subject: [PATCH 45/81] table column padding --- styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/styles.css b/styles.css index 02da1a2..e4cd710 100644 --- a/styles.css +++ b/styles.css @@ -2759,4 +2759,12 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font line-height: 0; font-size: 0; color: transparent; +} +#rl-app #V-Settings-Accounts .btn .icon-user-add:before { + content: ""; +} +#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list tr td{ + font-size: 16px; + line-height: 24px; + padding: 16px 4px; } \ No newline at end of file -- GitLab From 2dc299321bf94a3f112eced10b9b41d6b3e2ec79 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:10:31 +0530 Subject: [PATCH 46/81] delete icon added --- styles.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/styles.css b/styles.css index e4cd710..f784995 100644 --- a/styles.css +++ b/styles.css @@ -2767,4 +2767,20 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font font-size: 16px; line-height: 24px; padding: 16px 4px; +} +#rl-app #V-Settings-Accounts .btn, +#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list{ + padding-left:24px; +} +#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list tr td span.delete.fontastic{ + background-image: url('images/delete-black.svg'); + background-position: center center; + background-repeat: no-repeat; + height: 20px; + width: 20px; + color: transparent; + content:""; + border: none; + text-shadow: none; + vertical-align: middle; } \ No newline at end of file -- GitLab From 53cde512caaf83649e337f5b30e2dad05c8e2853 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:13:59 +0530 Subject: [PATCH 47/81] delete icon added --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index f784995..7daa314 100644 --- a/styles.css +++ b/styles.css @@ -2770,9 +2770,9 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font } #rl-app #V-Settings-Accounts .btn, #rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list{ - padding-left:24px; + margin-left:24px; } -#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list tr td span.delete.fontastic{ +#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list span.delete.fontastic{ background-image: url('images/delete-black.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From c8ff07611843c618ae72fd5d33f048dbb6f8ac9e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:19:18 +0530 Subject: [PATCH 48/81] delete icon added --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 7daa314..9fff4aa 100644 --- a/styles.css +++ b/styles.css @@ -2772,7 +2772,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list{ margin-left:24px; } -#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list span.delete.fontastic{ +#rl-app #V-Settings-Accounts table.table.table-hover.list-table.accounts-list tbody tr td span.delete.fontastic{ background-image: url('images/delete-black.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From 2cb3ddda7a044ef052cd44e9489dcfa1df8dd39c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:20:39 +0530 Subject: [PATCH 49/81] delete icon added --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 9fff4aa..c94f742 100644 --- a/styles.css +++ b/styles.css @@ -2772,7 +2772,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list{ margin-left:24px; } -#rl-app #V-Settings-Accounts table.table.table-hover.list-table.accounts-list tbody tr td span.delete.fontastic{ +#rl-app #V-Settings-Accounts span.delete.fontastic{ background-image: url('images/delete-black.svg'); background-position: center center; background-repeat: no-repeat; -- GitLab From 26c4332c4c1323e2ef35ab649b30a1e6df8d6b6f Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:26:29 +0530 Subject: [PATCH 50/81] delete icon added --- styles.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index c94f742..b6ba891 100644 --- a/styles.css +++ b/styles.css @@ -2744,7 +2744,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font { padding-left: 20px; } - #rl-app #V-Settings-Accounts .btn { + #rl-app #V-Settings-Accounts .btn,#rl-app #V-Settings-Security button.btn { background: var(--color-primary-element-text); border-radius: 6px; color: var(--color-primary); @@ -2763,7 +2763,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-Settings-Accounts .btn .icon-user-add:before { content: ""; } -#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list tr td{ +#rl-app #rl-right #V-Settings-Accounts .table.table-hover.list-table.accounts-list tr td{ font-size: 16px; line-height: 24px; padding: 16px 4px; @@ -2783,4 +2783,5 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font border: none; text-shadow: none; vertical-align: middle; + opacity: 0.8; } \ No newline at end of file -- GitLab From 8d42d74dde924335f502b4e0019fee8a1649e9f8 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:29:10 +0530 Subject: [PATCH 51/81] margin added --- styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index b6ba891..f3fee95 100644 --- a/styles.css +++ b/styles.css @@ -2769,7 +2769,11 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font padding: 16px 4px; } #rl-app #V-Settings-Accounts .btn, -#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list{ +#rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list, +#rl-app #V-Settings-Security .btn, +#rl-app #V-Settings-Security .control-group, +#rl-app #V-Settings-Security details +{ margin-left:24px; } #rl-app #V-Settings-Accounts span.delete.fontastic{ -- GitLab From c186297ae8d4269858ab0ffe410e1fd95747fe7c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:32:24 +0530 Subject: [PATCH 52/81] margin added --- styles.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/styles.css b/styles.css index f3fee95..1c02404 100644 --- a/styles.css +++ b/styles.css @@ -2749,6 +2749,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font border-radius: 6px; color: var(--color-primary); border: 1px solid var(--color-primary) !important; + font-weight: 400; + font-size: 16px; } #rl-app #V-Settings-Accounts .btn .icon-user-add { background-image: url('images/account-blue.svg'); -- GitLab From f3cc8c1954b2d500be779b141c035d13ad3a9d98 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 18:49:33 +0530 Subject: [PATCH 53/81] margin added --- styles.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 1c02404..a0a3554 100644 --- a/styles.css +++ b/styles.css @@ -2774,10 +2774,17 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list, #rl-app #V-Settings-Security .btn, #rl-app #V-Settings-Security .control-group, -#rl-app #V-Settings-Security details +#rl-app #V-Settings-Security details, +#rl-app #V-Settings-Folders .e-component.e-checkbox.material-design, +#rl-app #V-Settings-Folders .btn:nth-child(1), +#rl-app #V-Settings-Folders .table.table-hover.list-table { margin-left:24px; } +#rl-app #V-Settings-General .legend +{ + padding-left:24px; +} #rl-app #V-Settings-Accounts span.delete.fontastic{ background-image: url('images/delete-black.svg'); background-position: center center; -- GitLab From 2cdaa86f28b07d80340ed37237d090db8f6beeb6 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 19:07:36 +0530 Subject: [PATCH 54/81] margin added --- styles.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index a0a3554..57bd411 100644 --- a/styles.css +++ b/styles.css @@ -2744,7 +2744,9 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font { padding-left: 20px; } - #rl-app #V-Settings-Accounts .btn,#rl-app #V-Settings-Security button.btn { + #rl-app #V-Settings-Accounts .btn, + #rl-app #V-Settings-Security button.btn, + #rl-app #V-SettingsPane .btn { background: var(--color-primary-element-text); border-radius: 6px; color: var(--color-primary); @@ -2772,16 +2774,19 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font } #rl-app #V-Settings-Accounts .btn, #rl-app #V-Settings-Accounts .table.table-hover.list-table.accounts-list, +#rl-app #V-Settings-Accounts .table.table-hover.list-table.identities-list, #rl-app #V-Settings-Security .btn, #rl-app #V-Settings-Security .control-group, #rl-app #V-Settings-Security details, #rl-app #V-Settings-Folders .e-component.e-checkbox.material-design, -#rl-app #V-Settings-Folders .btn:nth-child(1), +#rl-app #V-Settings-Folders .btn, #rl-app #V-Settings-Folders .table.table-hover.list-table { margin-left:24px; } -#rl-app #V-Settings-General .legend +#rl-app #V-Settings-General .legend, +#rl-app #V-Settings-Security .legend, +#rl-app #V-Settings-Folders .legend { padding-left:24px; } -- GitLab From fd791aaa48dca97538c070e003416e4aeca114c2 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 19:19:23 +0530 Subject: [PATCH 55/81] text color fix --- styles.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/styles.css b/styles.css index 57bd411..8031ea2 100644 --- a/styles.css +++ b/styles.css @@ -2018,11 +2018,6 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar border-radius:3px; background: var(--color-primary-text); } -#rl-app #rl-content #V-Settings-Folders .btn { - color: var(--color-primary-text); - -} -#r #rl-app #rl-content #V-Settings-Folders .btn .icon-folder-add{ background-image: url('images/createfolder.svg'); background-position: center center; @@ -2802,4 +2797,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font text-shadow: none; vertical-align: middle; opacity: 0.8; +} +#rl-app #V-Settings-Folders .table td{ + opacity:0.8; } \ No newline at end of file -- GitLab From 032fe04af60a100194721df219502a24787f23cb Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 19:24:32 +0530 Subject: [PATCH 56/81] text color fix --- images/create-folder-color.svg | 3 +++ styles.css | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 images/create-folder-color.svg diff --git a/images/create-folder-color.svg b/images/create-folder-color.svg new file mode 100644 index 0000000..ebccd67 --- /dev/null +++ b/images/create-folder-color.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index 8031ea2..7a43c00 100644 --- a/styles.css +++ b/styles.css @@ -2019,7 +2019,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar background: var(--color-primary-text); } #rl-app #rl-content #V-Settings-Folders .btn .icon-folder-add{ - background-image: url('images/createfolder.svg'); + background-image: url('images/createfolder-color.svg'); background-position: center center; background-repeat: no-repeat; height:20px; @@ -2800,4 +2800,6 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font } #rl-app #V-Settings-Folders .table td{ opacity:0.8; + font-weight: 400; + font-size: 16px; } \ No newline at end of file -- GitLab From 321060723e5975f4408ddf5d9d8b71bbb686a7a6 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 19:26:51 +0530 Subject: [PATCH 57/81] text color fix --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 7a43c00..c6953c4 100644 --- a/styles.css +++ b/styles.css @@ -2027,7 +2027,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar line-height: 20px; font-size: 0; color: transparent; - vertical-align: middle; + vertical-align: bottom; } #rl-app footer .btn.buttonCreate { flex-shrink: 1; -- GitLab From cdc1adbde44b9bb1c809d1377d4fbf3651687548 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 19:33:40 +0530 Subject: [PATCH 58/81] loading icon add --- images/loading-color.svg | 3 +++ styles.css | 11 +++++++++++ 2 files changed, 14 insertions(+) create mode 100644 images/loading-color.svg diff --git a/images/loading-color.svg b/images/loading-color.svg new file mode 100644 index 0000000..b1b2175 --- /dev/null +++ b/images/loading-color.svg @@ -0,0 +1,3 @@ + + + diff --git a/styles.css b/styles.css index c6953c4..6012f4c 100644 --- a/styles.css +++ b/styles.css @@ -2802,4 +2802,15 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font opacity:0.8; font-weight: 400; font-size: 16px; +} +#rl-app #rl-loading .icon-spinner{ + background-image: url('images/loading-color.svg'); + background-position: center center; + background-repeat: no-repeat; + height:20px; + padding-left: 20px; + padding-right: 19px; + content: ""; + color: transparent; + border: none; } \ No newline at end of file -- GitLab From 27baf5d6ce485e3530ed1cc3eb175e32f8aeba1b Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 20:15:07 +0530 Subject: [PATCH 59/81] button fix --- styles.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 6012f4c..3f098f1 100644 --- a/styles.css +++ b/styles.css @@ -1766,11 +1766,16 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar border-radius:unset; box-shadow:none; } -#rl-app #V-PopupsCompose .btn-group:nth-of-type(1) button.btn { +#rl-app #V-PopupsCompose .btn-group:nth-of-type(1) button.btn:nth-child(1) { background: var(--color-main-background); border: 1px solid var(--color-border-second) !important; border-radius: 4px 0px 0px 4px; } + #rl-app #V-PopupsCompose .btn-group:nth-of-type(1) button.btn:nth-child(2) { + background: var(--color-main-background); + border: 1px solid var(--color-border-second) !important; + border-radius: 0px 4px 4px 0px; + } #rl-app #V-PopupsCompose .btn-group:nth-of-type(1) button.btn.active { background: rgba(0, 0, 0, 0.12); } @@ -2539,6 +2544,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar font-weight: 400; font-size: 14px; padding: 10px; + margin-right:10px; } #rl-app #rl-popups #V-PopupsCompose .b-header .error-to{ color:var(--color-error-second); -- GitLab From b0155b1467b9f2d8659b9e672773f2aed1c0cd5f Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 20:52:57 +0530 Subject: [PATCH 60/81] loading icon --- styles.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 3f098f1..7c2d729 100644 --- a/styles.css +++ b/styles.css @@ -2813,7 +2813,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font background-image: url('images/loading-color.svg'); background-position: center center; background-repeat: no-repeat; - height:20px; + height:70px; + width:70px; padding-left: 20px; padding-right: 19px; content: ""; -- GitLab From dd39c2f8d97c1f18f2a81500813ba19a7c045bf4 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 4 Jan 2023 21:01:35 +0530 Subject: [PATCH 61/81] theme preview icon --- images/preview.png | Bin 8042 -> 18731 bytes styles.css | 1 - 2 files changed, 1 deletion(-) diff --git a/images/preview.png b/images/preview.png index d1f82db8789628047c5cf794d1d949276d860712..10cda3fb44cca81a0a1311bece6ae8e8e6f70617 100644 GIT binary patch literal 18731 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 diff --git a/styles.css b/styles.css index 7c2d729..3f17791 100644 --- a/styles.css +++ b/styles.css @@ -1680,7 +1680,6 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar #rl-app #V-Settings-Themes figure.selected { background-color: var(--color-primary-light); border-color: transparent; - color: var(--color-primary-text); } /* hide additional theme settings, as these are made via Nextcloud theming */ -- GitLab From 4362489d69ad447625244553662735499391bcdd Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 5 Jan 2023 10:36:55 +0530 Subject: [PATCH 62/81] css fix --- styles.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 3f17791..3428bc3 100644 --- a/styles.css +++ b/styles.css @@ -241,7 +241,9 @@ #rl-app #V-AdminPane>.b-toolbar { width: 300px; } - +#rl-app #rl-left{ + min-width:225px; +} #rl-app #rl-right { background-color: var(--color-main-background); } -- GitLab From 0c2b19c665055d7487dadfdce20ce5b190de8275 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 5 Jan 2023 10:40:20 +0530 Subject: [PATCH 63/81] min width fix --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 3428bc3..e847b4f 100644 --- a/styles.css +++ b/styles.css @@ -242,7 +242,7 @@ width: 300px; } #rl-app #rl-left{ - min-width:225px; + width:225px !important; } #rl-app #rl-right { background-color: var(--color-main-background); -- GitLab From c701ac279267fca6a5646f09cf745674b22abdf4 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 5 Jan 2023 10:43:25 +0530 Subject: [PATCH 64/81] min width fix --- styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles.css b/styles.css index e847b4f..279512d 100644 --- a/styles.css +++ b/styles.css @@ -244,6 +244,9 @@ #rl-app #rl-left{ width:225px !important; } +html.rl-left-panel-disabled #rl-app #rl-left{ + width:60px !important; +} #rl-app #rl-right { background-color: var(--color-main-background); } -- GitLab From df9d7e5791cc0cd06d7fde90a5619b8d2102751c Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 5 Jan 2023 11:00:57 +0530 Subject: [PATCH 65/81] min width fix --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 279512d..d467583 100644 --- a/styles.css +++ b/styles.css @@ -242,10 +242,10 @@ width: 300px; } #rl-app #rl-left{ - width:225px !important; + min-width:225px !important; } html.rl-left-panel-disabled #rl-app #rl-left{ - width:60px !important; + min-width:60px !important; } #rl-app #rl-right { background-color: var(--color-main-background); -- GitLab From 934de2bea86340b2ef7097ebbdaa79e457d434f3 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 11:11:02 +0530 Subject: [PATCH 66/81] min width fix --- styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles.css b/styles.css index d467583..91e677e 100644 --- a/styles.css +++ b/styles.css @@ -2824,4 +2824,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font content: ""; color: transparent; border: none; +} + +#V-MailMessageView table th,#V-MailMessageView table td{ + border:none; } \ No newline at end of file -- GitLab From b31a1f708340310b1ddbe6988c6e8e9ab1bdf14e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 19:11:13 +0530 Subject: [PATCH 67/81] icon fix --- styles.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/styles.css b/styles.css index 91e677e..7c7a1da 100644 --- a/styles.css +++ b/styles.css @@ -1863,7 +1863,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show .dividerbar a:nth-child(1)::before { +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show .dividerbar a[data-i18n="TOP_TOOLBAR/BUTTON_ADD_ACCOUNT"]::before { content: ""; background-image: url('images/plus.svg'); background-position: center center; @@ -1872,7 +1872,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(3) a::before { +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li a[data-i18n="GLOBAL/CONTACTS"]::before { content: ""; background-image: url('images/contactsmall.svg'); background-position: center center; @@ -1881,7 +1881,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(4) a::before { +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li a[data-i18n="HIDE_MY_EMAIL/TAB_NAME"]::before { content: ""; background-image: url('images/hide-my-email.svg'); background-position: center center; @@ -1890,7 +1890,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(5) a::before { +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li a[data-i18n="TOP_TOOLBAR/BUTTON_SETTINGS"]::before { content: ""; background-image: url('images/setting.svg'); background-position: center center; @@ -1900,7 +1900,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(6) a::before { +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li a[data-i18n="TOP_TOOLBAR/BUTTON_HELP"]::before { content: ""; background-image: url('images/help.svg'); background-position: center center; @@ -1909,7 +1909,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(7) a:nth-child(2)::before { +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li a[data-i18n="MOBILE/BUTTON_MOBILE_VERSION"]::before { content: ""; background-image: url('images/mobile.svg'); background-position: center center; @@ -1918,7 +1918,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(8){ +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li a[data-i18n="GLOBAL/LOGOUT"]{ display:none; } #rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(8) a::before { -- GitLab From da65354c331eaf3d7645edc6c5fcbea7a1a4d708 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 19:23:53 +0530 Subject: [PATCH 68/81] icon fix --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 7c7a1da..36caf1d 100644 --- a/styles.css +++ b/styles.css @@ -1918,7 +1918,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li a[data-i18n="GLOBAL/LOGOUT"]{ +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li > a[data-i18n="GLOBAL/LOGOUT"]{ display:none; } #rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(8) a::before { -- GitLab From 17812852e4200c9c4d2c82220eeb2288a1ad49bc Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 19:26:46 +0530 Subject: [PATCH 69/81] icon fix --- styles.css | 9 --------- 1 file changed, 9 deletions(-) diff --git a/styles.css b/styles.css index 36caf1d..28c8895 100644 --- a/styles.css +++ b/styles.css @@ -1921,15 +1921,6 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar #rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li > a[data-i18n="GLOBAL/LOGOUT"]{ display:none; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:nth-child(8) a::before { - content: ""; - background-image: url('images/logout.svg'); - background-position: center center; - background-repeat: no-repeat; - height:20px; - width:20px; - color:transparent; -} #rl-app dialog > header, #rl-app dialog > footer, #rl-app .squire-toolbar { -- GitLab From d6afa5f8a51815af08285fc53dc6cf2eecdd11ec Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 19:29:47 +0530 Subject: [PATCH 70/81] icon fix --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 28c8895..8146737 100644 --- a/styles.css +++ b/styles.css @@ -1918,7 +1918,7 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar width:20px; color:transparent; } -#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li > a[data-i18n="GLOBAL/LOGOUT"]{ +#rl-app #rl-right #V-SystemDropDown .dropdown-menu.right-edge.show li:has(a[data-i18n="GLOBAL/LOGOUT"]){ display:none; } #rl-app dialog > header, -- GitLab From 99308c4c56ffcf958e84ab448f60647154ab36f9 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 19:33:13 +0530 Subject: [PATCH 71/81] loading icon --- images/loading-color.svg | 2 +- styles.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/loading-color.svg b/images/loading-color.svg index b1b2175..7e76ba4 100644 --- a/images/loading-color.svg +++ b/images/loading-color.svg @@ -1,3 +1,3 @@ - + diff --git a/styles.css b/styles.css index 8146737..9eac031 100644 --- a/styles.css +++ b/styles.css @@ -2808,8 +2808,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font background-image: url('images/loading-color.svg'); background-position: center center; background-repeat: no-repeat; - height:70px; - width:70px; + height:16px; + width:16px; padding-left: 20px; padding-right: 19px; content: ""; -- GitLab From 87cc2fcd481cfcdea714fa597856f53013db96e1 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 19:38:00 +0530 Subject: [PATCH 72/81] border fix --- styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/styles.css b/styles.css index 9eac031..5ad03b6 100644 --- a/styles.css +++ b/styles.css @@ -2819,4 +2819,9 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #V-MailMessageView table th,#V-MailMessageView table td{ border:none; +} + +#rl-app #V-MailMessageView{ + top:57px; + border-top: 1px solid var(--color-border-grey); } \ No newline at end of file -- GitLab From 2805d5a50fdd6aa3bbf20f57b6c879227e30491d Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 20:15:43 +0530 Subject: [PATCH 73/81] border fix --- styles.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 5ad03b6..10f1a6c 100644 --- a/styles.css +++ b/styles.css @@ -814,10 +814,14 @@ html.rl-left-panel-disabled #rl-app .b-footer.btn-toolbar .btn-group .btn.icon-f #rl-app #V-SettingsPane .btn-toolbar .btn:focus { outline: none; } - +#rl-app #rl-right { + border-top: 1px solid var(--color-border-grey); +} #rl-app #V-MailMessageList .btn-toolbar { text-align: center; - border: 1px solid var(--color-border-grey); + border-left: 1px solid var(--color-border-grey); + border-right: 1px solid var(--color-border-grey); + border-bottom: 1px solid var(--color-border-grey); } #rl-app #V-MailMessageList.btn-toolbar .btn-group a.btn:nth-child(1) { background-image: url('images/loading.svg'); -- GitLab From 8136d84f5c0439e870788872278cc1a0f3120782 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 20:45:06 +0530 Subject: [PATCH 74/81] border fix --- images/loading-color.svg | 2 +- styles.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/loading-color.svg b/images/loading-color.svg index 7e76ba4..321e4a7 100644 --- a/images/loading-color.svg +++ b/images/loading-color.svg @@ -1,3 +1,3 @@ - + diff --git a/styles.css b/styles.css index 10f1a6c..fa81b05 100644 --- a/styles.css +++ b/styles.css @@ -2812,8 +2812,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font background-image: url('images/loading-color.svg'); background-position: center center; background-repeat: no-repeat; - height:16px; - width:16px; + height:20px; + width:20px; padding-left: 20px; padding-right: 19px; content: ""; -- GitLab From d217a60cae8c6d69f276e7eda4dcfffe6dfbda30 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 20:58:45 +0530 Subject: [PATCH 75/81] border fix --- styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index fa81b05..80b5534 100644 --- a/styles.css +++ b/styles.css @@ -2827,5 +2827,9 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-MailMessageView{ top:57px; - border-top: 1px solid var(--color-border-grey); + border-top:1px solid var(--color-border-grey); +} +#rl-app #V-SystemDropDown{ + border-right: 1px solid var(--color-border-grey); + padding: 9px 7px; } \ No newline at end of file -- GitLab From ddf85563091116cf09ee72ee65aabc6d01d0ac75 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 20:59:44 +0530 Subject: [PATCH 76/81] border fix --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 80b5534..b21f3e1 100644 --- a/styles.css +++ b/styles.css @@ -2826,7 +2826,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font } #rl-app #V-MailMessageView{ - top:57px; + top:56px; border-top:1px solid var(--color-border-grey); } #rl-app #V-SystemDropDown{ -- GitLab From 717fe109cf0136d4d8752738a62bde3d36bb5667 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 21:04:06 +0530 Subject: [PATCH 77/81] loading icon fix --- images/loading-color.svg | 2 +- styles.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/loading-color.svg b/images/loading-color.svg index 321e4a7..cee6bac 100644 --- a/images/loading-color.svg +++ b/images/loading-color.svg @@ -1,3 +1,3 @@ - + diff --git a/styles.css b/styles.css index b21f3e1..50fa623 100644 --- a/styles.css +++ b/styles.css @@ -2812,8 +2812,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font background-image: url('images/loading-color.svg'); background-position: center center; background-repeat: no-repeat; - height:20px; - width:20px; + height:32px; + width:32px; padding-left: 20px; padding-right: 19px; content: ""; -- GitLab From 165814e133645c47f8ccf1915c4dc235e674683d Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 21:15:11 +0530 Subject: [PATCH 78/81] right align icon --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 50fa623..71418e8 100644 --- a/styles.css +++ b/styles.css @@ -468,7 +468,7 @@ html.rl-left-panel-disabled #rl-app .b-folders .b-toolbar { } #rl-app .b-footer.btn-toolbar .btn-group.hide-on-panel-disabled .btn.icon-folder-add{ background-image: url('images/createfolder.svg'); - background-position: center center; + background-position: center right; background-repeat: no-repeat; height:34px; padding-left: 20px; -- GitLab From 66df5f49ab5ff4f178c39797ba2c4bc89a2c013e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 21:27:16 +0530 Subject: [PATCH 79/81] star color --- styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles.css b/styles.css index 71418e8..75effcf 100644 --- a/styles.css +++ b/styles.css @@ -2235,6 +2235,9 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar #rl-app #V-MailMessageView .messageView span.flagParent{ font-size:15px; } +#rl-app #V-MailMessageView .messageView span.flagParent.g-ui-user-select-none.fontastic.flagOn{ + color: #ffca48; + } #rl-app .messageView .b-message-view-checked-helper::after{ background-image: url('images/mailselected.svg'); background-position: center center; -- GitLab From 883549f9cb0945a88ad02c916d5149aa7b556c0e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 21:58:27 +0530 Subject: [PATCH 80/81] tag set --- styles.css | 7 ------- 1 file changed, 7 deletions(-) diff --git a/styles.css b/styles.css index 75effcf..b11a517 100644 --- a/styles.css +++ b/styles.css @@ -2603,13 +2603,6 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font font-weight: 400; font-size: 16px; } -#rl-app #V-MailMessageList .msgflag-\$label1:not(.focused), -#rl-app #V-MailMessageList .msgflag-\$label2:not(.focused), -#rl-app #V-MailMessageList .msgflag-\$label3:not(.focused), -#rl-app #V-MailMessageList .msgflag-\$label4:not(.focused), -#rl-app #V-MailMessageList .msgflag-\$label5:not(.focused){ - border-left: unset; -} #rl-app #area-toggle{ margin-top:10px; } -- GitLab From 84ab25279eca13532f6ecd0734c880b49bf4d39d Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 6 Jan 2023 22:15:27 +0530 Subject: [PATCH 81/81] tag set --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index b11a517..917829c 100644 --- a/styles.css +++ b/styles.css @@ -2593,7 +2593,7 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font } #rl-app #V-MailMessageList .messageListItem.unseen { background-color: unset; - border-left: unset; + border-left: 6px solid transparent; } #rl-app #V-MailMessageList .messageListItem.unseen .senderParent.actionHandle{ font-weight: 500; -- GitLab