jquery.taghandler.css
2.01 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
input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
outline: 0px !important;
}
input{
box-shadow: 0px 0px 0px #fff;
}
.tagHandler {
width: 100%;
position: relative;
}
.tagHandler ul.tagHandlerContainer {
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border: 0px solid #DFDFDF;
overflow: hidden;
min-height: 30px;
line-height: 30px;
cursor: text;
font-family: arial, helvetica, sans-serif;
padding: 0px 5px;
margin: 10px 0px;
}
.tagHandler ul.tagHandlerContainer li {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
height: 14px;
line-height: 14px;
display: block;
float: left;
font-size: 14px;
margin: 5px 5px 5px 0;
white-space: nowrap;
}
.tagHandler ul.tagHandlerContainer li.tagItem {
background-color: #303030;
color: #FFF;
padding: 8px 15px;
cursor: url('../img/remove_tag.png'), pointer;
border: 1px solid #FFFFFF;
-webkit-box-shadow: 0 0 2px #202020;
-moz-box-shadow: 0 0 2px #202020;
box-shadow: 0 0 2px #202020;
}
.tagHandler ul.tagHandlerContainer li.tagItem:hover {
background-color: #202020;
}
.tagHandler ul.tagHandlerContainer li.tagInput {
padding: 0px;
}
.tagHandler ul.tagHandlerContainer input.tagInputField {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: none;
width: inherit;
background: #FCFCFC;
color: #333333;
font-size: 12px;
height: 25px;
padding: 0 0 0 3px;
margin: 5px 0 0 5px;
box-shadow: 0 0 0 #fff;
}
.tagHandler div.tagLoader {
position: absolute;
right: -24px;
top: 12px;
display: none;
background: url('../images/loader.gif') center center no-repeat;
width: 16px;
height: 18px;
cursor: default;
}
.tagHandler div.tagUpdate {
position: absolute;
right: -24px;
top: 14px;
background: url('../images/tag_update.png') center center no-repeat;
width: 16px;
height: 16px;
cursor: pointer;
}