aboutsummaryrefslogtreecommitdiff
path: root/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css
blob: 1536c706f734fa6de5fb96fde2e1d0039fa0c54d (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* <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> */

.bindingHud {
    position: absolute;
    background: rgba(24, 24, 24, 0.85);
    color: #C4C4C4;
    font-size: 11px;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.61);
    border-radius: 6px;
    padding: 3px;
    text-shadow: 1px 1px 0px #000;
}

.bindingHud .bindingTitle {
    font-weight:bold;
    background: url('/images/panels/horizontal-resize.png') no-repeat;
    padding-left: 10px;
    line-height: 20px;
    background-position: left center;
    padding-top: 2px;
    color: #EBE6E6;
}

.bindingHud .hudRepetition {
    /*background: rgba(0, 0, 0, 0.3);*/
    line-height:16px;
    /*box-shadow: inset 0px 0px 4px #333, 1px 1px 0px #3A3A3A;*/
    padding-top: 4px;
    margin: 0 5px;
    min-width: 80px;
}

.bindingHud .hudOption {
    position:relative;
    /*border-bottom:1px solid #505050;*/
    line-height:16px;
    padding:1px 25px 1px 8px;
}
.bindingHud .hudOption.promoted {
    color: #FFF;
    font-weight: bold;
}
.bindingHud .hudOption .connectorBubble:hover {
    background-color: #1B52A7;
    box-shadow: inset 0px 2px 2px 1px rgba(15, 15, 15, 0.78), 0 1px #474747;
    cursor: pointer;
}

.bindingHud .hudOption.bound .connectorBubble {
    background:  -webkit-linear-gradient(top, #d0e4f7 0%,#73b1e7 24%,#0a77d5 50%,#539fe1 79%,#87bcea 100%);
    box-shadow: none;
}

.bindingHud .hudOption:last-child {
    border-bottom: 0px;
}

.bindingHud .hudOption .connectorBubble {
    position: absolute;
    right: 2px;
    top: 3px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    border-left: 0px;
    display: block;
    background-color: #353535;
    box-shadow: inset 0px 2px 3px 1px #222, 0 1px #666;

}

.splitter.scrollArea {
    background-color: transparent;
    background-size: 10%;
    background-position-y: 2px;
    display: none;
    height:11px;
    text-align: center;
}
.splitter.scrollAreaTop {
    border-bottom: 1px solid #141414;
    box-shadow: 0 1px 0 0 #525252;
}
.splitter.scrollAreaBottom {
    -webkit-transform: rotate(180deg);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom: 1px solid #525252;
    box-shadow: 0 1px 0 0 #141414;
    margin-top: 4px;
}

.scrollArea.disabled {
    opacity: 0.5;
}
.splitter.scrollArea:hover:not(.disabled) {
    background-color: #303030;
    border-bottom: 1px solid #252525;
    box-shadow: 0 1px 0 0 #3F3F3F;
}
.splitter.scrollAreaBottom:hover:not(.disabled) {
    border-bottom: 1px solid #3F3F3F;
    box-shadow: 0 1px 0 0 #252525;
}

.hudRepetition {
    overflow: hidden;
}