-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtoken-input-bootstrap2.less
114 lines (98 loc) · 2.21 KB
/
token-input-bootstrap2.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@tagBgColor: #eff2f7;
@tagBorderColor: #b9c7ce;
ul.token-input-list-bootstrap {
.uneditable-input;
.input-block-level;
overflow: hidden;
height: auto !important;
border: 1px solid @inputBorder;
cursor: text;
margin: 0;
padding: 0;
background-color: #fff;
list-style-type: none;
}
ul.token-input-list-bootstrap li input {
border: 0;
width: 100px;
padding: 3px 8px;
background-color: white;
margin: 2px 0;
-webkit-appearance: caret;
}
li.token-input-token-bootstrap {
overflow: hidden;
height: auto !important;
height: 15px;
margin: 3px;
padding: 1px 3px;
background-color: @tagBgColor;
color: #000;
cursor: default;
border: 1px solid @tagBorderColor;
font-size: 13px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
float: left;
white-space: nowrap;
}
li.token-input-token-bootstrap p {
display: inline;
padding: 0;
margin: 0;
}
li.token-input-token-bootstrap span {
color: #a6b3cf;
margin-left: 5px;
font-weight: bold;
cursor: pointer;
}
li.token-input-selected-token-bootstrap {
background-color: darken(@tagBgColor, 5%);
border: 1px solid darken(@tagBorderColor, 5%);
}
li.token-input-input-token-bootstrap {
float: left;
margin: 0;
padding: 0;
list-style-type: none;
}
div.token-input-dropdown-bootstrap {
.dropdown-menu;
.typeahead;
}
div.token-input-dropdown-bootstrap p {
margin: 0;
padding: 5px;
color: @grayLight;
}
div.token-input-dropdown-bootstrap ul {
margin: 0;
padding: 0;
}
div.token-input-dropdown-bootstrap ul li {
list-style-type: none;
display: block;
padding: 3px 15px;
clear: both;
font-weight: normal;
line-height: @baseLineHeight;
color: @dropdownLinkColor;
white-space: nowrap;
}
div.token-input-dropdown-bootstrap ul li.token-input-dropdown-item-bootstrap {
background-color: @white;
}
div.token-input-dropdown-bootstrap ul li.token-input-dropdown-item2-bootstrap {
background-color: @white;
}
div.token-input-dropdown-bootstrap ul li em {
font-weight: bold;
font-style: normal;
}
div.token-input-dropdown-bootstrap ul li.token-input-selected-dropdown-item-bootstrap {
color: @dropdownLinkColorHover;
background-color: @dropdownLinkBackgroundHover;
cursor: pointer;
}