aboutsummaryrefslogtreecommitdiff
path: root/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css
diff options
context:
space:
mode:
Diffstat (limited to 'js/stage/binding-view.reel/binding-hud.reel/binding-hud.css')
-rwxr-xr-xjs/stage/binding-view.reel/binding-hud.reel/binding-hud.css104
1 files changed, 104 insertions, 0 deletions
diff --git a/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css b/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css
new file mode 100755
index 00000000..680f9183
--- /dev/null
+++ b/js/stage/binding-view.reel/binding-hud.reel/binding-hud.css
@@ -0,0 +1,104 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.bindingHud {
8 position: absolute;
9 background: rgba(0, 0, 0, 0.85);
10 /*padding: 0px;*/
11 color: #C4C4C4;
12 font-size: 11px;
13 box-shadow: inset 0px 0px 0px 0px #CCC;
14 border-radius: 6px;
15 padding: 3px 1px 1px;
16 border:1px solid #000;
17 text-shadow: 1px 1px 0px #000;
18}
19
20.bindingHud .bindingTitle {
21 font-weight:bold;
22 background: url('/images/panels/horizontal-resize.png') no-repeat;
23 padding-left: 10px;
24 line-height: 20px;
25 background-position: left center;
26 padding-top: 2px;
27 color: #EBE6E6;
28}
29
30.bindingHud .hudRepetition {
31 /*background: rgba(0, 0, 0, 0.3);*/
32 line-height:16px;
33 /*box-shadow: inset 0px 0px 4px #333, 1px 1px 0px #3A3A3A;*/
34 min-width: 80px;
35}
36
37.bindingHud .hudOption {
38 position:relative;
39 /*border-bottom:1px solid #505050;*/
40 line-height:16px;
41 padding:1px 25px 1px 8px;
42}
43
44.bindingHud .hudOption .connectorBubble:hover {
45 background-color: #1B52A7;
46 box-shadow: inset 0px 2px 2px 1px rgba(15, 15, 15, 0.78), 0 1px #474747;
47 cursor: pointer;
48}
49
50.bindingHud .hudOption.bound .connectorBubble {
51 background: -webkit-linear-gradient(top, #d0e4f7 0%,#73b1e7 24%,#0a77d5 50%,#539fe1 79%,#87bcea 100%);
52 box-shadow: none;
53}
54
55.bindingHud .hudOption:last-child {
56 border-bottom: 0px;
57}
58
59.bindingHud .hudOption .connectorBubble {
60 position: absolute;
61 right: 5px;
62 top: 3px;
63 border-radius: 50%;
64 width: 10px;
65 height: 10px;
66 border-left: 0px;
67 display: block;
68 background-color: #313131;
69 box-shadow: inset 0px 2px 7px 1px #0F0F0F, 0 1px #424242;
70
71}
72
73.splitter.scrollArea {
74 background-color: transparent;
75 background-size: 12%;
76 background-position-y: 2px;
77 display: none;
78 height:11px;
79 text-align: center;
80}
81.splitter.scrollAreaTop {
82 border-top: 1px solid #353535;
83 box-shadow: 0 -1px 0 0 #141414;
84}
85.splitter.scrollAreaBottom {
86 -webkit-transform: rotate(180deg);
87 border-top-left-radius: 6px;
88 border-top-right-radius: 6px;
89 border-bottom: 1px solid #353535;
90 box-shadow: 0 1px 0 0 #141414;
91 margin-top: 4px;
92}
93
94.scrollArea.disabled {
95 opacity: 0.5;
96}
97.splitter.scrollArea:hover:not(.disabled) {
98 background-color: #252525;
99}
100
101
102.hudRepetition {
103 overflow: hidden;
104} \ No newline at end of file