This repository was archived by the owner on Jan 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmab-jquery-taginput.scss
107 lines (89 loc) · 2.12 KB
/
mab-jquery-taginput.scss
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
.mab-jquery-taginput {
input {
border: solid 1px #fff;
outline: none;
width: 6em;
height: 20.984375px;
padding: 1px 0;
font-size: 14px;
line-height: 1.21;
vertical-align: top;
margin-bottom: 6px;
// Narrow the input to 1px for a tidier effect on blur
&.h {
width: 1px;
}
// Uncomment for visual debugging
//background-color: #e0e0e0;
// Make placeholder text a consistent colour across browsers
&:-moz-placeholder {
color: #999999;
}
&::-moz-placeholder {
color: #999999;
opacity: 1;
}
&:-ms-input-placeholder {
color: #999999;
}
&::-webkit-input-placeholder {
color: #999999;
}
// Remove the IE clear/reset cross
&::-ms-clear {
display: none;
}
}
&.form-control {
height: auto;
padding-bottom: 0;
}
.label {
font-size: 1em;
padding-right: 0.5em;
margin-right: 5px;
display: inline-block;
margin-bottom: 6px;
}
a {
text-decoration: none;
color: #fff;
}
.glyphicon {
font-size: 0.85em;
vertical-align: -1px;
cursor: pointer;
}
}
.tt-query {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tt-hint {
color: #999;
}
.tt-menu {
min-width: 160px;
padding: 5px 0;
margin: 2px 0 0;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
box-shadow: 0 5px 10px rgba(0,0,0,.2);
border-radius: 6px;
background-clip: padding-box;
}
.tt-suggestion {
margin: 0;
padding: 3px 20px;
line-height: 20px;
clear: both;
white-space: nowrap;
}
.tt-suggestion.tt-cursor {
color: #fff;
background-color: #428bca;
}