-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery.tags.css
107 lines (94 loc) · 1.88 KB
/
jquery.tags.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
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
body {
background-color: #FFF;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
line-height: 2em;
}
.tag-wrapper {
-moz-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tag-list {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
border-radius: 4px;
font-size: 12px;
font-size: 1.2rem;
cursor: text;
z-index: 999;
margin: 0;
padding: 0 6px;
border: 1px solid #CCC;
background-color: white;
list-style-type: none;
line-height: 28px;
display: inline-block;
width: 100%
}
.tag {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
-ms-border-radius: 5px;
border-radius: 5px;
margin: 2px 10px 2px 0;
padding: 2px 4px;
color: black;
cursor: default;
border: 1px solid #E1E1E1;
line-height: 24px;
}
.tag-item {
float: left;
font-size: 14px;
}
.tag-list li:last-child {
background: url(search-icon.png) no-repeat scroll 0 center;
padding-left: 14px;
}
.tag-image {
float: left;
margin-right: 5px;
}
.tag-remove {
color: #999;
cursor: pointer;
float: right;
margin-left: 5px;
}
.tag i {
line-height: 24px;
}
.tag p {
white-space: nowrap;
-o-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
text-overflow: ellipsis;
float: left;
width: auto;
padding: 0;
margin: 0;
}
.tag-list input {
border: 0;
padding: 0 6px;
margin: 3px 0px;
line-height: 28px;
height: 28px;
-webkit-appearance: none;
/* overwrite bootstrap */
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.tag-input input:focus {
/* overwrite bootstrap */
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}