diff options
| author | 2024-01-29 12:37:02 +0100 | |
|---|---|---|
| committer | 2024-01-29 12:37:02 +0100 | |
| commit | 4d95ef71642b4f5b17e4a56fdaf1561439f0dadf (patch) | |
| tree | c8ab97abad75e4af3be9b6e6fdf19c162177cd5d | |
| parent | 6228f959f7ff8d459aa5bc253d225c7e7f716165 (diff) | |
Improve the padding of the notification banner (#6074)
| -rw-r--r-- | p/themes/Nord/nord.css | 1 | ||||
| -rw-r--r-- | p/themes/Nord/nord.rtl.css | 1 | ||||
| -rw-r--r-- | p/themes/Origine-compact/origine-compact.css | 3 | ||||
| -rw-r--r-- | p/themes/Origine-compact/origine-compact.rtl.css | 3 | ||||
| -rw-r--r-- | p/themes/base-theme/frss.css | 2 | ||||
| -rw-r--r-- | p/themes/base-theme/frss.rtl.css | 2 |
6 files changed, 8 insertions, 4 deletions
diff --git a/p/themes/Nord/nord.css b/p/themes/Nord/nord.css index 7daf3f2ed..3cad22623 100644 --- a/p/themes/Nord/nord.css +++ b/p/themes/Nord/nord.css @@ -888,7 +888,6 @@ li.item.active { /*=== Notification and actualize notification */ .notification { - padding: 1rem 3rem 1rem 1rem; background: var(--dropdown-bg); color: var(--text-default); font-size: 0.9rem; diff --git a/p/themes/Nord/nord.rtl.css b/p/themes/Nord/nord.rtl.css index 5ba7bd508..6eebc5035 100644 --- a/p/themes/Nord/nord.rtl.css +++ b/p/themes/Nord/nord.rtl.css @@ -888,7 +888,6 @@ li.item.active { /*=== Notification and actualize notification */ .notification { - padding: 1rem 1rem 1rem 3rem; background: var(--dropdown-bg); color: var(--text-default); font-size: 0.9rem; diff --git a/p/themes/Origine-compact/origine-compact.css b/p/themes/Origine-compact/origine-compact.css index 38ae932f5..94705d90b 100644 --- a/p/themes/Origine-compact/origine-compact.css +++ b/p/themes/Origine-compact/origine-compact.css @@ -130,6 +130,9 @@ /*=== Content of feed articles */ /*=== Notification and actualize notification */ +.notification { + padding: 0.5rem 3rem 0.5rem 0.5rem; +} /*=== "Load more" part */ #bigMarkAsRead { font-size: 1.2em; diff --git a/p/themes/Origine-compact/origine-compact.rtl.css b/p/themes/Origine-compact/origine-compact.rtl.css index 6dc83e3cc..83ca78153 100644 --- a/p/themes/Origine-compact/origine-compact.rtl.css +++ b/p/themes/Origine-compact/origine-compact.rtl.css @@ -130,6 +130,9 @@ /*=== Content of feed articles */ /*=== Notification and actualize notification */ +.notification { + padding: 0.5rem 0.5rem 0.5rem 3rem; +} /*=== "Load more" part */ #bigMarkAsRead { font-size: 1.2em; diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index dafbb284f..ebbd7a627 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -1495,7 +1495,7 @@ a.website:hover .favicon { /*=== Notification and actualize notification */ .notification { - padding: 0.75rem 3.5rem 0.75rem 0.75rem; + padding: 1rem 3.5rem 1rem 1rem; position: absolute; top: 1rem; left: 25%; right: 25%; diff --git a/p/themes/base-theme/frss.rtl.css b/p/themes/base-theme/frss.rtl.css index 319a6a432..45b967b63 100644 --- a/p/themes/base-theme/frss.rtl.css +++ b/p/themes/base-theme/frss.rtl.css @@ -1495,7 +1495,7 @@ a.website:hover .favicon { /*=== Notification and actualize notification */ .notification { - padding: 0.75rem 0.75rem 0.75rem 3.5rem; + padding: 1rem 1rem 1rem 3.5rem; position: absolute; top: 1rem; right: 25%; left: 25%; |
