bandshell 0.0.21 → 0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bandshell/application/app.rb +10 -10
- data/lib/bandshell/application/public/images/elements/logomark.png +0 -0
- data/lib/bandshell/application/public/images/layout/pagebg.gif +0 -0
- data/lib/bandshell/application/public/images/layout/pagebg@2x.gif +0 -0
- data/lib/bandshell/application/public/{authenticate.js → javascripts/authenticate.js} +0 -0
- data/lib/bandshell/application/public/{network.js → javascripts/network.js} +2 -2
- data/lib/bandshell/application/public/{problem.js → javascripts/problem.js} +0 -0
- data/lib/bandshell/application/public/stylesheets/README +3 -0
- data/lib/bandshell/application/public/stylesheets/concerto-styles.css +5387 -0
- data/lib/bandshell/application/public/stylesheets/sass/common/concertocons.scss +122 -0
- data/lib/bandshell/application/public/stylesheets/sass/common/font-awesome.scss +1273 -0
- data/lib/bandshell/application/public/stylesheets/sass/common/mixins.scss +284 -0
- data/lib/bandshell/application/public/stylesheets/sass/common/reset.scss +125 -0
- data/lib/bandshell/application/public/stylesheets/sass/common/variables.scss +139 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/alerts-badges.scss +145 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/bootstrap-modals.scss +115 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/button-groups.scss +129 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/buttons.scss +236 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/datepicker.scss +337 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/display-blocks.scss +194 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/forms.scss +486 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/jquery.qtip2.scss +259 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/jquery.timepicker.css +8 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/jquery.timepicker.scss +8 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/lists-grid-stacked.scss +265 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/navs.scss +465 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/pagination.scss +64 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/scaffolding.scss +75 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/screenmodel.scss +66 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/sliders.scss +98 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/tables.scss +243 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/tiles.scss +169 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/topmenu.scss +218 -0
- data/lib/bandshell/application/public/stylesheets/sass/components/type.scss +259 -0
- data/lib/bandshell/application/public/stylesheets/sass/index-manifest.scss +32 -0
- data/lib/bandshell/application/public/stylesheets/sass/responsive/responsive-1200px-min.scss +31 -0
- data/lib/bandshell/application/public/stylesheets/sass/responsive/responsive-767px-max.scss +178 -0
- data/lib/bandshell/application/public/stylesheets/sass/responsive/responsive-768px-979px.scss +21 -0
- data/lib/bandshell/application/public/stylesheets/sass/responsive/responsive-utilities.scss +41 -0
- data/lib/bandshell/application/public/stylesheets/sass/views/setup.scss +5 -0
- data/lib/bandshell/application/public/stylesheets/sass/views/submissions.scss +36 -0
- data/lib/bandshell/application/public/stylesheets/sass/views/users.scss +15 -0
- data/lib/bandshell/application/views/authenticate.erb +15 -0
- data/lib/bandshell/application/views/main.erb +55 -0
- data/lib/bandshell/application/views/main.haml +2 -1
- data/lib/bandshell/application/views/netsettings.erb +147 -0
- data/lib/bandshell/application/views/netsettings.haml +1 -1
- data/lib/bandshell/application/views/password.erb +23 -0
- data/lib/bandshell/application/views/player_status.erb +16 -0
- data/lib/bandshell/application/views/problem.erb +20 -0
- data/lib/bandshell/application/views/setup.erb +58 -0
- metadata +52 -8
- data/lib/bandshell/application/public/stylesheet.css +0 -3
@@ -0,0 +1,337 @@
|
|
1
|
+
/*!
|
2
|
+
* Datepicker for Bootstrap
|
3
|
+
*
|
4
|
+
* Copyright 2012 Stefan Petre
|
5
|
+
* Improvements by Andrew Rowls
|
6
|
+
* Licensed under the Apache License v2.0
|
7
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
*
|
9
|
+
*/
|
10
|
+
.datepicker {
|
11
|
+
padding: 4px;
|
12
|
+
-webkit-border-radius: 4px;
|
13
|
+
-moz-border-radius: 4px;
|
14
|
+
border-radius: 4px;
|
15
|
+
direction: ltr;
|
16
|
+
/*.dow {
|
17
|
+
border-top: 1px solid #ddd !important;
|
18
|
+
}*/
|
19
|
+
|
20
|
+
}
|
21
|
+
.datepicker-inline {
|
22
|
+
width: 220px;
|
23
|
+
}
|
24
|
+
.datepicker.datepicker-rtl {
|
25
|
+
direction: rtl;
|
26
|
+
}
|
27
|
+
.datepicker.datepicker-rtl table tr td span {
|
28
|
+
float: right;
|
29
|
+
}
|
30
|
+
.datepicker-dropdown {
|
31
|
+
top: 0;
|
32
|
+
left: 0;
|
33
|
+
}
|
34
|
+
.datepicker-dropdown:before {
|
35
|
+
content: '';
|
36
|
+
display: inline-block;
|
37
|
+
border-left: 7px solid transparent;
|
38
|
+
border-right: 7px solid transparent;
|
39
|
+
border-bottom: 7px solid #ccc;
|
40
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
41
|
+
position: absolute;
|
42
|
+
top: -7px;
|
43
|
+
left: 6px;
|
44
|
+
}
|
45
|
+
.datepicker-dropdown:after {
|
46
|
+
content: '';
|
47
|
+
display: inline-block;
|
48
|
+
border-left: 6px solid transparent;
|
49
|
+
border-right: 6px solid transparent;
|
50
|
+
border-bottom: 6px solid #ffffff;
|
51
|
+
position: absolute;
|
52
|
+
top: -6px;
|
53
|
+
left: 7px;
|
54
|
+
}
|
55
|
+
.datepicker > div {
|
56
|
+
display: none;
|
57
|
+
}
|
58
|
+
.datepicker.days div.datepicker-days {
|
59
|
+
display: block;
|
60
|
+
}
|
61
|
+
.datepicker.months div.datepicker-months {
|
62
|
+
display: block;
|
63
|
+
}
|
64
|
+
.datepicker.years div.datepicker-years {
|
65
|
+
display: block;
|
66
|
+
}
|
67
|
+
.datepicker table {
|
68
|
+
margin: 0;
|
69
|
+
}
|
70
|
+
.datepicker td,
|
71
|
+
.datepicker th {
|
72
|
+
text-align: center;
|
73
|
+
width: 20px;
|
74
|
+
height: 20px;
|
75
|
+
-webkit-border-radius: 4px;
|
76
|
+
-moz-border-radius: 4px;
|
77
|
+
border-radius: 4px;
|
78
|
+
border: none;
|
79
|
+
}
|
80
|
+
.table-striped .datepicker table tr td,
|
81
|
+
.table-striped .datepicker table tr th {
|
82
|
+
background-color: transparent;
|
83
|
+
}
|
84
|
+
.datepicker table tr td.day:hover {
|
85
|
+
background: #eeeeee;
|
86
|
+
cursor: pointer;
|
87
|
+
}
|
88
|
+
.datepicker table tr td.old,
|
89
|
+
.datepicker table tr td.new {
|
90
|
+
color: #999999;
|
91
|
+
}
|
92
|
+
.datepicker table tr td.disabled,
|
93
|
+
.datepicker table tr td.disabled:hover {
|
94
|
+
background: none;
|
95
|
+
color: #999999;
|
96
|
+
cursor: default;
|
97
|
+
}
|
98
|
+
.datepicker table tr td.today,
|
99
|
+
.datepicker table tr td.today:hover,
|
100
|
+
.datepicker table tr td.today.disabled,
|
101
|
+
.datepicker table tr td.today.disabled:hover {
|
102
|
+
background-color: #fde19a;
|
103
|
+
background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
|
104
|
+
background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
|
105
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
|
106
|
+
background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
|
107
|
+
background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
|
108
|
+
background-image: linear-gradient(top, #fdd49a, #fdf59a);
|
109
|
+
background-repeat: repeat-x;
|
110
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
|
111
|
+
border-color: #fdf59a #fdf59a #fbed50;
|
112
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
113
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
114
|
+
color: #000 !important;
|
115
|
+
}
|
116
|
+
.datepicker table tr td.today:hover,
|
117
|
+
.datepicker table tr td.today:hover:hover,
|
118
|
+
.datepicker table tr td.today.disabled:hover,
|
119
|
+
.datepicker table tr td.today.disabled:hover:hover,
|
120
|
+
.datepicker table tr td.today:active,
|
121
|
+
.datepicker table tr td.today:hover:active,
|
122
|
+
.datepicker table tr td.today.disabled:active,
|
123
|
+
.datepicker table tr td.today.disabled:hover:active,
|
124
|
+
.datepicker table tr td.today.active,
|
125
|
+
.datepicker table tr td.today:hover.active,
|
126
|
+
.datepicker table tr td.today.disabled.active,
|
127
|
+
.datepicker table tr td.today.disabled:hover.active,
|
128
|
+
.datepicker table tr td.today.disabled,
|
129
|
+
.datepicker table tr td.today:hover.disabled,
|
130
|
+
.datepicker table tr td.today.disabled.disabled,
|
131
|
+
.datepicker table tr td.today.disabled:hover.disabled,
|
132
|
+
.datepicker table tr td.today[disabled],
|
133
|
+
.datepicker table tr td.today:hover[disabled],
|
134
|
+
.datepicker table tr td.today.disabled[disabled],
|
135
|
+
.datepicker table tr td.today.disabled:hover[disabled] {
|
136
|
+
background-color: #fdf59a;
|
137
|
+
}
|
138
|
+
.datepicker table tr td.today:active,
|
139
|
+
.datepicker table tr td.today:hover:active,
|
140
|
+
.datepicker table tr td.today.disabled:active,
|
141
|
+
.datepicker table tr td.today.disabled:hover:active,
|
142
|
+
.datepicker table tr td.today.active,
|
143
|
+
.datepicker table tr td.today:hover.active,
|
144
|
+
.datepicker table tr td.today.disabled.active,
|
145
|
+
.datepicker table tr td.today.disabled:hover.active {
|
146
|
+
background-color: #fbf069 \9;
|
147
|
+
}
|
148
|
+
.datepicker table tr td.active,
|
149
|
+
.datepicker table tr td.active:hover,
|
150
|
+
.datepicker table tr td.active.disabled,
|
151
|
+
.datepicker table tr td.active.disabled:hover {
|
152
|
+
background-color: #006dcc;
|
153
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
154
|
+
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
155
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
156
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
157
|
+
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
158
|
+
background-image: linear-gradient(top, #0088cc, #0044cc);
|
159
|
+
background-repeat: repeat-x;
|
160
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
161
|
+
border-color: #0044cc #0044cc #002a80;
|
162
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
163
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
164
|
+
color: #fff;
|
165
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
166
|
+
}
|
167
|
+
.datepicker table tr td.active:hover,
|
168
|
+
.datepicker table tr td.active:hover:hover,
|
169
|
+
.datepicker table tr td.active.disabled:hover,
|
170
|
+
.datepicker table tr td.active.disabled:hover:hover,
|
171
|
+
.datepicker table tr td.active:active,
|
172
|
+
.datepicker table tr td.active:hover:active,
|
173
|
+
.datepicker table tr td.active.disabled:active,
|
174
|
+
.datepicker table tr td.active.disabled:hover:active,
|
175
|
+
.datepicker table tr td.active.active,
|
176
|
+
.datepicker table tr td.active:hover.active,
|
177
|
+
.datepicker table tr td.active.disabled.active,
|
178
|
+
.datepicker table tr td.active.disabled:hover.active,
|
179
|
+
.datepicker table tr td.active.disabled,
|
180
|
+
.datepicker table tr td.active:hover.disabled,
|
181
|
+
.datepicker table tr td.active.disabled.disabled,
|
182
|
+
.datepicker table tr td.active.disabled:hover.disabled,
|
183
|
+
.datepicker table tr td.active[disabled],
|
184
|
+
.datepicker table tr td.active:hover[disabled],
|
185
|
+
.datepicker table tr td.active.disabled[disabled],
|
186
|
+
.datepicker table tr td.active.disabled:hover[disabled] {
|
187
|
+
background-color: #0044cc;
|
188
|
+
}
|
189
|
+
.datepicker table tr td.active:active,
|
190
|
+
.datepicker table tr td.active:hover:active,
|
191
|
+
.datepicker table tr td.active.disabled:active,
|
192
|
+
.datepicker table tr td.active.disabled:hover:active,
|
193
|
+
.datepicker table tr td.active.active,
|
194
|
+
.datepicker table tr td.active:hover.active,
|
195
|
+
.datepicker table tr td.active.disabled.active,
|
196
|
+
.datepicker table tr td.active.disabled:hover.active {
|
197
|
+
background-color: #003399 \9;
|
198
|
+
}
|
199
|
+
.datepicker table tr td span {
|
200
|
+
display: block;
|
201
|
+
width: 23%;
|
202
|
+
height: 54px;
|
203
|
+
line-height: 54px;
|
204
|
+
float: left;
|
205
|
+
margin: 1%;
|
206
|
+
cursor: pointer;
|
207
|
+
-webkit-border-radius: 4px;
|
208
|
+
-moz-border-radius: 4px;
|
209
|
+
border-radius: 4px;
|
210
|
+
}
|
211
|
+
.datepicker table tr td span:hover {
|
212
|
+
background: #eeeeee;
|
213
|
+
}
|
214
|
+
.datepicker table tr td span.disabled,
|
215
|
+
.datepicker table tr td span.disabled:hover {
|
216
|
+
background: none;
|
217
|
+
color: #999999;
|
218
|
+
cursor: default;
|
219
|
+
}
|
220
|
+
.datepicker table tr td span.active,
|
221
|
+
.datepicker table tr td span.active:hover,
|
222
|
+
.datepicker table tr td span.active.disabled,
|
223
|
+
.datepicker table tr td span.active.disabled:hover {
|
224
|
+
background-color: #006dcc;
|
225
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
|
226
|
+
background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
|
227
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
|
228
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
|
229
|
+
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
|
230
|
+
background-image: linear-gradient(top, #0088cc, #0044cc);
|
231
|
+
background-repeat: repeat-x;
|
232
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
|
233
|
+
border-color: #0044cc #0044cc #002a80;
|
234
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
235
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
236
|
+
color: #fff;
|
237
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
238
|
+
}
|
239
|
+
.datepicker table tr td span.active:hover,
|
240
|
+
.datepicker table tr td span.active:hover:hover,
|
241
|
+
.datepicker table tr td span.active.disabled:hover,
|
242
|
+
.datepicker table tr td span.active.disabled:hover:hover,
|
243
|
+
.datepicker table tr td span.active:active,
|
244
|
+
.datepicker table tr td span.active:hover:active,
|
245
|
+
.datepicker table tr td span.active.disabled:active,
|
246
|
+
.datepicker table tr td span.active.disabled:hover:active,
|
247
|
+
.datepicker table tr td span.active.active,
|
248
|
+
.datepicker table tr td span.active:hover.active,
|
249
|
+
.datepicker table tr td span.active.disabled.active,
|
250
|
+
.datepicker table tr td span.active.disabled:hover.active,
|
251
|
+
.datepicker table tr td span.active.disabled,
|
252
|
+
.datepicker table tr td span.active:hover.disabled,
|
253
|
+
.datepicker table tr td span.active.disabled.disabled,
|
254
|
+
.datepicker table tr td span.active.disabled:hover.disabled,
|
255
|
+
.datepicker table tr td span.active[disabled],
|
256
|
+
.datepicker table tr td span.active:hover[disabled],
|
257
|
+
.datepicker table tr td span.active.disabled[disabled],
|
258
|
+
.datepicker table tr td span.active.disabled:hover[disabled] {
|
259
|
+
background-color: #0044cc;
|
260
|
+
}
|
261
|
+
.datepicker table tr td span.active:active,
|
262
|
+
.datepicker table tr td span.active:hover:active,
|
263
|
+
.datepicker table tr td span.active.disabled:active,
|
264
|
+
.datepicker table tr td span.active.disabled:hover:active,
|
265
|
+
.datepicker table tr td span.active.active,
|
266
|
+
.datepicker table tr td span.active:hover.active,
|
267
|
+
.datepicker table tr td span.active.disabled.active,
|
268
|
+
.datepicker table tr td span.active.disabled:hover.active {
|
269
|
+
background-color: #003399 \9;
|
270
|
+
}
|
271
|
+
.datepicker table tr td span.old {
|
272
|
+
color: #999999;
|
273
|
+
}
|
274
|
+
.datepicker th.switch {
|
275
|
+
width: 145px;
|
276
|
+
}
|
277
|
+
.datepicker thead tr:first-child th,
|
278
|
+
.datepicker tfoot tr:first-child th {
|
279
|
+
cursor: pointer;
|
280
|
+
}
|
281
|
+
.datepicker thead tr:first-child th:hover,
|
282
|
+
.datepicker tfoot tr:first-child th:hover {
|
283
|
+
background: #eeeeee;
|
284
|
+
}
|
285
|
+
.datepicker .cw {
|
286
|
+
font-size: 10px;
|
287
|
+
width: 12px;
|
288
|
+
padding: 0 2px 0 5px;
|
289
|
+
vertical-align: middle;
|
290
|
+
}
|
291
|
+
.datepicker thead tr:first-child th.cw {
|
292
|
+
cursor: default;
|
293
|
+
background-color: transparent;
|
294
|
+
}
|
295
|
+
.input-append.date .add-on i,
|
296
|
+
.input-prepend.date .add-on i {
|
297
|
+
display: block;
|
298
|
+
cursor: pointer;
|
299
|
+
width: 16px;
|
300
|
+
height: 16px;
|
301
|
+
}
|
302
|
+
.datepicker.dropdown-menu {
|
303
|
+
position: absolute;
|
304
|
+
top: 100%;
|
305
|
+
left: 0;
|
306
|
+
z-index: 1000;
|
307
|
+
float: left;
|
308
|
+
display: none;
|
309
|
+
min-width: 160px;
|
310
|
+
list-style: none;
|
311
|
+
background-color: #ffffff;
|
312
|
+
border: 1px solid #ccc;
|
313
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
314
|
+
-webkit-border-radius: 5px;
|
315
|
+
-moz-border-radius: 5px;
|
316
|
+
border-radius: 5px;
|
317
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
318
|
+
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
319
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
320
|
+
-webkit-background-clip: padding-box;
|
321
|
+
-moz-background-clip: padding;
|
322
|
+
background-clip: padding-box;
|
323
|
+
*border-right-width: 2px;
|
324
|
+
*border-bottom-width: 2px;
|
325
|
+
color: #333333;
|
326
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
327
|
+
font-size: 13px;
|
328
|
+
line-height: 18px;
|
329
|
+
}
|
330
|
+
.datepicker.dropdown-menu th,
|
331
|
+
.datepicker.dropdown-menu td {
|
332
|
+
padding: 4px 5px;
|
333
|
+
}
|
334
|
+
.datepicker .prev,
|
335
|
+
.datepicker .next {
|
336
|
+
font-style: normal;
|
337
|
+
}
|
@@ -0,0 +1,194 @@
|
|
1
|
+
/*##########################################################################*/
|
2
|
+
/* Display Blocks */
|
3
|
+
/*##########################################################################*/
|
4
|
+
|
5
|
+
|
6
|
+
// viewblock
|
7
|
+
.viewblock {
|
8
|
+
@include box-shadow(0 3px 2px #ababab);
|
9
|
+
display: block;
|
10
|
+
margin-bottom: 18px;
|
11
|
+
@include border-radius(8px 8px 0px 0px);
|
12
|
+
|
13
|
+
.viewblock-header {
|
14
|
+
@include border-radius(8px 8px 0px 0px);
|
15
|
+
@include vertical-gradient( darken($grayLighter, 3%), darken($grayLight, 8%) );
|
16
|
+
//background: #FFF image-url('layout/viewblock/header_bg.png') bottom left repeat-x;
|
17
|
+
display: block;
|
18
|
+
padding: 0px;
|
19
|
+
border: solid 1px #ababab;
|
20
|
+
border-bottom: 0px;
|
21
|
+
|
22
|
+
&.light-version {
|
23
|
+
@include vertical-gradient( $grayLightest, $grayLighter );
|
24
|
+
}
|
25
|
+
|
26
|
+
h1 {
|
27
|
+
color: darken($gray, 20%);
|
28
|
+
font-size: 1.4em;
|
29
|
+
letter-spacing: 0.05em;
|
30
|
+
text-shadow: 0 1px darken($grayLighter, 5%);
|
31
|
+
}
|
32
|
+
|
33
|
+
a:not(.button) {
|
34
|
+
color: #003366;
|
35
|
+
}
|
36
|
+
|
37
|
+
.default-padding {
|
38
|
+
padding: 8px 14px 5px 14px;
|
39
|
+
}
|
40
|
+
|
41
|
+
// element inside the header that can be optionally used for right-aligned
|
42
|
+
// contextual buttons relevant to this section of the page
|
43
|
+
.viewblock-header_right {
|
44
|
+
float: right;
|
45
|
+
margin-left: 20px;
|
46
|
+
|
47
|
+
.button-padding { padding: 5px; }
|
48
|
+
}
|
49
|
+
|
50
|
+
// status element that fits a label and a value, usually a count
|
51
|
+
// often aligned or floated to the right side of .viewblock-header_right
|
52
|
+
.status-block {
|
53
|
+
background: $grayLightest;
|
54
|
+
height: 100%;
|
55
|
+
padding: 4px 8px;
|
56
|
+
float: left;
|
57
|
+
line-height: normal;
|
58
|
+
border-left: solid 1px $grayLight;
|
59
|
+
|
60
|
+
> label {
|
61
|
+
display: block;
|
62
|
+
color: $gray;
|
63
|
+
text-align:center;
|
64
|
+
font-size: 0.8em;
|
65
|
+
line-height: normal;
|
66
|
+
}
|
67
|
+
|
68
|
+
> span {
|
69
|
+
display: block;
|
70
|
+
text-align: center;
|
71
|
+
line-height: normal;
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
.status-block:last-child {
|
76
|
+
@include border-radius(0px 8px 0px 0px);
|
77
|
+
}
|
78
|
+
|
79
|
+
// this element is only included when the back_button helper is used to place a back button
|
80
|
+
.viewblock-header_back {
|
81
|
+
float: left;
|
82
|
+
margin: 7px 8px 7px -12px;
|
83
|
+
}
|
84
|
+
|
85
|
+
}
|
86
|
+
|
87
|
+
.viewblock-cont {
|
88
|
+
padding: 0px;
|
89
|
+
border: solid 1px #ababab;
|
90
|
+
background: $white;
|
91
|
+
@include clearfix();
|
92
|
+
}
|
93
|
+
|
94
|
+
// .subnav is a light blue bar that appears below the content header
|
95
|
+
.subnav {
|
96
|
+
background: $concerto-blue-5;
|
97
|
+
padding:2px 12px;
|
98
|
+
border-bottom: 1px solid $concerto-blue-4;
|
99
|
+
|
100
|
+
h4 {
|
101
|
+
text-transform: uppercase;
|
102
|
+
letter-spacing: 0.1em;
|
103
|
+
line-height: 1.8em;
|
104
|
+
}
|
105
|
+
|
106
|
+
.nav {
|
107
|
+
margin: 0px;
|
108
|
+
}
|
109
|
+
|
110
|
+
a.button {
|
111
|
+
background:$concerto-blue-0;
|
112
|
+
color: $white !important;
|
113
|
+
font-size: 0.8em;
|
114
|
+
border: 0px;
|
115
|
+
padding: 4px 6px;
|
116
|
+
text-shadow: 0px 0px 0px;
|
117
|
+
}
|
118
|
+
|
119
|
+
.nav-pills {
|
120
|
+
padding-top: 2px;
|
121
|
+
margin-bottom: 0px;
|
122
|
+
|
123
|
+
> li > a {
|
124
|
+
@include border-radius(3px);
|
125
|
+
margin: 0px;
|
126
|
+
padding: 0px 4px;
|
127
|
+
color: $concerto-blue-0;
|
128
|
+
line-height: 22px;
|
129
|
+
|
130
|
+
.count {
|
131
|
+
font-size: 0.8em;
|
132
|
+
}
|
133
|
+
|
134
|
+
&:hover {
|
135
|
+
background: $white;
|
136
|
+
color: $linkColorHover;
|
137
|
+
text-decoration: none;
|
138
|
+
}
|
139
|
+
|
140
|
+
}
|
141
|
+
|
142
|
+
li.legend {
|
143
|
+
font-size: 0.8em;
|
144
|
+
text-transform: uppercase;
|
145
|
+
padding: 3px 3px 0px 3px;
|
146
|
+
}
|
147
|
+
|
148
|
+
}
|
149
|
+
|
150
|
+
// Give the tabs something to sit on
|
151
|
+
.nav-tabs {
|
152
|
+
border-bottom: 0px; //1px solid #ddd;
|
153
|
+
}
|
154
|
+
// Make the list-items overlay the bottom border
|
155
|
+
.nav-tabs > li {
|
156
|
+
margin-bottom: -3px;
|
157
|
+
}
|
158
|
+
// Actual tabs (as links)
|
159
|
+
.nav-tabs > li > a {
|
160
|
+
padding-top: 8px;
|
161
|
+
padding-bottom: 8px;
|
162
|
+
line-height: $baseLineHeight;
|
163
|
+
border: 1px solid transparent;
|
164
|
+
@include border-radius(6px 6px 0 0);
|
165
|
+
&:hover {
|
166
|
+
background: lighten($concerto-blue-4, 15%);
|
167
|
+
}
|
168
|
+
}
|
169
|
+
// Active state, and it's :hover to override normal :hover
|
170
|
+
.nav-tabs > .active > a, .nav-tabs > .active > a:hover {
|
171
|
+
color: $black;
|
172
|
+
font-weight: bold;
|
173
|
+
border: 1px solid $concerto-blue-4;
|
174
|
+
border-bottom-color: transparent;
|
175
|
+
cursor: default;
|
176
|
+
}
|
177
|
+
|
178
|
+
}
|
179
|
+
|
180
|
+
}
|
181
|
+
|
182
|
+
|
183
|
+
// subblock
|
184
|
+
.subblock {
|
185
|
+
&.bordered {
|
186
|
+
border: solid 1px $grayLight;
|
187
|
+
@include border-radius(6px);
|
188
|
+
}
|
189
|
+
|
190
|
+
&.with-padding {
|
191
|
+
padding: 18px;
|
192
|
+
}
|
193
|
+
|
194
|
+
}
|