From ee567390bcdb4783737ec4f369f010eadffb9400 Mon Sep 17 00:00:00 2001 From: Ronak Date: Tue, 11 Jul 2023 21:58:52 -0700 Subject: [PATCH 1/2] Attachment icon issue --- style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index c4ea0b8..d26bd8a 100644 --- a/style.css +++ b/style.css @@ -2373,11 +2373,12 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { } #rl-app #V-PopupsCompose .btn-group:nth-of-type(1) button.btn:nth-child(1) .icon-file-text { vertical-align: middle; - height: 19px; + height: 100%; display: block; background-image: var(--file-text); background-position: center center; background-repeat: no-repeat; + background-size: contain; } #rl-app #V-PopupsCompose .btn-group:nth-of-type(1) button.btn:nth-child(1) .icon-file-text::before { content: ""; @@ -4373,7 +4374,7 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { background-image: var(--attachment); background-position: center center; background-repeat: no-repeat; - margin-left:0px; + margin-left:5px; } #rl-app #V-PopupsCompose .tabs .icon-attachment::before { content: ""; -- GitLab From 8df99abf137776b35226b5558c11f1d207b08f96 Mon Sep 17 00:00:00 2001 From: Ronak Date: Tue, 11 Jul 2023 22:05:24 -0700 Subject: [PATCH 2/2] changes --- style.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index d26bd8a..cecc94b 100644 --- a/style.css +++ b/style.css @@ -4354,11 +4354,12 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { } #rl-app #V-PopupsCompose .tabs .icon-file-text { vertical-align: middle; - height: 19px; + height: 100%; display: block; background-image: var(--file-text); background-position: center center; background-repeat: no-repeat; + background-size: contain; } #rl-app #V-PopupsCompose .tabs .icon-file-text::before { @@ -4374,7 +4375,7 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { background-image: var(--attachment); background-position: center center; background-repeat: no-repeat; - margin-left:5px; + margin-left:0px; } #rl-app #V-PopupsCompose .tabs .icon-attachment::before { content: ""; @@ -4394,6 +4395,13 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { width:38px; height:32px; border-radius: 0 4px 4px 0; + display: flex; + flex-direction: row; + justify-content: center; + min-width: fit-content; + } + #rl-app #V-PopupsCompose .tabs label:nth-of-type(2) b{ + padding-right: 5px; } #rl-app #V-PopupsCompose .tabs label:nth-of-type(3){ position: absolute; -- GitLab