source: Ballon/web/resources/css/select.css

Last change on this file was 766, checked in by npipsl, 11 years ago
File size: 1.8 KB
Line 
1/* ********************************************* */
2/* **************** SELECT ********************* */
3/* ********************************************* */
4.select_container {
5    height: 20px;
6}
7
8.select_selectLeft {
9    background: url(../images/elements/select_left.gif) no-repeat top left;
10    height: 20px;
11    width: 6px;
12    float: left;
13}
14
15.select_selectMiddle {
16    background: transparent url(../images/elements/select_middle.gif) repeat-x;
17    height: 20px;
18    float: left;
19    font-size: 12px;
20    /*color: #70739C;*/
21    color: black;
22    text-align: left;
23    white-space: nowrap;
24    overflow: hidden;
25    line-height: 18px;
26    padding-right: 7px;
27    padding-left: 2px;
28}
29
30/* Nath*/
31.select_selectMiddle_disable {
32    background: transparent url(../images/elements/select_middle.gif) repeat-x;
33    height: 20px;
34    float: left;
35    font-size: 12px;
36    color: #9C9F9F;
37    text-align: left;
38    white-space: nowrap;
39    overflow: hidden;
40    line-height: 18px;
41    padding-right: 7px;
42    padding-left: 2px;
43}
44/* Nath*/
45
46
47.select_selectRight {
48    background: url(../images/elements/select_right.gif) no-repeat top right;
49    height: 20px;
50    width: 20px;
51    float: left;
52}
53
54/* ********************************************* */
55/* **************** CHOICE ********************* */
56/* ********************************************* */
57.select_choicelist {
58    background-color: #ffffff;
59    display: none;
60    z-index: 15;
61    margin-top: -3px;
62    position: absolute; /* Hack IE6 and IE7 */
63    font-size: 12px;
64    /*color: #70739C; */
65    color: black;
66    overflow: hidden;
67    border: 1px solid #C0C0C0;
68}
69
70.select_item_middle {
71    width: 100%;
72    padding-left: 8px;
73    padding-right: 25px;
74}
75
76.select_item_middle:hover {
77    background-color: #70739C;
78    color: #E1DEF1;
79}
80
81.select_item_middle:active {
82    background-color: #04155D;
83}
84
85
Note: See TracBrowser for help on using the repository browser.