diff options
| author | 2023-02-12 19:19:20 +0100 | |
|---|---|---|
| committer | 2023-02-12 19:19:20 +0100 | |
| commit | e908222589916e24621f646939ed56efbcd8027c (patch) | |
| tree | b73a39e692fc47e0a934cadc9a9b737de79c9619 | |
| parent | 05ae1b0d2684cea4eda664c5ea1a995cb9f0c4b9 (diff) | |
fix: add sharing method (#5100)
| -rw-r--r-- | p/themes/Origine/origine.css | 4 | ||||
| -rw-r--r-- | p/themes/Origine/origine.rtl.css | 4 | ||||
| -rw-r--r-- | p/themes/base-theme/frss.css | 4 | ||||
| -rw-r--r-- | p/themes/base-theme/frss.rtl.css | 4 |
4 files changed, 14 insertions, 2 deletions
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 { |
