2016-08-09 11:41:26 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2016-08-09 11:41:26 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
|
|
.red-ui-searchBox-container {
|
2016-09-30 00:45:25 +02:00
|
|
|
position: relative;
|
2016-08-09 11:41:26 +02:00
|
|
|
i {
|
|
|
|
font-size: 10px;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
i.fa-search {
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
2016-09-30 00:45:25 +02:00
|
|
|
left: 8px;
|
|
|
|
top: 9px;
|
2016-08-09 11:41:26 +02:00
|
|
|
}
|
|
|
|
i.fa-times {
|
|
|
|
position: absolute;
|
2016-09-30 00:45:25 +02:00
|
|
|
right: 5px;
|
|
|
|
top: 9px;
|
2016-08-09 11:41:26 +02:00
|
|
|
}
|
|
|
|
input {
|
|
|
|
border-radius: 0;
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
padding: 3px 17px 3px 22px;
|
|
|
|
margin: 0px;
|
|
|
|
height: 30px;
|
|
|
|
box-sizing:border-box;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 20px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.red-ui-searchBox-resultCount {
|
|
|
|
position: absolute;
|
2016-09-30 00:45:25 +02:00
|
|
|
right: 18px;
|
|
|
|
top: 4px;
|
2016-08-09 11:41:26 +02:00
|
|
|
background: #eee;
|
|
|
|
color: #666;
|
|
|
|
padding: 1px 8px;
|
|
|
|
font-size: 9px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
}
|