From e908222589916e24621f646939ed56efbcd8027c Mon Sep 17 00:00:00 2001 From: maTh Date: Sun, 12 Feb 2023 19:19:20 +0100 Subject: fix: add sharing method (#5100) --- p/themes/Origine/origine.css | 4 +++- p/themes/Origine/origine.rtl.css | 4 +++- p/themes/base-theme/frss.css | 4 ++++ p/themes/base-theme/frss.rtl.css | 4 ++++ 4 files changed, 14 insertions(+), 2 deletions(-) (limited to 'p') diff --git a/p/themes/Origine/origine.css b/p/themes/Origine/origine.css index eba455f52..3a7d395a0 100644 --- a/p/themes/Origine/origine.css +++ b/p/themes/Origine/origine.css @@ -216,7 +216,8 @@ form th { } .stick .btn:first-child, -.stick input:first-child { +.stick input:first-child, +.stick select:first-child { border-radius: 3px 0 0 3px; } @@ -233,6 +234,7 @@ form th { .stick .btn + input, .stick .btn + .dropdown > .btn, .stick input + .btn, +.stick select + .btn, .stick input + input, .stick input + .dropdown > .btn, .stick .dropdown + .btn, diff --git a/p/themes/Origine/origine.rtl.css b/p/themes/Origine/origine.rtl.css index 081f1814f..ae5f1ca39 100644 --- a/p/themes/Origine/origine.rtl.css +++ b/p/themes/Origine/origine.rtl.css @@ -216,7 +216,8 @@ form th { } .stick .btn:first-child, -.stick input:first-child { +.stick input:first-child, +.stick select:first-child { border-radius: 0 3px 3px 0; } @@ -233,6 +234,7 @@ form th { .stick .btn + input, .stick .btn + .dropdown > .btn, .stick input + .btn, +.stick select + .btn, .stick input + input, .stick input + .dropdown > .btn, .stick .dropdown + .btn, diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index 84de40acb..5c7ada2f5 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -219,6 +219,10 @@ input, select, textarea { box-sizing: border-box; } +select { + min-width: 6em; +} + input.w50, select.w50, textarea.w50 { diff --git a/p/themes/base-theme/frss.rtl.css b/p/themes/base-theme/frss.rtl.css index bfc768b8e..c84b8cd2a 100644 --- a/p/themes/base-theme/frss.rtl.css +++ b/p/themes/base-theme/frss.rtl.css @@ -219,6 +219,10 @@ input, select, textarea { box-sizing: border-box; } +select { + min-width: 6em; +} + input.w50, select.w50, textarea.w50 { -- cgit v1.2.3