diff options
| author | 2021-03-13 18:55:43 +0100 | |
|---|---|---|
| committer | 2021-03-13 18:55:43 +0100 | |
| commit | 2c4f169f0a22d3665caa37d64628d5b84359bb45 (patch) | |
| tree | cbde7758486aa9e5429a454863eaaa4b17e94d7d /p | |
| parent | b455b29c8cbb530b312e0a6cc2724d3c8b436580 (diff) | |
Hide advanced options in new feed form (#3516)
* Hide new feed advanced options in a details tag
The form was huge and hard to process for beginners. Most of the fields
are optional 99% of time, there is no need to have them so proeminently.
* Remove sub.feed.auth.configuration i18n key
* Sync RTL css files
* Fix stylelint
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
* Fix "for" attributes in add feed form
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'p')
| -rw-r--r-- | p/themes/Alternative-Dark/adark.rtl.css | 6 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.rtl.css | 1 | ||||
| -rw-r--r-- | p/themes/BlueLagoon/BlueLagoon.rtl.css | 12 | ||||
| -rw-r--r-- | p/themes/Mapco/mapco.rtl.css | 1 | ||||
| -rw-r--r-- | p/themes/Screwdriver/screwdriver.rtl.css | 10 | ||||
| -rw-r--r-- | p/themes/base-theme/template.css | 9 | ||||
| -rw-r--r-- | p/themes/base-theme/template.rtl.css | 13 |
7 files changed, 31 insertions, 21 deletions
diff --git a/p/themes/Alternative-Dark/adark.rtl.css b/p/themes/Alternative-Dark/adark.rtl.css index 642d61adb..3dfb8760a 100644 --- a/p/themes/Alternative-Dark/adark.rtl.css +++ b/p/themes/Alternative-Dark/adark.rtl.css @@ -671,6 +671,10 @@ a.btn { text-align: center; } +.prompt label { + text-align: right; +} + .prompt form { margin-top: 2rem; margin-bottom: 3rem; @@ -1001,7 +1005,7 @@ a.btn { /*=== Slider */ #slider { background: #171717; - border-left: 1px solid #333; + border-right: 1px solid #333; } /*=== SLIDESHOW */ diff --git a/p/themes/Ansum/ansum.rtl.css b/p/themes/Ansum/ansum.rtl.css index bd71669c0..fc5d9ce70 100644 --- a/p/themes/Ansum/ansum.rtl.css +++ b/p/themes/Ansum/ansum.rtl.css @@ -1099,7 +1099,6 @@ form th { .content code, .content.thin code { padding: 2px 5px; background: #fcfaf8; - color: #f5f0ec; border: 1px solid #f5f0ec; border-radius: 3px; } diff --git a/p/themes/BlueLagoon/BlueLagoon.rtl.css b/p/themes/BlueLagoon/BlueLagoon.rtl.css index 8c8c5619e..23aa1dad2 100644 --- a/p/themes/BlueLagoon/BlueLagoon.rtl.css +++ b/p/themes/BlueLagoon/BlueLagoon.rtl.css @@ -15,14 +15,6 @@ a, button.as-link { outline: none; } -/*=== Forms */ -.form-group { - display: inline-block; - float: right; - width: 100%; - height: auto; -} - legend { margin: 20px 0 5px; padding: 5px 0; @@ -786,6 +778,10 @@ a.btn { text-align: right; } +.prompt label { + text-align: right; +} + .prompt .form-group { margin-bottom: 1rem; } diff --git a/p/themes/Mapco/mapco.rtl.css b/p/themes/Mapco/mapco.rtl.css index 44e793ee9..f78ee0574 100644 --- a/p/themes/Mapco/mapco.rtl.css +++ b/p/themes/Mapco/mapco.rtl.css @@ -1105,7 +1105,6 @@ form th { .content code, .content.thin code { padding: 2px 5px; background: #f9fafb; - color: #eff0f2; border: 1px solid #eff0f2; border-radius: 3px; } diff --git a/p/themes/Screwdriver/screwdriver.rtl.css b/p/themes/Screwdriver/screwdriver.rtl.css index 00c2a42d7..a129c8f36 100644 --- a/p/themes/Screwdriver/screwdriver.rtl.css +++ b/p/themes/Screwdriver/screwdriver.rtl.css @@ -15,14 +15,6 @@ a, button.as-link { outline: none; } -/*=== Forms */ -.form-group { - display: inline-block; - float: right; - width: 100%; - height: auto; -} - legend { margin: 20px 0 5px; padding: 5px 0; @@ -766,6 +758,7 @@ a.btn { padding-right: .5rem; padding-left: .5rem; text-align: center; + text-shadow: 0 1px rgba(255,255,255,0.08); } .prompt form { @@ -793,7 +786,6 @@ a.btn { .prompt input { width: 100%; box-sizing: border-box; - } .prompt input#username,.prompt input#passwordPlain { diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index 3ed28d3c1..45e776c02 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -212,6 +212,15 @@ td.numeric { display: block; } +.form-advanced-title { + padding: 15px 0; + width: 200px; + font-size: 1.1em; + font-weight: bold; + text-align: right; + cursor: pointer; +} + @supports (position: sticky) { #mark-read-aside { position: sticky; diff --git a/p/themes/base-theme/template.rtl.css b/p/themes/base-theme/template.rtl.css index f0d7c7807..23ea28cdf 100644 --- a/p/themes/base-theme/template.rtl.css +++ b/p/themes/base-theme/template.rtl.css @@ -16,6 +16,7 @@ html, body { margin: 0; padding: 0; background: white; + color: black; font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", sans-serif; font-size: 100%; } @@ -211,6 +212,15 @@ td.numeric { display: block; } +.form-advanced-title { + padding: 15px 0; + width: 200px; + font-size: 1.1em; + font-weight: bold; + text-align: left; + cursor: pointer; +} + @supports (position: sticky) { #mark-read-aside { position: sticky; @@ -719,7 +729,7 @@ input[type="search"] { } .flux .item.title .author { - padding-left: 1rem; + padding-right: 1rem; color: #555; font-size: .9rem; font-weight: normal; @@ -1295,6 +1305,7 @@ input:checked + .slide-container .properties { .aside:target { width: 90%; + height: 100vh; } .aside_feed .configure-feeds { |
