comparison query_builder/selectize/dist/less/selectize.legacy.less @ 26:22be4ea663a7

Trying to work out having json request from neo4j display properly in drop down selectize box
author arussell
date Tue, 01 Dec 2015 02:07:13 -0500
parents
children
comparison
equal deleted inserted replaced
25:f82512502b31 26:22be4ea663a7
1 /**
2 * selectize.legacy.css (v0.12.1) - Default Theme
3 * Copyright (c) 2013–2015 Brian Reavis & contributors
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
6 * file except in compliance with the License. You may obtain a copy of the License at:
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under
10 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11 * ANY KIND, either express or implied. See the License for the specific language
12 * governing permissions and limitations under the License.
13 *
14 * @author Brian Reavis <brian@thirdroute.com>
15 */
16
17 @import "selectize";
18
19 @selectize-font-size: 13px;
20 @selectize-line-height: 20px;
21
22 @selectize-color-input-full: #f2f2f2;
23 @selectize-color-item: #b8e76f;
24 @selectize-color-item-text: #3d5d18;
25 @selectize-color-item-border: #74b21e;
26 @selectize-color-item-active: #92c836;
27 @selectize-color-item-active-border: #6f9839;
28 @selectize-color-highlight: rgba(255,237,40,0.4);
29 @selectize-color-dropdown-item-active: #fffceb;
30 @selectize-color-dropdown-item-active-text: @selectize-color-text;
31 @selectize-color-optgroup: #f8f8f8;
32 @selectize-color-optgroup-text: @selectize-color-text;
33 @selectize-width-item-border: 1px;
34
35 @selectize-padding-x: 10px;
36 @selectize-padding-y: 10px;
37 @selectize-padding-item-x: 5px;
38 @selectize-padding-item-y: 1px;
39 @selectize-padding-dropdown-item-x: 10px;
40 @selectize-padding-dropdown-item-y: 7px;
41 @selectize-margin-item-x: 4px;
42 @selectize-margin-item-y: 4px;
43
44 .selectize-control {
45 &.multi {
46 .selectize-input [data-value] {
47 text-shadow: 0 1px 0 rgba(255,255,255,0.1);
48 .selectize-border-radius(3px);
49 .selectize-vertical-gradient(#b8e76f, #a9e25c);
50 .selectize-box-shadow(0 1px 1px rgba(0,0,0,0.1));
51 &.active {
52 .selectize-vertical-gradient(#92c836, #7abc2c);
53 }
54 }
55 }
56 &.single {
57 .selectize-input {
58 .selectize-box-shadow(~"inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 0 #e0e0e0, 0 3px 0 #c8c8c8, 0 4px 1px rgba(0,0,0,0.1)");
59 .selectize-vertical-gradient(#f5f5f5, #efefef);
60 }
61 }
62 }
63
64 .selectize-control.single .selectize-input, .selectize-dropdown.single {
65 border-color: #b8b8b8;
66 }
67
68 .selectize-dropdown {
69 .optgroup-header {
70 font-weight: bold;
71 font-size: 0.8em;
72 border-bottom: 1px solid @selectize-color-dropdown-border-top;
73 border-top: 1px solid @selectize-color-dropdown-border-top;
74 }
75 }