Browse Source

Merge pull request #2702 from MarcAbonce/fix-dark-infobox

Fix dark "expand" button from infobox
Alexandre Flament 4 years ago
parent
commit
ac0fdc3b96

+ 4 - 0
searx/static/themes/oscar/css/logicodev-dark.css

@@ -341,6 +341,10 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
   width: 100%;
   text-align: center;
   margin-bottom: 0px;
+  cursor: pointer;
+}
+.infobox .infobox_toggle:hover {
+  background: #DDD;
 }
 .infobox .infobox_checkbox ~ .infobox_body {
   max-height: 300px;

File diff suppressed because it is too large
+ 0 - 0
searx/static/themes/oscar/css/logicodev-dark.min.css


File diff suppressed because it is too large
+ 0 - 0
searx/static/themes/oscar/css/logicodev-dark.min.css.map


+ 12 - 0
searx/static/themes/oscar/css/logicodev.css

@@ -314,6 +314,10 @@ input[type=checkbox]:not(:checked) + .label_hide_if_checked + .label_hide_if_not
   width: 100%;
   text-align: center;
   margin-bottom: 0px;
+  cursor: pointer;
+}
+.infobox .infobox_toggle:hover {
+  background: #DDD;
 }
 .infobox .infobox_checkbox ~ .infobox_body {
   max-height: 300px;
@@ -991,6 +995,14 @@ ul.nav li a {
   background: #1d1f21 !important;
   border-color: #111 !important;
 }
+.panel-footer {
+  color: #C5C8C6 !important;
+  background: #282a2e !important;
+  border-top: 1px solid #111 !important;
+}
+.infobox_toggle:hover {
+  background: #3d3f43 !important;
+}
 p.btn.btn-default {
   background: none;
 }

File diff suppressed because it is too large
+ 0 - 0
searx/static/themes/oscar/css/logicodev.min.css


File diff suppressed because it is too large
+ 0 - 0
searx/static/themes/oscar/css/logicodev.min.css.map


+ 10 - 0
searx/static/themes/oscar/src/less/logicodev-dark/oscar.less

@@ -132,6 +132,16 @@ ul.nav li a {
   border-color: #111 !important;
 }
 
+.panel-footer {
+  color: #C5C8C6 !important;
+  background: #282a2e !important;
+  border-top: 1px solid #111 !important;
+}
+
+.infobox_toggle:hover {
+  background: #3d3f43 !important;
+}
+
 p.btn.btn-default{
   background: none;
 }

+ 5 - 0
searx/static/themes/oscar/src/less/logicodev/infobox.less

@@ -50,6 +50,11 @@
         width: 100%;
         text-align: center;
         margin-bottom: 0px;
+        cursor: pointer;
+    }
+
+    .infobox_toggle:hover {
+        background: @mild-gray;
     }
 
     // Shrink infobox size when toggle is off

Some files were not shown because too many files changed in this diff