diff options
| author | Alex <alex@al-f.net> | 2018-08-09 16:13:50 +0200 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2018-08-14 17:21:30 +0200 |
| commit | 3ba0d0516e5cabce8ebcc9a27c0fe069fa23f52c (patch) | |
| tree | dffd7311f1bf9bba9386101c67f5e03c30a53116 /searx/static/themes/simple/less/style.less | |
| parent | 845ba79e7532dedad2bb96e5d68504b6729bee14 (diff) | |
simple theme update
- npm package update
- apply #1226
- implement vim help dialog
- display cookies and search URL with preferences
- allow to enable / disable Open Access DOI rewrite
- add a clear text button on the left of the search button
- implement #1011 : the HTML title page is not set when using POST
- remove searx/static/themes/simple/img/loader.gif
- use full width when only there are only images as result
Diffstat (limited to 'searx/static/themes/simple/less/style.less')
| -rw-r--r-- | searx/static/themes/simple/less/style.less | 46 |
1 files changed, 29 insertions, 17 deletions
diff --git a/searx/static/themes/simple/less/style.less b/searx/static/themes/simple/less/style.less index b79b3eb24..9f69f7a80 100644 --- a/searx/static/themes/simple/less/style.less +++ b/searx/static/themes/simple/less/style.less @@ -477,25 +477,9 @@ article.result-images[data-vim-selected]::before { #search_url { margin-top: 8px; - div { - display: block; - border: 1px solid @color-result-search-url-border; - padding: 4px; - color: @color-result-search-url-font; - width: 100%; - display: block; - margin: 0.1em; - overflow: hidden; - height: 1.2em; - line-height: 1.2em; - + div.selectable_url { pre { - display: block; width: 200em; - font-size: 0.8em; - word-break: break-all; - margin: 0.1em; - .select-all-on-focus(); } } } @@ -648,6 +632,34 @@ article.result-images[data-vim-selected]::before { } +#main_results div#results.only_template_images { + flex-direction: column; + width: auto; + display: flex; + + #sidebar { + position: relative; + top: auto; + order: 2; + } + + #urls { + position: relative; + order: 1; + } + + #backToTop { + right: 0.5em; + left: auto; + } + + #pagination { + position: relative; + order: 3; + } +} + + @media screen and (max-width: @results-width) { article[data-vim-selected]::before { |