aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2020-05-30 14:36:46 +0200
committerGravatar GitHub <noreply@github.com> 2020-05-30 14:36:46 +0200
commit17baf9970f1ac8be468f1ce4503ab3ea025c0258 (patch)
tree3cf2b1fb46e4087279a645525d0fd351aaf4e389
parentc16709549782c82ff2b0a834f51658a9e099e966 (diff)
Fix alert-warn background (#3015)
Fix minor CSS regression from https://github.com/FreshRSS/FreshRSS/pull/2990
-rw-r--r--p/themes/base-theme/template.css6
-rw-r--r--p/themes/base-theme/template.rtl.css6
2 files changed, 10 insertions, 2 deletions
diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css
index bee20868f..ccc615fd0 100644
--- a/p/themes/base-theme/template.css
+++ b/p/themes/base-theme/template.css
@@ -384,6 +384,10 @@ a.btn {
width: 90%;
}
+.alert-warn {
+ background: inherit;
+}
+
.group-controls .alert {
width: 100%
}
@@ -604,7 +608,7 @@ input[type="search"] {
table-layout: fixed;
}
-#stream {
+#stream:not(.alert-warn) {
background: inherit;
}
diff --git a/p/themes/base-theme/template.rtl.css b/p/themes/base-theme/template.rtl.css
index ad9d7a9ef..a1fd33d0a 100644
--- a/p/themes/base-theme/template.rtl.css
+++ b/p/themes/base-theme/template.rtl.css
@@ -384,6 +384,10 @@ a.btn {
width: 90%;
}
+.alert-warn {
+ background: inherit;
+}
+
.group-controls .alert {
width: 100%
}
@@ -604,7 +608,7 @@ input[type="search"] {
table-layout: fixed;
}
-#stream {
+#stream:not(.alert-warn) {
background: inherit;
}