diff options
| author | 2024-04-25 08:45:59 +0200 | |
|---|---|---|
| committer | 2024-04-25 08:45:59 +0200 | |
| commit | aac3b21a8b4fd1a2f351a63fdb70d39ac2851921 (patch) | |
| tree | cc87dac0240cbd64da786136b399eca0af920042 /p/themes/Mapco | |
| parent | 7b922668551f5dcf99a79c474a09103e78e4c703 (diff) | |
Fix: overflow expanding title in entry header (#6373)
* change HTML structure
* CSS
Diffstat (limited to 'p/themes/Mapco')
| -rw-r--r-- | p/themes/Mapco/_list-view.scss | 8 | ||||
| -rw-r--r-- | p/themes/Mapco/mapco.css | 8 | ||||
| -rw-r--r-- | p/themes/Mapco/mapco.rtl.css | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/p/themes/Mapco/_list-view.scss b/p/themes/Mapco/_list-view.scss index 7d0fb87f4..40cc9d4a8 100644 --- a/p/themes/Mapco/_list-view.scss +++ b/p/themes/Mapco/_list-view.scss @@ -14,7 +14,7 @@ &:hover { background: variables.$grey-lighter; - &:not(.current):hover .item.title { + &:not(.current):hover .item .title { background: variables.$grey-lighter; } } @@ -28,13 +28,13 @@ &.not_read:not(.current) { background: variables.$unread-bg; - &:hover .item.title { + &:hover .item .title { background: variables.$unread-bg; } } &.not_read { - .item.title { + .item .title { a { color: variables.$unread-font-color; } @@ -61,7 +61,7 @@ &.favorite:not(.current) { background: variables.$fav-light; - &:hover .item.title { + &:hover .item .title { background: variables.$fav-light; } } diff --git a/p/themes/Mapco/mapco.css b/p/themes/Mapco/mapco.css index 76f807587..1d79a49b4 100644 --- a/p/themes/Mapco/mapco.css +++ b/p/themes/Mapco/mapco.css @@ -1007,7 +1007,7 @@ main.prompt { .flux .flux_header:hover { background: #f9fafb; } -.flux .flux_header:hover:not(.current):hover .item.title { +.flux .flux_header:hover:not(.current):hover .item .title { background: #f9fafb; } .flux.current { @@ -1017,10 +1017,10 @@ main.prompt { .flux.not_read:not(.current) { background: #f2f6f8; } -.flux.not_read:not(.current):hover .item.title { +.flux.not_read:not(.current):hover .item .title { background: #f2f6f8; } -.flux.not_read .item.title a { +.flux.not_read .item .title a { color: #36c; } .flux.not_read .item.website a { @@ -1036,7 +1036,7 @@ main.prompt { .flux.favorite:not(.current) { background: #fff6da; } -.flux.favorite:not(.current):hover .item.title { +.flux.favorite:not(.current):hover .item .title { background: #fff6da; } .flux .website a { diff --git a/p/themes/Mapco/mapco.rtl.css b/p/themes/Mapco/mapco.rtl.css index 1c55b037a..c38fba480 100644 --- a/p/themes/Mapco/mapco.rtl.css +++ b/p/themes/Mapco/mapco.rtl.css @@ -1007,7 +1007,7 @@ main.prompt { .flux .flux_header:hover { background: #f9fafb; } -.flux .flux_header:hover:not(.current):hover .item.title { +.flux .flux_header:hover:not(.current):hover .item .title { background: #f9fafb; } .flux.current { @@ -1017,10 +1017,10 @@ main.prompt { .flux.not_read:not(.current) { background: #f2f6f8; } -.flux.not_read:not(.current):hover .item.title { +.flux.not_read:not(.current):hover .item .title { background: #f2f6f8; } -.flux.not_read .item.title a { +.flux.not_read .item .title a { color: #36c; } .flux.not_read .item.website a { @@ -1036,7 +1036,7 @@ main.prompt { .flux.favorite:not(.current) { background: #fff6da; } -.flux.favorite:not(.current):hover .item.title { +.flux.favorite:not(.current):hover .item .title { background: #fff6da; } .flux .website a { |
