blob: 5f4a83b48940e0235e5e22704f4b373259efcbe7 (
plain)
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
|
.dojoxListInput {
border:1px solid #ccc;
background-color:#efefef;
height:auto !important;
max-height:60px;
min-height:20px;
overflow:auto;
position:relative
}
.dojoxListInput ul {
margin:0;
padding:0
}
.dijitDialogCloseIcon {
display:none;
}
.dojoxListInputClosable .dijitDialogCloseIcon{
display:inline
}
.dojoxListInputClosable {
padding-right:18px !important
}
.dojoxListInputItem {
float:left;
list-style-type:none;
margin:1px 5px 1px 1px;
padding:0
}
.dojoxListInputItem .closeText {
display:none;
position:absolute;
}
.dojoxListInputItem .dijitDialogCloseIcon{
right:auto !important;
border:0 !important;
padding:0!important;
}
.dojoxListInputMatch {
border :1px solid #5EB55E;
background-color:#efffef
}
.dojoxListInputMismatch {
border :1px solid #B55E5E;
background-color:#ffefef
}
.dojoxListInput.dojoxListInputFocused {
border:1px solid #000;
border-right:1px solid #ccc;
border-bottom:1px solid #ccc;
background-color:#fff
}
.dojoxListInputNode {
cursor:text;
}
.dojoxListInput .dijitTextBox {
background:#efefef !important;
border:0 !important;
}
.dojoxListInputFocused .dijitTextBox {
background: #fff !important;
border:0 !important;
}
.dojoxListInputItem .dijitTextBox {
width:auto !important;
border:0 !important;
}
.dojoxListInputNode {
float:none;
}
.dojoxListInputItemEdited{
display:none !important
}
.dojoxListInputItem .dijitInline{
display:inline !important
}
|