diff options
| author | 2020-04-08 20:52:15 +0200 | |
|---|---|---|
| committer | 2020-04-08 20:52:15 +0200 | |
| commit | f9e92a92864654f3952d58a7d4e85f3cf396fa0d (patch) | |
| tree | dea631f70874fdd070d7584acfe69742b892a373 /p/themes/Mapco | |
| parent | 0d235cbadd1fdc3a00d97128746f5138e9faa447 (diff) | |
Fix CSS hover long title (#2882)
* Fix CSS hover long title
#fix https://github.com/FreshRSS/FreshRSS/issues/2755
* Fix Ansum
* Fix Mapco
Diffstat (limited to 'p/themes/Mapco')
| -rw-r--r-- | p/themes/Mapco/_list-view.scss | 5 | ||||
| -rw-r--r-- | p/themes/Mapco/mapco.css | 7 | ||||
| -rw-r--r-- | p/themes/Mapco/mapco.rtl.css | 7 |
3 files changed, 8 insertions, 11 deletions
diff --git a/p/themes/Mapco/_list-view.scss b/p/themes/Mapco/_list-view.scss index 760aea96c..1e0b3ddc2 100644 --- a/p/themes/Mapco/_list-view.scss +++ b/p/themes/Mapco/_list-view.scss @@ -43,7 +43,7 @@ } .item.date { - color: unquote($unread-font-color+"99"); //-------------------- + color: scale-color($unread-font-color, $alpha: -50%); } } @@ -73,9 +73,8 @@ } .date { - color: $main-font-color; + color: scale-color($main-font-color, $alpha: -50%); font-size: 0.85rem; - opacity: 0.75; } .bottom { diff --git a/p/themes/Mapco/mapco.css b/p/themes/Mapco/mapco.css index bbbad8560..c9fc880a6 100644 --- a/p/themes/Mapco/mapco.css +++ b/p/themes/Mapco/mapco.css @@ -979,7 +979,7 @@ form th { .flux.not_read .item.website a { color: #36c; } .flux.not_read .item.date { - color: #36c99; } + color: rgba(51, 102, 204, 0.5); } .flux.favorite { border-left-color: #ffc300; -webkit-transition: all 0.15s ease-in-out; @@ -997,9 +997,8 @@ form th { .flux .website .favicon { padding: 5px; } .flux .date { - color: #303136; - font-size: 0.85rem; - opacity: 0.75; } + color: rgba(48, 49, 54, 0.5); + font-size: 0.85rem; } .flux .bottom { font-size: 1rem; text-align: center; } diff --git a/p/themes/Mapco/mapco.rtl.css b/p/themes/Mapco/mapco.rtl.css index 4f56b1453..19c2a5fdd 100644 --- a/p/themes/Mapco/mapco.rtl.css +++ b/p/themes/Mapco/mapco.rtl.css @@ -979,7 +979,7 @@ form th { .flux.not_read .item.website a { color: #36c; } .flux.not_read .item.date { - color: #36c99; } + color: rgba(51, 102, 204, 0.5); } .flux.favorite { border-right-color: #ffc300; -webkit-transition: all 0.15s ease-in-out; @@ -997,9 +997,8 @@ form th { .flux .website .favicon { padding: 5px; } .flux .date { - color: #303136; - font-size: 0.85rem; - opacity: 0.75; } + color: rgba(48, 49, 54, 0.5); + font-size: 0.85rem; } .flux .bottom { font-size: 1rem; text-align: center; } |
