From 92644b4801120e684062e3c7fe9c9ddae7f7f766 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Thu, 13 Jun 2024 21:18:41 +0530 Subject: [PATCH 1/2] fix error msg text overflow --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 5dd0641..6b9b5fa 100644 --- a/style.css +++ b/style.css @@ -588,6 +588,10 @@ html.rl-left-panel-disabled #rl-app .b-folders .b-toolbar { #rl-app .b-folders .btn.buttonContacts { transition: none; } + #rl-popups a[data-rainloopErrorTip]::before { + white-space: unset; + width: 900px; + } } #rl-app #V-AdminMenu nav, -- GitLab From 9a14f26a22a3c542ad167f8de33b9e3f3cc2dc93 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Fri, 14 Jun 2024 11:17:52 +0530 Subject: [PATCH 2/2] button alignment fix --- style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index 6b9b5fa..28c2233 100644 --- a/style.css +++ b/style.css @@ -584,11 +584,11 @@ html.rl-left-panel-disabled #rl-app .b-folders .b-toolbar { flex-direction: column; } -@media screen and(min-width: 1000px) { +@media screen and (min-width: 1000px) { #rl-app .b-folders .btn.buttonContacts { transition: none; } - #rl-popups a[data-rainloopErrorTip]::before { + #rl-popups #V-PopupsCompose a[data-rainloopErrorTip]::before { white-space: unset; width: 900px; } @@ -3840,7 +3840,7 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; background-color: var(--svg-color-second); - height: 14px; + height: 24px; width: 10px; padding-left: 12px; content: ""; @@ -3855,7 +3855,7 @@ html:not(rl-mobile) #rl-app .hideMessageListCheckbox .checkboxCheckAll { -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; background-color: var(--svg-color-second); - height: 14px; + height: 24px; width: 10px; padding-left: 12px; content: ""; -- GitLab