diff options
| author | 2025-08-30 21:30:16 +0200 | |
|---|---|---|
| committer | 2025-08-30 21:30:16 +0200 | |
| commit | 266c1ce85e9b9df6cec95eeb3936225871c1b7d7 (patch) | |
| tree | 2da6d411c09696a7c8815971d8a5b7669fb7881f /p/themes | |
| parent | 2b02ca59c6af1cfe087ec7e6ea9773cffd48fd50 (diff) | |
fix: Mapco/Ansum theme: read all button in mobile view (#7873)
Closes #7644
Before:
<img width="212" height="153" alt="grafik" src="https://github.com/user-attachments/assets/628034cf-421a-43c1-a762-21906d99d5d9" />
After:
<img width="249" height="186" alt="grafik" src="https://github.com/user-attachments/assets/8414aa34-4936-44e1-84e4-52dad70477b6" />
How to test the feature manually:
1. use Ansum/Mapco theme
2. have a small screen to see it in the mobile view
3. see the read all button in the normal view
Diffstat (limited to 'p/themes')
| -rw-r--r-- | p/themes/Ansum/_mobile.scss | 4 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.css | 3 | ||||
| -rw-r--r-- | p/themes/Ansum/ansum.rtl.css | 3 | ||||
| -rw-r--r-- | p/themes/Mapco/_mobile.scss | 4 | ||||
| -rw-r--r-- | p/themes/Mapco/mapco.css | 3 | ||||
| -rw-r--r-- | p/themes/Mapco/mapco.rtl.css | 3 |
6 files changed, 20 insertions, 0 deletions
diff --git a/p/themes/Ansum/_mobile.scss b/p/themes/Ansum/_mobile.scss index 90c744566..dc109caaa 100644 --- a/p/themes/Ansum/_mobile.scss +++ b/p/themes/Ansum/_mobile.scss @@ -96,6 +96,10 @@ } } + #nav_menu_read_all #nav_menu_read .dropdown-toggle.btn { + background-image: none; + } + #stream { .flux { .flux_header { diff --git a/p/themes/Ansum/ansum.css b/p/themes/Ansum/ansum.css index 6c90e7b4c..4a0c4a676 100644 --- a/p/themes/Ansum/ansum.css +++ b/p/themes/Ansum/ansum.css @@ -1275,6 +1275,9 @@ main.prompt { .nav_menu .search .input:focus { width: 400px; } + #nav_menu_read_all #nav_menu_read .dropdown-toggle.btn { + background-image: none; + } #stream .flux .flux_header { padding: 0.5rem 0; } diff --git a/p/themes/Ansum/ansum.rtl.css b/p/themes/Ansum/ansum.rtl.css index dd7fb6158..2d9fe14db 100644 --- a/p/themes/Ansum/ansum.rtl.css +++ b/p/themes/Ansum/ansum.rtl.css @@ -1275,6 +1275,9 @@ main.prompt { .nav_menu .search .input:focus { width: 400px; } + #nav_menu_read_all #nav_menu_read .dropdown-toggle.btn { + background-image: none; + } #stream .flux .flux_header { padding: 0.5rem 0; } diff --git a/p/themes/Mapco/_mobile.scss b/p/themes/Mapco/_mobile.scss index 8e47832a2..c05a49502 100644 --- a/p/themes/Mapco/_mobile.scss +++ b/p/themes/Mapco/_mobile.scss @@ -103,6 +103,10 @@ } } + #nav_menu_read_all #nav_menu_read .dropdown-toggle.btn { + background-image: none; + } + #stream { .flux { .flux_header { diff --git a/p/themes/Mapco/mapco.css b/p/themes/Mapco/mapco.css index 007fcb510..4b88e95e7 100644 --- a/p/themes/Mapco/mapco.css +++ b/p/themes/Mapco/mapco.css @@ -1292,6 +1292,9 @@ main.prompt { .nav_menu .search .input:focus { width: 400px; } + #nav_menu_read_all #nav_menu_read .dropdown-toggle.btn { + background-image: none; + } #stream .flux .flux_header { padding: 0.5rem 0; } diff --git a/p/themes/Mapco/mapco.rtl.css b/p/themes/Mapco/mapco.rtl.css index ebd8e42f7..1028f1b26 100644 --- a/p/themes/Mapco/mapco.rtl.css +++ b/p/themes/Mapco/mapco.rtl.css @@ -1292,6 +1292,9 @@ main.prompt { .nav_menu .search .input:focus { width: 400px; } + #nav_menu_read_all #nav_menu_read .dropdown-toggle.btn { + background-image: none; + } #stream .flux .flux_header { padding: 0.5rem 0; } |
