-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmartTextBox.css
More file actions
144 lines (116 loc) · 2.13 KB
/
SmartTextBox.css
File metadata and controls
144 lines (116 loc) · 2.13 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
* SmartTextBox.css
*
* SmartTextBox default styles
* Copyright (c) 2009-2010 Pierre Gayvallet - GPL license.
*/
.smartTextBox{
font: 12px "Lucida Grande",
Verdana;
cursor: text;
}
.smartTextBox-items{
zoom: 1;
overflow: hidden;
margin: 0;
padding: 3px 4px 0;
border: 1px solid #999;
*padding-bottom: 3px;
}
.smartTextBox-elem{
list-style-type: none;
line-height: 18px;
float: left;
display: block;
padding: 0;
margin: 0 5px 3px 0;
cursor: default;
}
.smartTextBox-box-elem{
position: relative;
padding: 0 5px;
border: 1px solid #CAD8F3;
background: #DEE7F8;
cursor: default;
-moz-border-radius: 9px;
-webkit-border-radius: 9px;
border-radius: 9px;
}
.smartTextBox-input-elem{
backgound-color : transparent;
}
.smartTextBox-input-elem-valueInput{
border: none;
}
.smartTextBox-elem-hover{
}
.smartTextBox-elem-box-hover{
background-color: #BBCEF1;
}
.smartTextBox-elem-input-hover{
}
.smartTextBox-elem-focus{
}
.smartTextBox-elem-box-focus{
background-color: #598BEC;
}
.smartTextBox-elem-input-focus{
}
.smartTextBox-elem-valueContainer{
margin-right: 8px;
white-space: nowrap;
}
.smartTextBox-elem-deleteButton{
position: absolute;
right: 4px;
top: 6px;
display: block;
width: 7px;
height: 7px;
font-size: 1px;
background: url('imgs/close.gif');
}
.smartTextBox-elem-deleteButton:hover{
border: none;
background-position: 7px;
text-decoration: none;
}
/* AutoComplete */
.smartTextBox-autocomplete{
position: absolute;
z-index: 10;
}
.smartTextBox-autocomplete-placeholder{
opacity: 0.9;
filter: alpha(opacity=90);
background: #eee;
border: 1px solid #999;
border-top: none;
padding: 5px 7px;
}
.smartTextBox-autocomplete-results{
opacity: 0.9;
filter: alpha(opacity=90);
background: #eee;
border: 1px solid #999;
border-top: none;
margin: 0;
padding: 0;
}
.smartTextBox-autocomplete-result{
margin: 0;
padding: 5px;
list-style-type: none;
background: #eee;
cursor: pointer;
.width: 100%;
}
.smartTextBox-autocomplete-value {
display: none;
}
.smartTextBox-autocomplete-highligh {
font-weight: bold;
}
.smartTextBox-autocomplete-result-focus{
background: #C6D9E4;
}