diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-04-24 07:02:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-24 07:02:52 +0200 |
| commit | 3cdd6a6a504dd283e2afabaf903b2c8c9a2cc286 (patch) | |
| tree | da863c43f3632a6f6d82dc6d32654693a5b96c9c /searx/static/themes/simple/less | |
| parent | 461c6fb21eb3f63c5b025724a0b9e90b41d42a71 (diff) | |
| parent | 7032f7521c344592dc68f89027c98cdec46d7055 (diff) | |
Merge pull request #12 from searxng/metrics-stats-page
[mod] update /stats
Diffstat (limited to 'searx/static/themes/simple/less')
| -rw-r--r-- | searx/static/themes/simple/less/preferences.less | 18 | ||||
| -rw-r--r-- | searx/static/themes/simple/less/toolkit.less | 33 |
2 files changed, 33 insertions, 18 deletions
diff --git a/searx/static/themes/simple/less/preferences.less b/searx/static/themes/simple/less/preferences.less index 93bdaad27..e1e88b51f 100644 --- a/searx/static/themes/simple/less/preferences.less +++ b/searx/static/themes/simple/less/preferences.less @@ -93,24 +93,6 @@ width: 100%; } } - - - .engine-tooltip { - display: none; - position: absolute; - padding: 0.5rem 1rem; - margin: 0rem 0 0 2rem; - border: 1px solid #ddd; - background: white; - font-size: 14px; - font-weight: normal; - z-index: 1000000; - text-align: left; - } - - th:hover .engine-tooltip, td:hover .engine-tooltip, .engine-tooltip:hover { - display: inline-block; - } } diff --git a/searx/static/themes/simple/less/toolkit.less b/searx/static/themes/simple/less/toolkit.less index b3dba9ea9..3e9274fc8 100644 --- a/searx/static/themes/simple/less/toolkit.less +++ b/searx/static/themes/simple/less/toolkit.less @@ -475,6 +475,25 @@ select { } } +/* -- engine-tooltip -- */ +.engine-tooltip { + display: none; + position: absolute; + padding: 0.5rem 1rem; + margin: 0rem 0 0 2rem; + border: 1px solid #ddd; + box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.1); + background: white; + font-size: 14px; + font-weight: normal; + z-index: 1000000; + text-align: left; +} + +th:hover .engine-tooltip, td:hover .engine-tooltip, .engine-tooltip:hover { + display: inline-block; +} + /* -- stacked bar chart -- */ .stacked-bar-chart { margin: 0; @@ -532,3 +551,17 @@ select { padding: 0.4rem 0; width: 1px; } + +.stacked-bar-chart-serie1 { + .stacked-bar-chart-base(); + background: #5bc0de; + box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); + padding: 0.4rem 0; +} + +.stacked-bar-chart-serie2 { + .stacked-bar-chart-base(); + background: #deb15b; + box-shadow: inset 0 -1px 0 rgba(0,0,0,.15); + padding: 0.4rem 0; +} |