aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/select.reel/select.css
blob: 9d6cc1cbe7fbc8bad54569ffdf4a08e20ddca4ab (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
/* <copyright>
 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
 (c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
 </copyright> */

.montage-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-sizing: border-box;
    font-size: 12px;
    height: 2.5em;
    padding: 0 2em 0 1em;
    border-radius: 3px;
    border: 1px solid #b3b3b3;
    background: #f2f2f2 url(select.png) no-repeat right center;
    cursor: pointer;
}
 
.montage-select:hover {
    background-color: #fff;
}
 
.montage-select:active {
    background-color: #e5e5e5;
}
 
.montage-select:focus {
    border-color: #7f7f7f;
}


/* Multiple Select ------------------------------ */

.montage-select[multiple] {
    height: 5.5em;
    cursor: default;
    padding: 0 .5em;
}

.montage-select[multiple],
.montage-select[multiple]:hover,
.montage-select[multiple]:active {
    background: #f2f2f2;
}