aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/token-field/token.reel/token.css
blob: d1b8c1cb972d4e2e1e763d47596226e979d84f2c (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
/* <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-token {
    display: inline-block;
    margin: 3px 1px;
    border: 1px solid hsl(0,0%,85%);
    background-color: hsl(0,0%,95%);
    color: #333;
    vertical-align: middle;
    cursor: default;
    border-radius: 3px;
}

.montage-token > .montage-token-text {
    padding: 0px 1px 0px 5px;
}

.montage-token > .montage-token-delete {
    display: inline-block;
    padding: 3px 6px;
    border-left: inherit;
    border-radius: 0 2px 2px 0;
    color: hsl(0,0%,60%);    
    cursor: pointer;
}
.montage-token > .montage-token-delete:hover {
    color: hsl(0,0%,30%);
    background-color: hsl(0,0%,90%);
}
.montage-token > .montage-token-delete:active {
    color: hsl(0,0%,60%);
    background-color: hsl(0,0%,85%);
}

/* selected */
.montage-token.selected {
    border-color: hsl(0,0%,60%);
}

.montage-token.selected > .montage-token-delete {
    color: hsl(0,0%,100%);
    background-color: hsl(0,0%,60%);
}

.montage-token.active {
    border: 1px solid #ccc;
}

.montage-token.montage-token-adhoc {
    border: 1px dashed #ccc;
}