diff options
author | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-19 22:04:53 +0100 |
---|---|---|
committer | Cqoicebordel <Cqoicebordel@users.noreply.github.com> | 2015-01-19 22:04:53 +0100 |
commit | 71ae75d73e3dd33d719d6eb94e173b02c9b47edd (patch) | |
tree | b28348dece92e1e7eae9454d6f86def03d7b8ae5 /searx/static | |
parent | 9b2187b261a9fd4cc36c2df4c29891b7c859908d (diff) | |
download | searxng-71ae75d73e3dd33d719d6eb94e173b02c9b47edd.tar.gz searxng-71ae75d73e3dd33d719d6eb94e173b02c9b47edd.zip |
Extract color
Diffstat (limited to 'searx/static')
-rw-r--r-- | searx/static/themes/courgette/less/style.less | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/searx/static/themes/courgette/less/style.less b/searx/static/themes/courgette/less/style.less index 0d5648317..fab3bd8bd 100644 --- a/searx/static/themes/courgette/less/style.less +++ b/searx/static/themes/courgette/less/style.less @@ -1,5 +1,6 @@ @color-main: #3498DB; +@color-focus: #0665A2; @color-other-links: #666; @color-fonts: #333; @center-width: 70em; @@ -241,7 +242,7 @@ a { #search_submit:hover, #search_submit:focus { - background-color: #0665A2; + background-color: @color-focus; } #sidebar { @@ -311,7 +312,7 @@ a { #sidebar input[type="submit"]:hover, #sidebar input[type="submit"]:focus { color: #FFF; - background-color: #0665A2; + background-color: @color-focus; } #results { @@ -433,7 +434,7 @@ input[type="submit"] { input[type="submit"]:hover, input[type="submit"]:focus { - background: #0665A2; + background: @color-focus; } .row { |