mirror of
https://github.com/searxng/searxng.git
synced 2025-08-03 10:32:21 +02:00
edit style of autcompleter
This commit is contained in:
parent
8abf4ab993
commit
e181fd8f56
4 changed files with 50 additions and 118 deletions
|
@ -1,19 +1,23 @@
|
|||
/*
|
||||
* searx, A privacy-respecting, hackable metasearch engine
|
||||
*/
|
||||
|
||||
ul {
|
||||
&.autocompleter-choices {
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
border: 1px solid #7c7c7c;
|
||||
border-left-color: #c3c3c3;
|
||||
border-right-color: #c3c3c3;
|
||||
border-bottom-color: #ddd;
|
||||
background-color: #fff;
|
||||
border: 1px solid @color-autocompleter-choices-border;
|
||||
border-left-color: @color-autocompleter-choices-border-left-right;
|
||||
border-right-color: @color-autocompleter-choices-border-left-right;
|
||||
border-bottom-color: @color-autocompleter-choices-border-bottom;
|
||||
text-align: left;
|
||||
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
|
||||
z-index: 50;
|
||||
background-color: #fff;
|
||||
|
||||
background-color: @color-autocompleter-choices-background;
|
||||
color: @color-autocompleter-choices-font;
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
margin: -2px 0 0 0;
|
||||
|
@ -27,11 +31,11 @@ ul {
|
|||
line-height: 1.5em;
|
||||
|
||||
&.autocompleter-selected {
|
||||
background-color: #444;
|
||||
color: #fff;
|
||||
background-color: @color-autocompleter-selected-background;
|
||||
color: @color-autocompleter-selected-font;
|
||||
|
||||
span.autocompleter-queried {
|
||||
color: #9FCFFF;
|
||||
color: @color-autocompleter-selected-queried-font;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -46,12 +50,12 @@ ul {
|
|||
}
|
||||
}
|
||||
|
||||
.autocompleter-loading {
|
||||
/*.autocompleter-loading {
|
||||
//background-image: url(images/spinner.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: right 50%;
|
||||
}
|
||||
}*/
|
||||
|
||||
textarea.autocompleter-loading {
|
||||
/*textarea.autocompleter-loading {
|
||||
background-position: right bottom;
|
||||
}
|
||||
}*/
|
||||
|
|
|
@ -33,6 +33,20 @@
|
|||
@color-search-background: #FFF;
|
||||
@color-search-font: #222;
|
||||
|
||||
/// Autocompleter
|
||||
|
||||
@color-autocompleter-choices-background: #FFF;
|
||||
@color-autocompleter-choices-border: @color-base;
|
||||
@color-autocompleter-choices-border-left-right: @color-base;
|
||||
@color-autocompleter-choices-border-bottom: @color-base;
|
||||
|
||||
@color-autocompleter-choices-font: #444;
|
||||
|
||||
// Selected
|
||||
@color-autocompleter-selected-background: #444;
|
||||
@color-autocompleter-selected-font: #FFF;
|
||||
@color-autocompleter-selected-queried-font: #9FCFFF;
|
||||
|
||||
/// Categories
|
||||
|
||||
@color-categories-item-selected: @color-base;
|
||||
|
|
|
@ -8,10 +8,6 @@
|
|||
|
||||
@import "mixins.less";
|
||||
|
||||
// Autocompleter
|
||||
|
||||
@import "autocompleter.less";
|
||||
|
||||
// Main LESS-Code
|
||||
|
||||
html {
|
||||
|
@ -34,6 +30,14 @@ body, #container {
|
|||
top: 0;
|
||||
}
|
||||
|
||||
// Search-Field
|
||||
|
||||
@import "search.less";
|
||||
|
||||
// Autocompleter
|
||||
|
||||
@import "autocompleter.less";
|
||||
|
||||
.row {
|
||||
max-width: 800px;
|
||||
margin: 20px auto;
|
||||
|
@ -149,20 +153,6 @@ fieldset {
|
|||
color: @color-categories-item-selected-font;
|
||||
}
|
||||
|
||||
.search {
|
||||
.checkbox_container label {
|
||||
border-bottom: 4px solid @color-categories-item-border-unselected;
|
||||
}
|
||||
|
||||
.checkbox_container label:hover {
|
||||
border-bottom: 4px solid @color-categories-item-border-unselected-hover;
|
||||
}
|
||||
|
||||
.checkbox_container input[type="checkbox"]:checked + label {
|
||||
border-bottom: 4px solid @color-categories-item-border-selected;
|
||||
}
|
||||
}
|
||||
|
||||
.engine_checkbox {
|
||||
padding: 4px;
|
||||
}
|
||||
|
@ -272,12 +262,6 @@ a {
|
|||
margin: 2px 0;
|
||||
}
|
||||
|
||||
.search {
|
||||
background: @color-result-search-background;
|
||||
padding: 0;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
|
@ -360,46 +344,6 @@ tr {
|
|||
}
|
||||
}
|
||||
|
||||
#search_wrapper {
|
||||
position: relative;
|
||||
max-width: 600px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.center #search_wrapper {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.q {
|
||||
background: none repeat scroll 0 0 @color-search-background;
|
||||
border: 1px solid @color-search-border;
|
||||
color: @color-search-font;
|
||||
font-size: 16px;
|
||||
height: 28px;
|
||||
margin: 0;
|
||||
outline: medium none;
|
||||
padding: 2px;
|
||||
padding-left: 8px;
|
||||
padding-right: 0px !important;
|
||||
width: 100%;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
#search_submit {
|
||||
position: absolute;
|
||||
top: 13px;
|
||||
right: 1px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
background: url('../img/search-icon.png') no-repeat;
|
||||
background-size: 24px 24px;
|
||||
opacity: 0.8;
|
||||
width: 24px;
|
||||
height: 30px;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
#results {
|
||||
margin: 10px;
|
||||
padding: 0;
|
||||
|
@ -510,12 +454,6 @@ tr {
|
|||
}
|
||||
|
||||
@media screen and (max-width: 680px) {
|
||||
#search_wrapper {
|
||||
width: 90%;
|
||||
clear:both;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.right {
|
||||
display: none;
|
||||
postion: fixed !important;
|
||||
|
@ -578,24 +516,3 @@ tr {
|
|||
color: @color-settings-return-font;
|
||||
}
|
||||
}
|
||||
|
||||
/*#search_autocompleter {
|
||||
border: 1px solid #3498DB;
|
||||
position: absolute;
|
||||
top: 43px;
|
||||
width:100%;
|
||||
background:#FFF;
|
||||
z-index:2;
|
||||
|
||||
p {
|
||||
border-bottom: 1px solid #ccc;
|
||||
}
|
||||
}*/
|
||||
|
||||
/*#search_input {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#search_form {
|
||||
|
||||
}*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue