From b46ccc98edccba7d9fd58d71cac8ce27c51482a9 Mon Sep 17 00:00:00 2001 From: Nivesh Krishna Date: Sat, 7 Jan 2023 01:14:54 +0530 Subject: [PATCH 1/3] fix identity selector --- styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 917829c..433035e 100644 --- a/styles.css +++ b/styles.css @@ -2828,4 +2828,8 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font #rl-app #V-SystemDropDown{ border-right: 1px solid var(--color-border-grey); padding: 9px 7px; -} \ No newline at end of file +} + +#r1-app input[data-bind="textInput: from"] { + width: calc(100% - 30px) !important +} -- GitLab From b6812ed9db4904674166af216bf810f63dae2b80 Mon Sep 17 00:00:00 2001 From: Nivesh Krishna Date: Sat, 7 Jan 2023 01:23:18 +0530 Subject: [PATCH 2/3] fix selector --- styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles.css b/styles.css index 433035e..c7af127 100644 --- a/styles.css +++ b/styles.css @@ -2830,6 +2830,6 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font padding: 9px 7px; } -#r1-app input[data-bind="textInput: from"] { +#rl-app #V-PopupsCompose input[data-bind="textInput: from"] { width: calc(100% - 30px) !important } -- GitLab From ea30142829bbb883a0b5728e82161a50f118c4cb Mon Sep 17 00:00:00 2001 From: Akhil Date: Mon, 9 Jan 2023 19:15:27 +0530 Subject: [PATCH 3/3] Force dropdown in compose to 20px --- styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index c7af127..ea1ecc5 100644 --- a/styles.css +++ b/styles.css @@ -2830,6 +2830,6 @@ html.rl-left-panel-disabled #rl-left .b-footer.btn-toolbar .btn-group a.btn.font padding: 9px 7px; } -#rl-app #V-PopupsCompose input[data-bind="textInput: from"] { - width: calc(100% - 30px) !important +#rl-app #V-PopupsCompose .dropdown { + width: 20px; } -- GitLab