-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtoken-input-bootstrappy.css
More file actions
129 lines (114 loc) · 2.87 KB
/
token-input-bootstrappy.css
File metadata and controls
129 lines (114 loc) · 2.87 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Example tokeninput style #2: Facebook style */
ul.token-input-list-facebook {
overflow: hidden;
height: auto !important;
height: 1%;
width: 400px;
border: 1px solid $inputBorder;
cursor: text;
font-size: $baseFontSize;
font-family: $sansFontFamily;
min-height: 1px;
z-index: 999;
margin: 0;
padding: 0;
background-color: $sansFontFamily;
list-style-type: none;
clear: left;
@include border-radius(3px);
}
ul.token-input-list-facebook.token-input-focused-facebook {
border-color: #59abea; // for old browsers
border-color: rgba(82, 168, 236, 0.8);
@include box-shadow(#{inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6)});
outline: 0;
outline: thin dotted 9;
}
ul.token-input-list-facebook li input {
border: 0;
width: 100px;
padding: 3px 8px;
background-color: $white;
margin: 2px 0;
-webkit-appearance: caret;
}
li.token-input-token-facebook {
overflow: hidden;
height: auto !important;
height: 15px;
margin: 3px;
padding: 1px 3px;
background-color: darken($white, 4%);
color: #555;
cursor: default;
border: 1px solid $inputBorder;
font-size: 11px;
@include border-radius(5px);
float: left;
white-space: nowrap;
}
li.token-input-token-facebook p {
display: inline;
padding: 0;
margin: 0;
}
li.token-input-token-facebook span {
color: #a6b3cf;
margin-left: 5px;
font-weight: bold;
cursor: pointer;
}
li.token-input-selected-token-facebook {
background-color: $infoText;
border: 1px solid darken($infoText, 5%);
color: $white;
}
li.token-input-input-token-facebook {
float: left;
margin: 0;
padding: 0;
list-style-type: none;
}
div.token-input-dropdown-facebook {
position: absolute;
width: 400px;
background-color: darken($white, 4%);
overflow: hidden;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
cursor: default;
font-size: $baseFontSize;;
font-family: $sansFontFamily;
z-index: 1;
}
div.token-input-dropdown-facebook p {
margin: 0;
padding: 5px;
font-weight: bold;
color: $gray;
}
div.token-input-dropdown-facebook ul {
margin: 0;
padding: 0;
}
div.token-input-dropdown-facebook ul li {
background-color: darken($white, 4%);
padding: 3px;
margin: 0;
list-style-type: none;
}
div.token-input-dropdown-facebook ul li.token-input-dropdown-item-facebook {
background-color: darken($white, 4%);
}
div.token-input-dropdown-facebook ul li.token-input-dropdown-item2-facebook {
background-color: darken($white, 4%);
}
div.token-input-dropdown-facebook ul li em {
font-weight: bold;
font-style: normal;
}
div.token-input-dropdown-facebook ul li.token-input-selected-dropdown-item-facebook {
background-color: $linkColor;
color: $white;
}