-
Notifications
You must be signed in to change notification settings - Fork 2
/
Synesthesia.UILibrary.css
144 lines (132 loc) · 3.97 KB
/
Synesthesia.UILibrary.css
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
.Synesthesia_UILibrary_DragValue {
display: inline-block;
margin: 1px;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 128, 128, 0)), to(rgba(128, 128, 128, 0.1)));
border: 1px solid rgba(0, 0, 0, 0.4);
border-radius: 2px;
box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1), inset 0px -2px 2px rgba(255, 255, 255, 0.6);
padding: 2px;
-webkit-transition: border-color ease-in-out 0.1s;
}
.Synesthesia_UILibrary_DragValue:hover {
border-color: rgba(0, 0, 0, 0.6);
}
.Synesthesia_UILibrary_DragValue input {
outline: none;
background-color: transparent;
}
.Synesthesia_UILibrary_RadioGroup {
display: inline-block;
display: -webkit-flex;
-webkit-flex-direction: row;
-moz-flex-direction: row;
overflow: hidden;
white-space: nowrap;
margin: 1px;
border: 1px solid #808080;
border-radius: 2px;
}
.Synesthesia_UILibrary_RadioGroup .radio_option {
display: inline-block;
-webkit-flex: 1 0 0;
-moz-flex: 1 0 0;
text-align: center;
background-color: #d0d0d0;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
padding: 3px;
border-width: 0px 1px 0px 0px;
border-style: solid;
border-color: #808080;
}
.Synesthesia_UILibrary_RadioGroup .radio_option:hover {
background-color: #b0b0b0;
}
.Synesthesia_UILibrary_RadioGroup .radio_option:active,
.Synesthesia_UILibrary_RadioGroup .radio_option.selected {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.7)));
}
.Synesthesia_UILibrary_RadioGroup .radio_option.selected {
background-color: #b8b8b8;
text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5);
}
.Synesthesia_UILibrary_RadioGroup .radio_option.selected:hover {
background-color: #a0a0a0;
}
.Synesthesia_UILibrary_RadioGroup .radio_option:last-of-type {
border-right-width: 0px;
}
.Synesthesia_UILibrary_LabeledDiv {
overflow: hidden;
margin: 1px;
border: 1px solid #b0b0b0;
border-radius: 2px;
}
.Synesthesia_UILibrary_LabeledDiv > .label {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(128, 128, 128, 0.2)));
margin: -1px -1px 1px -1px;
border-bottom: 1px solid #b0b0b0;
padding: 3px;
}
/* Menu */
.Synesthesia_UILibrary_Menu.bar {
color: #606060;
overflow: hidden;
background-color: #e0e0e0;
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0)));
}
.Synesthesia_UILibrary_Menu.bar > .item {
display: inline-block;
padding: 3px 8px;
border-right: 1px solid #d0d0d0;
font-weight: lighter;
}
.Synesthesia_UILibrary_Menu.bar > .item:first-of-type {
border-left: 1px solid #d0d0d0;
}
.Synesthesia_UILibrary_Menu.bar > .item.open {
background-color: #d0d0d0;
}
.Synesthesia_UILibrary_Menu.dropdown {
color: #606060;
position: absolute;
top: 0px;
left: 0px;
margin-left: -1px;
min-width: 150px;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0px 2px 2px 2px;
box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
}
.Synesthesia_UILibrary_Menu.dropdown > .item {
color: #606060;
background-color: #f0f0f0;
padding: 3px 8px;
}
.Synesthesia_UILibrary_Menu.dropdown > .item:hover,
.Synesthesia_UILibrary_Menu.dropdown > .item.open {
background-color: #d0d0d0;
}
.Synesthesia_UILibrary_Menu.dropdown > .item:active {
background-color: #c0c0c0;
}
/* SlideView */
.Synesthesia_UILibrary_SlideView {
position: relative;
overflow: hidden;
}
.Synesthesia_UILibrary_SlideView > .view {
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
-webkit-transition:
top ease-in-out 0.4s,
left ease-in-out 0.4s;
}
.Synesthesia_UILibrary_SlideView > .view.before {
left: -100%;
}
.Synesthesia_UILibrary_SlideView > .view.after {
left: 100%;
}