-
Notifications
You must be signed in to change notification settings - Fork 1
/
cw-token-field.css
executable file
·74 lines (68 loc) · 1.33 KB
/
cw-token-field.css
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
:host {
background-color: #fff;
border: 1px solid #aaa;
cursor: text;
display: inline-block;
font-size: 14px;
margin: 2px;
padding: 0.142856em;
position: relative;
width: 200px;
}
polyfill-next-selector { content: ':host > .selected'; }
.selected {
background-color: #ededed;
border: 1px solid #d9d9d9;
border-radius: 0.214284em;
cursor: default;
float: left;
margin: 0.142856em;
padding: 0.142856em 0.214284em;
}
.unselect {
color: #000;
cursor: pointer;
font-family: Arial;
font-weight: bold;
opacity: .2;
}
input {
-webkit-appearance: none;
background: none;
border: 0;
box-sizing: border-box;
color: inherit;
float: left;
font: inherit;
letter-spacing: inherit;
line-height: 1.19 !important;
margin: 1px 0;
max-width: 100%;
min-width: 1.8em;
outline: none;
padding: 0.285712em 0.142856em;
text-align: inherit;
text-indent: inherit;
text-shadow: inherit;
text-transform: inherit;
vertical-align: baseline;
word-spacing: inherit;
}
input.maximize-width {
width: 100% !important;
}
cw-options-list {
background: #fff;
border: 1px solid #aaa;
border-top: 0;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
left: -1px;
margin: 0;
padding: 0;
position: absolute;
top: calc(100% + 2px);
width: 100%;
}
cw-options-list[hidden] {
display: none !important;
}