blob: 5ae302be9ad6e3c14e5356da7374a47f4e6de571 (
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
77
78
79
80
81
82
83
84
85
86
87
|
@mixin liferay-select {
$select-button-width : 24px;
$select-button-negative-width : -24px;
&.v-app select,
.v-window select {
padding: 1px;
}
select {
background-color: #fff;
}
.v-filterselect {
padding-right: $select-button-width; /* Space for the button */
}
.v-filterselect-button {
width: $select-button-width;
margin-right: $select-button-negative-width;
height: 24px;
background: transparent url(../common/buttons_sprites.png) no-repeat 0 0;
}
.v-filterselect-button:hover {
background-position: 0px -24px;
}
.v-filterselect-suggestpopup {
border: 1px solid #98C0F4;
}
.v-filterselect-suggestmenu {
min-height: 2px;
}
.v-filterselect-prevpage,
.v-filterselect-prevpage-off,
.v-filterselect-nextpage,
.v-filterselect-nextpage-off {
background-color: #fff;
}
.v-filterselect-prevpage span,
.v-filterselect-prevpage-off span,
.v-filterselect-nextpage span,
.v-filterselect-nextpage-off span {
display: block;
height: 8px;
width: 16px;
margin-left: auto;
margin-right: auto;
text-indent: -99999px;
}
.v-filterselect-prevpage span, .v-filterselect-nextpage span {
background: transparent no-repeat 0 -4px;
background-image: url(/html/themes/classic/images/aui/icon_sprite.png);
}
.v-filterselect-nextpage span {
background-position: -65px -4px;
}
.v-filterselect-suggestmenu .gwt-MenuItem span {
display: block;
width: 100%;
height: 18px;
border: 1px solid #fff;
border-style: solid none;
}
.v-filterselect-suggestmenu .gwt-MenuItem-selected span {
color: #000;
background: #dfe8f6;
border-color: #a3bae9;
}
.v-filterselect-suggestmenu .gwt-MenuItem .v-icon {
float: left;
}
.v-select-twincol-buttons .v-button-wrap {
padding-left: 11px;
padding-right: 11px;
}
}
|