jombo 0.0.1.beta7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,104 @@
1
+ /* ========================================================
2
+ * bootstrap-tabs.js v2.0.0
3
+ * http://twitter.github.com/bootstrap/javascript.html#tabs
4
+ * ========================================================
5
+ * Copyright 2011 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ======================================================== */
19
+
20
+
21
+ !function( $ ){
22
+
23
+ "use strict"
24
+
25
+ /* TAB CLASS DEFINITION
26
+ * ==================== */
27
+
28
+ var Tab = function ( element ) {
29
+ this.element = $(element)
30
+ }
31
+
32
+ Tab.prototype = {
33
+
34
+ constructor: Tab
35
+
36
+ , show: function () {
37
+ var $this = this.element
38
+ , $ul = $this.closest('ul:not(.dropdown-menu)')
39
+ , href = $this.attr('data-target') || $this.attr('href')
40
+ , previous
41
+ , $href
42
+
43
+ if ( $this.parent('li').hasClass('active') ) return
44
+
45
+ previous = $ul.find('.active a').last()[0]
46
+
47
+ $this.trigger({
48
+ type: 'show'
49
+ , relatedTarget: previous
50
+ })
51
+
52
+ $href = $(href)
53
+
54
+ this.activate($this.parent('li'), $ul)
55
+ this.activate($href, $href.parent())
56
+
57
+ $this.trigger({
58
+ type: 'shown'
59
+ , relatedTarget: previous
60
+ })
61
+ }
62
+
63
+ , activate: function ( element, container ) {
64
+ container
65
+ .find('> .active')
66
+ .removeClass('active')
67
+ .find('> .dropdown-menu > .active')
68
+ .removeClass('active')
69
+
70
+ element.addClass('active')
71
+
72
+ if ( element.parent('.dropdown-menu') ) {
73
+ element.closest('li.dropdown').addClass('active')
74
+ }
75
+ }
76
+ }
77
+
78
+
79
+ /* TAB PLUGIN DEFINITION
80
+ * ===================== */
81
+
82
+ $.fn.tab = function (option) {
83
+ return this.each(function () {
84
+ var $this = $(this)
85
+ , data = $this.data('tab')
86
+ if (!data) $this.data('tab', (data = new Tab(this)))
87
+ if (typeof option == 'string') data[option]()
88
+ })
89
+ }
90
+
91
+ $.fn.tab.Tab = Tab
92
+
93
+
94
+ /* TAB DATA-API
95
+ * ============ */
96
+
97
+ $(document).ready(function () {
98
+ $('body').delegate('[data-toggle="tab"], [data-toggle="pill"]', 'click.tab.data-api', function (e) {
99
+ e.preventDefault()
100
+ $(this).tab('show')
101
+ })
102
+ })
103
+
104
+ }( window.jQuery || window.ender )
@@ -0,0 +1,45 @@
1
+ /* ===================================================
2
+ * bootstrap-transitions.js v2.0.0
3
+ * http://twitter.github.com/bootstrap/javascript.html
4
+ * ===================================================
5
+ * Copyright 2011 Twitter, Inc.
6
+ *
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * ========================================================== */
19
+
20
+ $(function () {
21
+
22
+ /* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
23
+ * ======================================================= */
24
+
25
+ $.support.transition = (function () {
26
+ var thisBody = document.body || document.documentElement
27
+ , thisStyle = thisBody.style
28
+ , support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
29
+
30
+ return support && {
31
+ end: (function () {
32
+ var transitionEnd = "TransitionEnd"
33
+ if ( $.browser.webkit ) {
34
+ transitionEnd = "webkitTransitionEnd"
35
+ } else if ( $.browser.mozilla ) {
36
+ transitionEnd = "transitionend"
37
+ } else if ( $.browser.opera ) {
38
+ transitionEnd = "oTransitionEnd"
39
+ }
40
+ return transitionEnd
41
+ }())
42
+ }
43
+ })()
44
+
45
+ })
@@ -0,0 +1,294 @@
1
+ /* ==========================================================
2
+ * bootstrap-twipsy.js v2.0.0
3
+ * http://twitter.github.com/bootstrap/javascript.html#twipsy
4
+ * Adapted from the original jQuery.tipsy by Jason Frame
5
+ * ==========================================================
6
+ * Copyright 2011 Twitter, Inc.
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ * ========================================================== */
20
+
21
+ !function( $ ) {
22
+
23
+ "use strict"
24
+
25
+ /* TWIPSY PUBLIC CLASS DEFINITION
26
+ * ============================== */
27
+
28
+ var Twipsy = function ( element, options ) {
29
+ this.$element = $(element)
30
+ this.options = options
31
+ this.enabled = true
32
+ this.fixTitle()
33
+ }
34
+
35
+ Twipsy.prototype = {
36
+
37
+ constructor: Twipsy
38
+
39
+ , show: function() {
40
+ var pos
41
+ , actualWidth
42
+ , actualHeight
43
+ , placement
44
+ , $tip
45
+ , tp
46
+
47
+ if (this.hasContent() && this.enabled) {
48
+ $tip = this.tip()
49
+ this.setContent()
50
+
51
+ if (this.options.animate) {
52
+ $tip.addClass('fade')
53
+ }
54
+
55
+ $tip
56
+ .remove()
57
+ .css({ top: 0, left: 0, display: 'block' })
58
+ .prependTo(document.body)
59
+
60
+ pos = $.extend({}, this.$element.offset(), {
61
+ width: this.$element[0].offsetWidth
62
+ , height: this.$element[0].offsetHeight
63
+ })
64
+
65
+ actualWidth = $tip[0].offsetWidth
66
+ actualHeight = $tip[0].offsetHeight
67
+
68
+ placement = maybeCall(this.options.placement, this, [ $tip[0], this.$element[0] ])
69
+
70
+ switch (placement) {
71
+ case 'below':
72
+ tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}
73
+ break
74
+ case 'above':
75
+ tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}
76
+ break
77
+ case 'left':
78
+ tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset}
79
+ break
80
+ case 'right':
81
+ tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset}
82
+ break
83
+ }
84
+
85
+ $tip
86
+ .css(tp)
87
+ .addClass(placement)
88
+ .addClass('in')
89
+ }
90
+ }
91
+
92
+ , setContent: function () {
93
+ var $tip = this.tip()
94
+ $tip.find('.twipsy-inner').html(this.getTitle())
95
+ $tip[0].className = 'twipsy'
96
+ }
97
+
98
+ , hide: function() {
99
+ var that = this
100
+ , $tip = this.tip()
101
+
102
+ $tip.removeClass('in')
103
+
104
+ function removeElement () {
105
+ $tip.remove()
106
+ }
107
+
108
+ $.support.transition && this.$tip.hasClass('fade') ?
109
+ $tip.bind( $.support.transition.end, removeElement) :
110
+ removeElement()
111
+ }
112
+
113
+ , fixTitle: function() {
114
+ var $e = this.$element
115
+ if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
116
+ $e.attr('data-original-title', $e.attr('title') || '').removeAttr('title')
117
+ }
118
+ }
119
+
120
+ , hasContent: function () {
121
+ return this.getTitle()
122
+ }
123
+
124
+ , getTitle: function() {
125
+ var title
126
+ , $e = this.$element
127
+ , o = this.options
128
+
129
+ this.fixTitle()
130
+
131
+ if (typeof o.title == 'string') {
132
+ title = $e.attr(o.title == 'title' ? 'data-original-title' : o.title)
133
+ } else if (typeof o.title == 'function') {
134
+ title = o.title.call($e[0])
135
+ }
136
+
137
+ title = ('' + title).replace(/(^\s*|\s*$)/, "")
138
+
139
+ return title
140
+ }
141
+
142
+ , tip: function() {
143
+ return this.$tip = this.$tip || $('<div class="twipsy" />').html(this.options.template)
144
+ }
145
+
146
+ , validate: function() {
147
+ if (!this.$element[0].parentNode) {
148
+ this.hide()
149
+ this.$element = null
150
+ this.options = null
151
+ }
152
+ }
153
+
154
+ , enable: function() {
155
+ this.enabled = true
156
+ }
157
+
158
+ , disable: function() {
159
+ this.enabled = false
160
+ }
161
+
162
+ , toggleEnabled: function() {
163
+ this.enabled = !this.enabled
164
+ }
165
+
166
+ , toggle: function () {
167
+ this[this.tip().hasClass('in') ? 'hide' : 'show']()
168
+ }
169
+
170
+ }
171
+
172
+
173
+ /* TWIPSY PRIVATE METHODS
174
+ * ====================== */
175
+
176
+ function maybeCall ( thing, ctx, args ) {
177
+ return typeof thing == 'function' ? thing.apply(ctx, args) : thing
178
+ }
179
+
180
+ /* TWIPSY PLUGIN DEFINITION
181
+ * ======================== */
182
+
183
+ $.fn.twipsy = function (options) {
184
+ $.fn.twipsy.initWith.call(this, options, Twipsy, 'twipsy')
185
+ return this
186
+ }
187
+
188
+ $.fn.twipsy.initWith = function (options, Base, name) {
189
+ var twipsy
190
+ , binder
191
+ , eventIn
192
+ , eventOut
193
+
194
+ if (typeof options == 'string') {
195
+ return this.each(function (){
196
+ twipsy = $.data(this, name)
197
+ if (twipsy) twipsy[options]()
198
+ })
199
+ }
200
+
201
+ options = $.extend({}, $.fn[name].defaults, options)
202
+
203
+ if (options.delay && typeof options.delay == 'number') {
204
+ options.delay = {
205
+ show: options.delay
206
+ , hide: options.delay
207
+ }
208
+ }
209
+
210
+ function get(ele) {
211
+ var twipsy = $.data(ele, name)
212
+
213
+ if (!twipsy) {
214
+ twipsy = new Base(ele, $.fn.twipsy.elementOptions(ele, options))
215
+ $.data(ele, name, twipsy)
216
+ }
217
+
218
+ return twipsy
219
+ }
220
+
221
+ function enter() {
222
+ var twipsy = get(this)
223
+ twipsy.hoverState = 'in'
224
+
225
+ if (!options.delay || !options.delay.show) {
226
+ twipsy.show()
227
+ } else {
228
+ twipsy.fixTitle()
229
+ setTimeout(function() {
230
+ if (twipsy.hoverState == 'in') {
231
+ twipsy.show()
232
+ }
233
+ }, options.delay.show)
234
+ }
235
+ }
236
+
237
+ function leave() {
238
+ var twipsy = get(this)
239
+ twipsy.hoverState = 'out'
240
+ if (!options.delay || !options.delay.hide) {
241
+ twipsy.hide()
242
+ } else {
243
+ setTimeout(function() {
244
+ if (twipsy.hoverState == 'out') {
245
+ twipsy.hide()
246
+ }
247
+ }, options.delay.hide)
248
+ }
249
+ }
250
+
251
+ if (!options.live) {
252
+ this.each(function() {
253
+ get(this)
254
+ })
255
+ }
256
+
257
+ if (options.trigger != 'manual') {
258
+ binder = options.live ? 'live' : 'bind'
259
+ eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus'
260
+ eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur'
261
+ this[binder](eventIn, enter)[binder](eventOut, leave)
262
+ }
263
+
264
+ return this
265
+ }
266
+
267
+ $.fn.twipsy.Twipsy = Twipsy
268
+
269
+ $.fn.twipsy.defaults = {
270
+ animate: true
271
+ , delay: 0
272
+ , placement: 'above'
273
+ , live: false
274
+ , offset: 0
275
+ , trigger: 'hover'
276
+ , title: 'title'
277
+ , template: '<div class="twipsy-arrow"></div><div class="twipsy-inner"></div>'
278
+ }
279
+
280
+ $.fn.twipsy.rejectAttrOptions = [ 'title' ]
281
+
282
+ $.fn.twipsy.elementOptions = function(ele, options) {
283
+ var data = $(ele).data()
284
+ , rejects = $.fn.twipsy.rejectAttrOptions
285
+ , i = rejects.length
286
+
287
+ while (i--) {
288
+ delete data[rejects[i]]
289
+ }
290
+
291
+ return $.extend({}, options, data)
292
+ }
293
+
294
+ }( window.jQuery || window.ender )
@@ -0,0 +1 @@
1
+ //= require_tree .
@@ -0,0 +1,2700 @@
1
+ /*!
2
+ * Jombo v2.0.0
3
+ *
4
+ * Copyright 2011 Twitter, Inc
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
+ * Date: Wed Nov 30 22:05:44 PST 2011
10
+ */
11
+ html, body {
12
+ margin: 0;
13
+ padding: 0;
14
+ }
15
+ h1,
16
+ h2,
17
+ h3,
18
+ h4,
19
+ h5,
20
+ h6,
21
+ p,
22
+ blockquote,
23
+ pre,
24
+ a,
25
+ abbr,
26
+ acronym,
27
+ address,
28
+ cite,
29
+ code,
30
+ del,
31
+ dfn,
32
+ em,
33
+ img,
34
+ q,
35
+ s,
36
+ samp,
37
+ small,
38
+ strike,
39
+ strong,
40
+ sub,
41
+ sup,
42
+ tt,
43
+ var,
44
+ dd,
45
+ dl,
46
+ dt,
47
+ li,
48
+ ol,
49
+ ul,
50
+ fieldset,
51
+ form,
52
+ label,
53
+ legend,
54
+ button,
55
+ table,
56
+ caption,
57
+ tbody,
58
+ tfoot,
59
+ thead,
60
+ tr,
61
+ th,
62
+ td {
63
+ margin: 0;
64
+ padding: 0;
65
+ border: 0;
66
+ font-weight: normal;
67
+ font-style: normal;
68
+ font-size: 100%;
69
+ line-height: 1;
70
+ font-family: inherit;
71
+ }
72
+ table {
73
+ border-collapse: collapse;
74
+ border-spacing: 0;
75
+ }
76
+ ol, ul {
77
+ list-style: none;
78
+ }
79
+ q:before,
80
+ q:after,
81
+ blockquote:before,
82
+ blockquote:after {
83
+ content: "";
84
+ }
85
+ html {
86
+ overflow-y: scroll;
87
+ font-size: 100%;
88
+ -webkit-text-size-adjust: 100%;
89
+ -ms-text-size-adjust: 100%;
90
+ }
91
+ a:focus {
92
+ outline: thin dotted;
93
+ }
94
+ a:hover, a:active {
95
+ outline: 0;
96
+ }
97
+ article,
98
+ aside,
99
+ details,
100
+ figcaption,
101
+ figure,
102
+ footer,
103
+ header,
104
+ hgroup,
105
+ nav,
106
+ section {
107
+ display: block;
108
+ }
109
+ audio, canvas, video {
110
+ display: inline-block;
111
+ *display: inline;
112
+ *zoom: 1;
113
+ }
114
+ audio:not([controls]) {
115
+ display: none;
116
+ }
117
+ sub, sup {
118
+ position: relative;
119
+ font-size: 75%;
120
+ line-height: 0;
121
+ vertical-align: baseline;
122
+ }
123
+ sup {
124
+ top: -0.5em;
125
+ }
126
+ sub {
127
+ bottom: -0.25em;
128
+ }
129
+ img {
130
+ border: 0;
131
+ -ms-interpolation-mode: bicubic;
132
+ }
133
+ button,
134
+ input,
135
+ select,
136
+ textarea {
137
+ margin: 0;
138
+ font-size: 100%;
139
+ vertical-align: baseline;
140
+ *vertical-align: middle;
141
+ }
142
+ button, input {
143
+ *overflow: visible;
144
+ line-height: normal;
145
+ }
146
+ button::-moz-focus-inner, input::-moz-focus-inner {
147
+ padding: 0;
148
+ border: 0;
149
+ }
150
+ button,
151
+ input[type="button"],
152
+ input[type="reset"],
153
+ input[type="submit"] {
154
+ cursor: pointer;
155
+ -webkit-appearance: button;
156
+ }
157
+ input[type="search"] {
158
+ -webkit-appearance: textfield;
159
+ -webkit-box-sizing: content-box;
160
+ -moz-box-sizing: content-box;
161
+ box-sizing: content-box;
162
+ }
163
+ input[type="search"]::-webkit-search-decoration {
164
+ -webkit-appearance: none;
165
+ }
166
+ textarea {
167
+ overflow: auto;
168
+ vertical-align: top;
169
+ }
170
+ body {
171
+ margin: 0;
172
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
173
+ font-size: 13px;
174
+ line-height: 18px;
175
+ color: #404040;
176
+ background-color: #ffffff;
177
+ }
178
+ .container {
179
+ width: 940px;
180
+ margin-left: auto;
181
+ margin-right: auto;
182
+ zoom: 1;
183
+ }
184
+ .container:before, .container:after {
185
+ display: table;
186
+ *display: inline;
187
+ content: "";
188
+ zoom: 1;
189
+ }
190
+ .container:after {
191
+ clear: both;
192
+ }
193
+ .fluid-container {
194
+ position: relative;
195
+ min-width: 940px;
196
+ padding-left: 20px;
197
+ padding-right: 20px;
198
+ zoom: 1;
199
+ }
200
+ .fluid-container:before, .fluid-container:after {
201
+ display: table;
202
+ *display: inline;
203
+ content: "";
204
+ zoom: 1;
205
+ }
206
+ .fluid-container:after {
207
+ clear: both;
208
+ }
209
+ .fluid-sidebar-left, .fluid-sidebar-right {
210
+ width: 220px;
211
+ }
212
+ .fluid-sidebar-left {
213
+ float: left;
214
+ }
215
+ .fluid-sidebar-right {
216
+ float: right;
217
+ }
218
+ .fluid-content {
219
+ margin-left: 240px;
220
+ }
221
+ .fluid-container.reverse .fluid-content {
222
+ margin-left: 0;
223
+ margin-right: 240px;
224
+ }
225
+ a {
226
+ font-weight: inherit;
227
+ line-height: inherit;
228
+ color: #0069d6;
229
+ text-decoration: none;
230
+ }
231
+ a:hover {
232
+ color: #00438a;
233
+ text-decoration: underline;
234
+ }
235
+ .pull-right {
236
+ float: right;
237
+ }
238
+ .pull-left {
239
+ float: left;
240
+ }
241
+ .hide {
242
+ display: none;
243
+ }
244
+ .show {
245
+ display: block;
246
+ }
247
+ .row {
248
+ margin-left: -20px;
249
+ zoom: 1;
250
+ }
251
+ .row:before, .row:after {
252
+ display: table;
253
+ *display: inline;
254
+ content: "";
255
+ zoom: 1;
256
+ }
257
+ .row:after {
258
+ clear: both;
259
+ }
260
+ [class*="span"] {
261
+ display: inline;
262
+ float: left;
263
+ margin-left: 20px;
264
+ }
265
+ .span1 {
266
+ width: 60px;
267
+ }
268
+ .span2 {
269
+ width: 140px;
270
+ }
271
+ .span3 {
272
+ width: 220px;
273
+ }
274
+ .span4 {
275
+ width: 300px;
276
+ }
277
+ .span5 {
278
+ width: 380px;
279
+ }
280
+ .span6 {
281
+ width: 460px;
282
+ }
283
+ .span7 {
284
+ width: 540px;
285
+ }
286
+ .span8 {
287
+ width: 620px;
288
+ }
289
+ .span9 {
290
+ width: 700px;
291
+ }
292
+ .span10 {
293
+ width: 780px;
294
+ }
295
+ .span11 {
296
+ width: 860px;
297
+ }
298
+ .span12 {
299
+ width: 940px;
300
+ }
301
+ .offset1 {
302
+ margin-left: 100px;
303
+ }
304
+ .offset2 {
305
+ margin-left: 180px;
306
+ }
307
+ .offset3 {
308
+ margin-left: 260px;
309
+ }
310
+ .offset4 {
311
+ margin-left: 340px;
312
+ }
313
+ .offset5 {
314
+ margin-left: 420px;
315
+ }
316
+ .offset6 {
317
+ margin-left: 500px;
318
+ }
319
+ .offset7 {
320
+ margin-left: 580px;
321
+ }
322
+ .offset8 {
323
+ margin-left: 660px;
324
+ }
325
+ .offset9 {
326
+ margin-left: 740px;
327
+ }
328
+ .offset10 {
329
+ margin-left: 820px;
330
+ }
331
+ .offset11 {
332
+ margin-left: 900px;
333
+ }
334
+ p {
335
+ margin-bottom: 9px;
336
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
337
+ font-size: 13px;
338
+ line-height: 18px;
339
+ }
340
+ p small {
341
+ font-size: 11px;
342
+ color: #bfbfbf;
343
+ }
344
+ h1,
345
+ h2,
346
+ h3,
347
+ h4,
348
+ h5,
349
+ h6 {
350
+ font-weight: bold;
351
+ color: #404040;
352
+ text-rendering: optimizelegibility;
353
+ }
354
+ h1 small,
355
+ h2 small,
356
+ h3 small,
357
+ h4 small,
358
+ h5 small,
359
+ h6 small {
360
+ color: #bfbfbf;
361
+ }
362
+ h1 {
363
+ font-size: 30px;
364
+ line-height: 36px;
365
+ }
366
+ h1 small {
367
+ font-size: 18px;
368
+ }
369
+ h2 {
370
+ font-size: 24px;
371
+ line-height: 36px;
372
+ }
373
+ h2 small {
374
+ font-size: 18px;
375
+ }
376
+ h3 {
377
+ line-height: 27px;
378
+ font-size: 18px;
379
+ }
380
+ h3 small {
381
+ font-size: 14px;
382
+ }
383
+ h4 {
384
+ font-size: 16px;
385
+ line-height: 36px;
386
+ }
387
+ h4 small {
388
+ font-size: 12px;
389
+ }
390
+ h5 {
391
+ font-size: 14px;
392
+ line-height: 18px;
393
+ }
394
+ h6 {
395
+ font-size: 13px;
396
+ line-height: 18px;
397
+ color: #bfbfbf;
398
+ text-transform: uppercase;
399
+ }
400
+ ul, ol {
401
+ margin: 0 0 9px 25px;
402
+ }
403
+ ul ul,
404
+ ul ol,
405
+ ol ol,
406
+ ol ul {
407
+ margin-bottom: 0;
408
+ }
409
+ ul {
410
+ list-style: disc;
411
+ }
412
+ ol {
413
+ list-style: decimal;
414
+ }
415
+ li {
416
+ line-height: 18px;
417
+ color: #404040;
418
+ }
419
+ ul.unstyled {
420
+ margin-left: 0;
421
+ list-style: none;
422
+ }
423
+ dl {
424
+ margin-bottom: 18px;
425
+ }
426
+ dl dt, dl dd {
427
+ line-height: 18px;
428
+ }
429
+ dl dt {
430
+ font-weight: bold;
431
+ }
432
+ dl dd {
433
+ margin-left: 9px;
434
+ }
435
+ hr {
436
+ margin: 20px 0 19px;
437
+ border: 0;
438
+ border-bottom: 1px solid #eee;
439
+ }
440
+ strong {
441
+ font-style: inherit;
442
+ font-weight: bold;
443
+ }
444
+ em {
445
+ font-style: italic;
446
+ font-weight: inherit;
447
+ line-height: inherit;
448
+ }
449
+ .muted {
450
+ color: #bfbfbf;
451
+ }
452
+ abbr {
453
+ font-size: 90%;
454
+ text-transform: uppercase;
455
+ border-bottom: 1px dotted #ddd;
456
+ cursor: help;
457
+ }
458
+ blockquote {
459
+ padding-left: 15px;
460
+ margin-bottom: 18px;
461
+ border-left: 5px solid #eee;
462
+ }
463
+ blockquote p {
464
+ margin-bottom: 0;
465
+ font-size: 300;
466
+ font-weight: 16px;
467
+ line-height: 22.5px;
468
+ }
469
+ blockquote small {
470
+ display: block;
471
+ line-height: 18px;
472
+ color: #bfbfbf;
473
+ }
474
+ blockquote small:before {
475
+ content: '\2014 \00A0';
476
+ }
477
+ blockquote.pull-right {
478
+ float: right;
479
+ }
480
+ blockquote.pull-right p, blockquote.pull-right small {
481
+ text-align: right;
482
+ }
483
+ address {
484
+ display: block;
485
+ margin-bottom: 18px;
486
+ line-height: 18px;
487
+ }
488
+ code, pre {
489
+ padding: 0 3px 2px;
490
+ font-family: "Menlo", Monaco, Courier New, monospace;
491
+ font-size: 12px;
492
+ color: #404040;
493
+ -webkit-border-radius: 3px;
494
+ -moz-border-radius: 3px;
495
+ border-radius: 3px;
496
+ }
497
+ code {
498
+ padding: 1px 3px;
499
+ background-color: #fee9cc;
500
+ }
501
+ pre {
502
+ display: block;
503
+ padding: 8.5px;
504
+ margin: 0 0 9px;
505
+ font-size: 12px;
506
+ line-height: 18px;
507
+ background-color: #f5f5f5;
508
+ border: 1px solid #ccc;
509
+ border: 1px solid rgba(0, 0, 0, 0.15);
510
+ -webkit-border-radius: 3px;
511
+ -moz-border-radius: 3px;
512
+ border-radius: 3px;
513
+ white-space: pre;
514
+ white-space: pre-wrap;
515
+ word-break: break-all;
516
+ }
517
+ pre.prettyprint {
518
+ margin-bottom: 18px;
519
+ }
520
+ pre code {
521
+ padding: 0;
522
+ background-color: transparent;
523
+ }
524
+ form {
525
+ margin-bottom: 18px;
526
+ }
527
+ legend {
528
+ display: block;
529
+ width: 100%;
530
+ margin-bottom: 27px;
531
+ font-size: 19.5px;
532
+ line-height: 36px;
533
+ color: #404040;
534
+ border-bottom: 1px solid #eee;
535
+ }
536
+ label,
537
+ input,
538
+ select,
539
+ textarea {
540
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
541
+ font-size: normal;
542
+ font-weight: 13px;
543
+ line-height: 18px;
544
+ }
545
+ label {
546
+ display: block;
547
+ margin-bottom: 5px;
548
+ color: #404040;
549
+ }
550
+ input,
551
+ textarea,
552
+ select,
553
+ .uneditable-input {
554
+ display: inline-block;
555
+ width: 210px;
556
+ height: 18px;
557
+ padding: 4px;
558
+ font-size: 13px;
559
+ line-height: 18px;
560
+ color: #808080;
561
+ border: 1px solid #ccc;
562
+ -webkit-border-radius: 3px;
563
+ -moz-border-radius: 3px;
564
+ border-radius: 3px;
565
+ }
566
+ /* Mini reset for unique input types */
567
+ input[type=checkbox], input[type=radio] {
568
+ width: auto;
569
+ height: auto;
570
+ padding: 0;
571
+ margin: 3px 0;
572
+ *margin-top: 0;
573
+ /* IE6-7 */
574
+
575
+ line-height: normal;
576
+ border: none;
577
+ cursor: pointer;
578
+ }
579
+ input[type=file] {
580
+ padding: initial;
581
+ line-height: initial;
582
+ border: initial;
583
+ background-color: #ffffff;
584
+ background-color: initial;
585
+ -webkit-box-shadow: none;
586
+ -moz-box-shadow: none;
587
+ box-shadow: none;
588
+ }
589
+ input[type=button], input[type=reset], input[type=submit] {
590
+ width: auto;
591
+ height: auto;
592
+ }
593
+ select, input[type=file] {
594
+ height: 27px;
595
+ *margin-top: 4px;
596
+ /* For IE7, add top margin to align select with labels */
597
+
598
+ line-height: 27px;
599
+ }
600
+ select[multiple] {
601
+ height: inherit;
602
+ background-color: #ffffff;
603
+ }
604
+ textarea {
605
+ height: auto;
606
+ }
607
+ input, textarea {
608
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
609
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
610
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
611
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
612
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
613
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
614
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
615
+ transition: border linear 0.2s, box-shadow linear 0.2s;
616
+ }
617
+ input:focus, textarea:focus {
618
+ border-color: rgba(82, 168, 236, 0.8);
619
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
620
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
621
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
622
+ outline: 0;
623
+ }
624
+ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
625
+ -webkit-box-shadow: none;
626
+ -moz-box-shadow: none;
627
+ box-shadow: none;
628
+ outline: 1px dotted #666;
629
+ }
630
+ .input-mini {
631
+ width: 60px;
632
+ }
633
+ .input-small {
634
+ width: 90px;
635
+ }
636
+ .input-medium {
637
+ width: 150px;
638
+ }
639
+ .input-large {
640
+ width: 210px;
641
+ }
642
+ .input-xlarge {
643
+ width: 270px;
644
+ }
645
+ .input-xxlarge {
646
+ width: 530px;
647
+ }
648
+ input.span1,
649
+ textarea.span1,
650
+ select.span1,
651
+ .uneditable-input.span1 {
652
+ display: inline-block;
653
+ float: none;
654
+ width: 50px;
655
+ margin-left: 0;
656
+ }
657
+ input.span2,
658
+ textarea.span2,
659
+ select.span2,
660
+ .uneditable-input.span2 {
661
+ display: inline-block;
662
+ float: none;
663
+ width: 130px;
664
+ margin-left: 0;
665
+ }
666
+ input.span3,
667
+ textarea.span3,
668
+ select.span3,
669
+ .uneditable-input.span3 {
670
+ display: inline-block;
671
+ float: none;
672
+ width: 210px;
673
+ margin-left: 0;
674
+ }
675
+ input.span4,
676
+ textarea.span4,
677
+ select.span4,
678
+ .uneditable-input.span4 {
679
+ display: inline-block;
680
+ float: none;
681
+ width: 290px;
682
+ margin-left: 0;
683
+ }
684
+ input.span5,
685
+ textarea.span5,
686
+ select.span5,
687
+ .uneditable-input.span5 {
688
+ display: inline-block;
689
+ float: none;
690
+ width: 370px;
691
+ margin-left: 0;
692
+ }
693
+ input.span6,
694
+ textarea.span6,
695
+ select.span6,
696
+ .uneditable-input.span6 {
697
+ display: inline-block;
698
+ float: none;
699
+ width: 450px;
700
+ margin-left: 0;
701
+ }
702
+ input.span7,
703
+ textarea.span7,
704
+ select.span7,
705
+ .uneditable-input.span7 {
706
+ display: inline-block;
707
+ float: none;
708
+ width: 530px;
709
+ margin-left: 0;
710
+ }
711
+ input.span8,
712
+ textarea.span8,
713
+ select.span8,
714
+ .uneditable-input.span8 {
715
+ display: inline-block;
716
+ float: none;
717
+ width: 610px;
718
+ margin-left: 0;
719
+ }
720
+ input.span9,
721
+ textarea.span9,
722
+ select.span9,
723
+ .uneditable-input.span9 {
724
+ display: inline-block;
725
+ float: none;
726
+ width: 690px;
727
+ margin-left: 0;
728
+ }
729
+ input.span10,
730
+ textarea.span10,
731
+ select.span10,
732
+ .uneditable-input.span10 {
733
+ display: inline-block;
734
+ float: none;
735
+ width: 770px;
736
+ margin-left: 0;
737
+ }
738
+ input.span11,
739
+ textarea.span11,
740
+ select.span11,
741
+ .uneditable-input.span11 {
742
+ display: inline-block;
743
+ float: none;
744
+ width: 850px;
745
+ margin-left: 0;
746
+ }
747
+ input.span12,
748
+ textarea.span12,
749
+ select.span12,
750
+ .uneditable-input.span12 {
751
+ display: inline-block;
752
+ float: none;
753
+ width: 930px;
754
+ margin-left: 0;
755
+ }
756
+ input.span13,
757
+ textarea.span13,
758
+ select.span13,
759
+ .uneditable-input.span13 {
760
+ display: inline-block;
761
+ float: none;
762
+ width: 1010px;
763
+ margin-left: 0;
764
+ }
765
+ input.span14,
766
+ textarea.span14,
767
+ select.span14,
768
+ .uneditable-input.span14 {
769
+ display: inline-block;
770
+ float: none;
771
+ width: 1090px;
772
+ margin-left: 0;
773
+ }
774
+ input.span15,
775
+ textarea.span15,
776
+ select.span15,
777
+ .uneditable-input.span15 {
778
+ display: inline-block;
779
+ float: none;
780
+ width: 1170px;
781
+ margin-left: 0;
782
+ }
783
+ input.span16,
784
+ textarea.span16,
785
+ select.span16,
786
+ .uneditable-input.span16 {
787
+ display: inline-block;
788
+ float: none;
789
+ width: 1250px;
790
+ margin-left: 0;
791
+ }
792
+ input[disabled],
793
+ select[disabled],
794
+ textarea[disabled],
795
+ input[readonly],
796
+ select[readonly],
797
+ textarea[readonly] {
798
+ background-color: #f5f5f5;
799
+ border-color: #ddd;
800
+ cursor: not-allowed;
801
+ }
802
+ .control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
803
+ color: #b94a48;
804
+ }
805
+ .control-group.error input, .control-group.error textarea {
806
+ color: #b94a48;
807
+ border-color: #ee5f5b;
808
+ }
809
+ .control-group.error input:focus, .control-group.error textarea:focus {
810
+ border-color: #e9322d;
811
+ -webkit-box-shadow: 0 0 6px #f8b9b7;
812
+ -moz-box-shadow: 0 0 6px #f8b9b7;
813
+ box-shadow: 0 0 6px #f8b9b7;
814
+ }
815
+ .control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
816
+ color: #b94a48;
817
+ background-color: #fce6e6;
818
+ border-color: #b94a48;
819
+ }
820
+ .control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline {
821
+ color: #c09853;
822
+ }
823
+ .control-group.warning input, .control-group.warning textarea {
824
+ color: #c09853;
825
+ border-color: #ccae64;
826
+ }
827
+ .control-group.warning input:focus, .control-group.warning textarea:focus {
828
+ border-color: #be9a3f;
829
+ -webkit-box-shadow: 0 0 6px #e5d6b1;
830
+ -moz-box-shadow: 0 0 6px #e5d6b1;
831
+ box-shadow: 0 0 6px #e5d6b1;
832
+ }
833
+ .control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on {
834
+ color: #c09853;
835
+ background-color: #d2b877;
836
+ border-color: #c09853;
837
+ }
838
+ .control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline {
839
+ color: #468847;
840
+ }
841
+ .control-group.success input, .control-group.success textarea {
842
+ color: #468847;
843
+ border-color: #57a957;
844
+ }
845
+ .control-group.success input:focus, .control-group.success textarea:focus {
846
+ border-color: #458845;
847
+ -webkit-box-shadow: 0 0 6px #9acc9a;
848
+ -moz-box-shadow: 0 0 6px #9acc9a;
849
+ box-shadow: 0 0 6px #9acc9a;
850
+ }
851
+ .control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on {
852
+ color: #468847;
853
+ background-color: #bcddbc;
854
+ border-color: #468847;
855
+ }
856
+ .form-actions {
857
+ padding: 17px 20px 18px;
858
+ margin-top: 18px;
859
+ margin-bottom: 18px;
860
+ background-color: #f5f5f5;
861
+ border-top: 1px solid #ddd;
862
+ }
863
+ .uneditable-input {
864
+ display: block;
865
+ background-color: #ffffff;
866
+ border-color: #eee;
867
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
868
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
869
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
870
+ cursor: not-allowed;
871
+ }
872
+ :-moz-placeholder {
873
+ color: #bfbfbf;
874
+ }
875
+ ::-webkit-input-placeholder {
876
+ color: #bfbfbf;
877
+ }
878
+ .help-text {
879
+ margin-top: 5px;
880
+ margin-bottom: 0;
881
+ color: #bfbfbf;
882
+ }
883
+ .help-inline {
884
+ *position: relative;
885
+ /* IE6-7 */
886
+
887
+ *top: -5px;
888
+ /* IE6-7 */
889
+
890
+ display: inline;
891
+ padding-left: 5px;
892
+ }
893
+ .help-block {
894
+ display: block;
895
+ max-width: 600px;
896
+ }
897
+ .inline-inputs {
898
+ color: #808080;
899
+ }
900
+ .inline-inputs span, .inline-inputs input {
901
+ display: inline-block;
902
+ }
903
+ .inline-inputs input.mini {
904
+ width: 60px;
905
+ }
906
+ .inline-inputs input.small {
907
+ width: 90px;
908
+ }
909
+ .inline-inputs span {
910
+ padding: 0 2px 0 1px;
911
+ }
912
+ .input-prepend input, .input-append input {
913
+ -webkit-border-radius: 0 3px 3px 0;
914
+ -moz-border-radius: 0 3px 3px 0;
915
+ border-radius: 0 3px 3px 0;
916
+ }
917
+ .input-prepend .add-on, .input-append .add-on {
918
+ position: relative;
919
+ z-index: 2;
920
+ float: left;
921
+ display: block;
922
+ width: auto;
923
+ min-width: 16px;
924
+ height: 18px;
925
+ margin-right: -1px;
926
+ padding: 4px 4px 4px 5px;
927
+ font-weight: normal;
928
+ line-height: 18px;
929
+ color: #bfbfbf;
930
+ text-align: center;
931
+ text-shadow: 0 1px 0 #ffffff;
932
+ background-color: #f5f5f5;
933
+ border: 1px solid #ccc;
934
+ -webkit-border-radius: 3px 0 0 3px;
935
+ -moz-border-radius: 3px 0 0 3px;
936
+ border-radius: 3px 0 0 3px;
937
+ }
938
+ .input-prepend .active, .input-append .active {
939
+ background-color: #a9dba9;
940
+ border-color: #46a546;
941
+ }
942
+ .input-prepend .add-on {
943
+ *margin-top: 1px;
944
+ /* IE6-7 */
945
+
946
+ }
947
+ .input-append input {
948
+ float: left;
949
+ -webkit-border-radius: 3px 0 0 3px;
950
+ -moz-border-radius: 3px 0 0 3px;
951
+ border-radius: 3px 0 0 3px;
952
+ }
953
+ .input-append .add-on {
954
+ margin-right: 0;
955
+ margin-left: -1px;
956
+ -webkit-border-radius: 0 3px 3px 0;
957
+ -moz-border-radius: 0 3px 3px 0;
958
+ border-radius: 0 3px 3px 0;
959
+ }
960
+ .search-form .search-query {
961
+ -webkit-border-radius: 14px;
962
+ -moz-border-radius: 14px;
963
+ border-radius: 14px;
964
+ }
965
+ .control-group {
966
+ margin-bottom: 18px;
967
+ }
968
+ .control-group > label {
969
+ font-weight: bold;
970
+ }
971
+ .horizontal-form .control-group > label {
972
+ float: left;
973
+ width: 130px;
974
+ padding-top: 5px;
975
+ text-align: right;
976
+ }
977
+ .horizontal-form .controls {
978
+ margin-left: 150px;
979
+ }
980
+ .horizontal-form .control-list {
981
+ padding-top: 6px;
982
+ }
983
+ .horizontal-form .form-actions {
984
+ padding-left: 150px;
985
+ }
986
+ table {
987
+ width: 100%;
988
+ margin-bottom: 18px;
989
+ }
990
+ th, td {
991
+ padding: 8px;
992
+ line-height: 18px;
993
+ text-align: left;
994
+ border-bottom: 1px solid #ddd;
995
+ }
996
+ th {
997
+ font-weight: bold;
998
+ vertical-align: bottom;
999
+ }
1000
+ td {
1001
+ vertical-align: top;
1002
+ }
1003
+ tbody tr:last-child th, tbody tr:last-child td {
1004
+ border-bottom: 0;
1005
+ }
1006
+ .condensed-table th, .condensed-table td {
1007
+ padding: 4px 5px;
1008
+ }
1009
+ .bordered-table {
1010
+ border: 1px solid #ddd;
1011
+ border-collapse: separate;
1012
+ -webkit-border-radius: 4px;
1013
+ -moz-border-radius: 4px;
1014
+ border-radius: 4px;
1015
+ }
1016
+ .bordered-table th + th,
1017
+ .bordered-table td + td,
1018
+ .bordered-table th + td,
1019
+ .bordered-table td + th {
1020
+ border-left: 1px solid #ddd;
1021
+ }
1022
+ .bordered-table thead:first-child tr:first-child th:first-child, .bordered-table tbody:first-child tr:first-child td:first-child {
1023
+ -webkit-border-radius: 4px 0 0 0;
1024
+ -moz-border-radius: 4px 0 0 0;
1025
+ border-radius: 4px 0 0 0;
1026
+ }
1027
+ .bordered-table thead:first-child tr:first-child th:last-child, .bordered-table tbody:first-child tr:first-child td:last-child {
1028
+ -webkit-border-radius: 0 4px 0 0;
1029
+ -moz-border-radius: 0 4px 0 0;
1030
+ border-radius: 0 4px 0 0;
1031
+ }
1032
+ .bordered-table thead:last-child tr:last-child th:first-child, .bordered-table tbody:last-child tr:last-child td:first-child {
1033
+ -webkit-border-radius: 0 0 0 4px;
1034
+ -moz-border-radius: 0 0 0 4px;
1035
+ border-radius: 0 0 0 4px;
1036
+ }
1037
+ .bordered-table thead:last-child tr:last-child th:last-child, .bordered-table tbody:last-child tr:last-child td:last-child {
1038
+ -webkit-border-radius: 0 0 4px 0;
1039
+ -moz-border-radius: 0 0 4px 0;
1040
+ border-radius: 0 0 4px 0;
1041
+ }
1042
+ .striped-table tbody tr:nth-child(odd) td, .striped-table tbody tr:nth-child(odd) th {
1043
+ background-color: #f9f9f9;
1044
+ }
1045
+ /*
1046
+ // ----------------
1047
+
1048
+ // This is a duplication of the main grid .columns() mixin, but subtracts 20px to account for input padding and border
1049
+ .tableColumns(@columnSpan: 1) {
1050
+ width: ((@gridColumnWidth - 20) * @columnSpan) + ((@gridColumnWidth - 20) * (@columnSpan - 1));
1051
+ }
1052
+ table {
1053
+ // Default columns
1054
+ .span1 { .tableColumns(1); }
1055
+ .span2 { .tableColumns(2); }
1056
+ .span3 { .tableColumns(3); }
1057
+ .span4 { .tableColumns(4); }
1058
+ .span5 { .tableColumns(5); }
1059
+ .span6 { .tableColumns(6); }
1060
+ .span7 { .tableColumns(7); }
1061
+ .span8 { .tableColumns(8); }
1062
+ .span9 { .tableColumns(9); }
1063
+ .span10 { .tableColumns(10); }
1064
+ .span11 { .tableColumns(11); }
1065
+ .span12 { .tableColumns(12); }
1066
+ .span13 { .tableColumns(13); }
1067
+ .span14 { .tableColumns(14); }
1068
+ .span15 { .tableColumns(15); }
1069
+ .span16 { .tableColumns(16); }
1070
+ }
1071
+
1072
+
1073
+ // TABLESORTER
1074
+ // -----------
1075
+
1076
+ table {
1077
+ // Tablesorting styles w/ jQuery plugin
1078
+ .header {
1079
+ cursor: pointer;
1080
+ &:after {
1081
+ float: right;
1082
+ margin-top: 7px;
1083
+ border-width: 0 4px 4px;
1084
+ border-style: solid;
1085
+ border-color: #000 transparent;
1086
+ content: "";
1087
+ visibility: hidden;
1088
+ }
1089
+ }
1090
+ // Style the sorted column headers (THs)
1091
+ .headerSortUp,
1092
+ .headerSortDown {
1093
+ text-shadow: 0 1px 1px rgba(255,255,255,.75);
1094
+ background-color: rgba(141,192,219,.25);
1095
+ }
1096
+ // Style the ascending (reverse alphabetical) column header
1097
+ .header:hover {
1098
+ &:after {
1099
+ visibility: visible;
1100
+ }
1101
+ }
1102
+ // Style the descending (alphabetical) column header
1103
+ .headerSortDown,
1104
+ .headerSortDown:hover {
1105
+ &:after {
1106
+ visibility: visible;
1107
+ .opacity(60);
1108
+ }
1109
+ }
1110
+ // Style the ascending (reverse alphabetical) column header
1111
+ .headerSortUp {
1112
+ &:after {
1113
+ border-bottom: none;
1114
+ border-left: 4px solid transparent;
1115
+ border-right: 4px solid transparent;
1116
+ border-top: 4px solid #000;
1117
+ visibility:visible;
1118
+ .box-shadow(none); //can't add boxshadow to downward facing arrow :(
1119
+ .opacity(60);
1120
+ }
1121
+ }
1122
+ // Blue Table Headings
1123
+ .blue {
1124
+ color: @blue;
1125
+ border-bottom-color: @blue;
1126
+ }
1127
+ .headerSortUp.blue,
1128
+ .headerSortDown.blue {
1129
+ background-color: lighten(@blue, 40%);
1130
+ }
1131
+ // Green Table Headings
1132
+ .green {
1133
+ color: @green;
1134
+ border-bottom-color: @green;
1135
+ }
1136
+ .headerSortUp.green,
1137
+ .headerSortDown.green {
1138
+ background-color: lighten(@green, 40%);
1139
+ }
1140
+ // Red Table Headings
1141
+ .red {
1142
+ color: @red;
1143
+ border-bottom-color: @red;
1144
+ }
1145
+ .headerSortUp.red,
1146
+ .headerSortDown.red {
1147
+ background-color: lighten(@red, 50%);
1148
+ }
1149
+ // Yellow Table Headings
1150
+ .yellow {
1151
+ color: @yellow;
1152
+ border-bottom-color: @yellow;
1153
+ }
1154
+ .headerSortUp.yellow,
1155
+ .headerSortDown.yellow {
1156
+ background-color: lighten(@yellow, 40%);
1157
+ }
1158
+ // Orange Table Headings
1159
+ .orange {
1160
+ color: @orange;
1161
+ border-bottom-color: @orange;
1162
+ }
1163
+ .headerSortUp.orange,
1164
+ .headerSortDown.orange {
1165
+ background-color: lighten(@orange, 40%);
1166
+ }
1167
+ // Purple Table Headings
1168
+ .purple {
1169
+ color: @purple;
1170
+ border-bottom-color: @purple;
1171
+ }
1172
+ .headerSortUp.purple,
1173
+ .headerSortDown.purple {
1174
+ background-color: lighten(@purple, 40%);
1175
+ }
1176
+ }*/
1177
+ .navbar {
1178
+ height: 40px;
1179
+ overflow: visible;
1180
+ }
1181
+ .navbar-inner {
1182
+ background-color: #222222;
1183
+ background-color: #222222;
1184
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
1185
+ background-image: -moz-linear-gradient(top, #333333, #222222);
1186
+ background-image: -ms-linear-gradient(top, #333333, #222222);
1187
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
1188
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
1189
+ background-image: -o-linear-gradient(top, #333333, #222222);
1190
+ background-image: linear-gradient(top, #333333, #222222);
1191
+ background-repeat: repeat-x;
1192
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1193
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1194
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1195
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1196
+ }
1197
+ .navbar a {
1198
+ color: #bfbfbf;
1199
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1200
+ }
1201
+ .navbar .brand a:hover, .navbar ul .active > a {
1202
+ color: #ffffff;
1203
+ text-decoration: none;
1204
+ background-color: #333333;
1205
+ background-color: rgba(255, 255, 255, 0.05);
1206
+ }
1207
+ .navbar .brand {
1208
+ float: left;
1209
+ display: block;
1210
+ padding: 8px 20px 12px;
1211
+ margin-left: -20px;
1212
+ font-size: 20px;
1213
+ font-weight: 200;
1214
+ line-height: 1;
1215
+ color: #ffffff;
1216
+ }
1217
+ .navbar p {
1218
+ margin: 0;
1219
+ line-height: 40px;
1220
+ }
1221
+ .navbar p a:hover {
1222
+ color: #ffffff;
1223
+ background-color: transparent;
1224
+ }
1225
+ .navbar-search {
1226
+ position: relative;
1227
+ float: left;
1228
+ margin-top: 6px;
1229
+ margin-bottom: 0;
1230
+ }
1231
+ .navbar-search .search-query {
1232
+ padding: 4px 9px;
1233
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1234
+ font-size: 13px;
1235
+ font-weight: normal;
1236
+ line-height: 1;
1237
+ color: #ffffff;
1238
+ color: rgba(255, 255, 255, 0.75);
1239
+ background-color: #444;
1240
+ background-color: rgba(255, 255, 255, 0.3);
1241
+ border: 1px solid #111;
1242
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1243
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1244
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
1245
+ -webkit-transition: none;
1246
+ -moz-transition: none;
1247
+ -ms-transition: none;
1248
+ -o-transition: none;
1249
+ transition: none;
1250
+ }
1251
+ .navbar-search .search-query:-moz-placeholder {
1252
+ color: #e6e6e6;
1253
+ }
1254
+ .navbar-search .search-query::-webkit-input-placeholder {
1255
+ color: #e6e6e6;
1256
+ }
1257
+ .navbar-search .search-query:hover {
1258
+ color: #ffffff;
1259
+ background-color: #bfbfbf;
1260
+ background-color: rgba(255, 255, 255, 0.5);
1261
+ }
1262
+ .navbar-search .search-query:focus, .navbar-search .search-query.focused {
1263
+ padding: 5px 10px;
1264
+ color: #404040;
1265
+ text-shadow: 0 1px 0 #ffffff;
1266
+ background-color: #ffffff;
1267
+ border: 0;
1268
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1269
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1270
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1271
+ outline: 0;
1272
+ }
1273
+ .navbar-static {
1274
+ margin-bottom: 18px;
1275
+ }
1276
+ .navbar-static .navbar-inner {
1277
+ padding-left: 20px;
1278
+ padding-right: 20px;
1279
+ -webkit-border-radius: 4px;
1280
+ -moz-border-radius: 4px;
1281
+ border-radius: 4px;
1282
+ }
1283
+ .navbar-fixed {
1284
+ position: fixed;
1285
+ top: 0;
1286
+ right: 0;
1287
+ left: 0;
1288
+ z-index: 10000;
1289
+ }
1290
+ .nav {
1291
+ position: relative;
1292
+ left: 0;
1293
+ display: block;
1294
+ float: left;
1295
+ margin: 0 10px 0 0;
1296
+ }
1297
+ .nav > li {
1298
+ display: block;
1299
+ float: left;
1300
+ }
1301
+ .nav a {
1302
+ display: block;
1303
+ float: none;
1304
+ padding: 10px 10px 11px;
1305
+ line-height: 19px;
1306
+ text-decoration: none;
1307
+ }
1308
+ .nav a:hover {
1309
+ color: #ffffff;
1310
+ text-decoration: none;
1311
+ }
1312
+ .nav .active > a {
1313
+ background-color: #222;
1314
+ background-color: rgba(0, 0, 0, 0.5);
1315
+ }
1316
+ .nav.secondary-nav {
1317
+ float: right;
1318
+ margin-left: 10px;
1319
+ margin-right: 0;
1320
+ }
1321
+ .nav.secondary-nav .dropdown-menu {
1322
+ right: 0;
1323
+ border: 0;
1324
+ }
1325
+ .nav .dropdown-toggle:hover, .nav .dropdown.open .dropdown-toggle {
1326
+ background: #444;
1327
+ background: rgba(255, 255, 255, 0.05);
1328
+ }
1329
+ .nav .dropdown-menu {
1330
+ background-color: #333;
1331
+ }
1332
+ .nav .dropdown-menu .dropdown-toggle {
1333
+ color: #ffffff;
1334
+ }
1335
+ .nav .dropdown-menu .dropdown-toggle.open {
1336
+ background: #444;
1337
+ background: rgba(255, 255, 255, 0.05);
1338
+ }
1339
+ .nav .dropdown-menu li a {
1340
+ color: #999;
1341
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
1342
+ }
1343
+ .nav .dropdown-menu li a:hover {
1344
+ background-color: #191919;
1345
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
1346
+ background-image: -moz-linear-gradient(top, #292929, #191919);
1347
+ background-image: -ms-linear-gradient(top, #292929, #191919);
1348
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
1349
+ background-image: -webkit-linear-gradient(top, #292929, #191919);
1350
+ background-image: -o-linear-gradient(top, #292929, #191919);
1351
+ background-image: linear-gradient(top, #292929, #191919);
1352
+ background-repeat: repeat-x;
1353
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
1354
+ color: #ffffff;
1355
+ }
1356
+ .nav .dropdown-menu .active a {
1357
+ color: #ffffff;
1358
+ }
1359
+ .nav .dropdown-menu .divider {
1360
+ background-color: #222;
1361
+ border-color: #444;
1362
+ }
1363
+ .topbar ul .dropdown-menu li a {
1364
+ padding: 4px 15px;
1365
+ }
1366
+ .dropdown {
1367
+ position: relative;
1368
+ }
1369
+ .dropdown-toggle:after {
1370
+ display: inline-block;
1371
+ width: 0;
1372
+ height: 0;
1373
+ margin-top: 8px;
1374
+ margin-left: 6px;
1375
+ text-indent: -99999px;
1376
+ vertical-align: top;
1377
+ border-left: 4px solid transparent;
1378
+ border-right: 4px solid transparent;
1379
+ border-top: 4px solid #ffffff;
1380
+ filter: alpha(opacity=30);
1381
+ -moz-opacity: 0.3;
1382
+ opacity: 0.3;
1383
+ content: "&darr;";
1384
+ }
1385
+ .dropdown:hover .dropdown-toggle:after {
1386
+ filter: alpha(opacity=100);
1387
+ -moz-opacity: 1;
1388
+ opacity: 1;
1389
+ }
1390
+ .dropdown-menu {
1391
+ position: absolute;
1392
+ top: 40px;
1393
+ z-index: 900;
1394
+ float: left;
1395
+ display: none;
1396
+ min-width: 160px;
1397
+ max-width: 220px;
1398
+ _width: 160px;
1399
+ padding: 6px 0;
1400
+ margin-left: 0;
1401
+ margin-right: 0;
1402
+ background-color: #ffffff;
1403
+ border-color: #999;
1404
+ border-color: rgba(0, 0, 0, 0.2);
1405
+ border-style: solid;
1406
+ border-width: 0 1px 1px;
1407
+ -webkit-border-radius: 0 0 6px 6px;
1408
+ -moz-border-radius: 0 0 6px 6px;
1409
+ border-radius: 0 0 6px 6px;
1410
+ -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1411
+ -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1412
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
1413
+ -webkit-background-clip: padding-box;
1414
+ -moz-background-clip: padding-box;
1415
+ background-clip: padding-box;
1416
+ zoom: 1;
1417
+ }
1418
+ .dropdown-menu li {
1419
+ float: none;
1420
+ display: block;
1421
+ background-color: none;
1422
+ }
1423
+ .dropdown-menu .divider {
1424
+ height: 1px;
1425
+ margin: 5px 0;
1426
+ overflow: hidden;
1427
+ background-color: #eee;
1428
+ border-bottom: 1px solid #ffffff;
1429
+ }
1430
+ .topbar .dropdown-menu a, .dropdown-menu a {
1431
+ display: block;
1432
+ padding: 4px 15px;
1433
+ clear: both;
1434
+ font-weight: normal;
1435
+ line-height: 18px;
1436
+ color: #808080;
1437
+ text-shadow: 0 1px 0 #ffffff;
1438
+ }
1439
+ .topbar .dropdown-menu a:hover, .dropdown-menu a:hover {
1440
+ color: #404040;
1441
+ text-decoration: none;
1442
+ background-color: #dddddd;
1443
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
1444
+ background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
1445
+ background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
1446
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
1447
+ background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
1448
+ background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
1449
+ background-image: linear-gradient(top, #eeeeee, #dddddd);
1450
+ background-repeat: repeat-x;
1451
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
1452
+ -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
1453
+ -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
1454
+ box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
1455
+ }
1456
+ .dropdown.open .dropdown-toggle {
1457
+ color: #ffffff;
1458
+ background: #ccc;
1459
+ background: rgba(0, 0, 0, 0.3);
1460
+ }
1461
+ .dropdown.open .dropdown-menu {
1462
+ display: block;
1463
+ }
1464
+ .hero-unit {
1465
+ padding: 60px;
1466
+ margin-bottom: 30px;
1467
+ background-color: #f5f5f5;
1468
+ -webkit-border-radius: 6px;
1469
+ -moz-border-radius: 6px;
1470
+ border-radius: 6px;
1471
+ }
1472
+ .hero-unit h1 {
1473
+ margin-bottom: 0;
1474
+ font-size: 60px;
1475
+ line-height: 1;
1476
+ letter-spacing: -1px;
1477
+ }
1478
+ .hero-unit p {
1479
+ font-size: 18px;
1480
+ font-weight: 200;
1481
+ line-height: 27px;
1482
+ }
1483
+ footer {
1484
+ padding-top: 17px;
1485
+ margin-top: 17px;
1486
+ border-top: 1px solid #eee;
1487
+ }
1488
+ .page-header {
1489
+ margin-bottom: 27px;
1490
+ border-bottom: 1px solid #eee;
1491
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1492
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1493
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1494
+ }
1495
+ .page-header h1 {
1496
+ margin-bottom: 13.5px;
1497
+ }
1498
+ .btn.danger,
1499
+ .alert-message.danger,
1500
+ .btn.danger:hover,
1501
+ .alert-message.danger:hover,
1502
+ .btn.error,
1503
+ .alert-message.error,
1504
+ .btn.error:hover,
1505
+ .alert-message.error:hover,
1506
+ .btn.success,
1507
+ .alert-message.success,
1508
+ .btn.success:hover,
1509
+ .alert-message.success:hover,
1510
+ .btn.info,
1511
+ .alert-message.info,
1512
+ .btn.info:hover,
1513
+ .alert-message.info:hover {
1514
+ color: #ffffff;
1515
+ }
1516
+ .btn.danger,
1517
+ .alert-message.danger,
1518
+ .btn.error,
1519
+ .alert-message.error {
1520
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1521
+ background-color: #c43c35;
1522
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
1523
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
1524
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
1525
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
1526
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
1527
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
1528
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
1529
+ background-repeat: repeat-x;
1530
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
1531
+ border-color: #c43c35 #c43c35 #882a25;
1532
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1533
+ }
1534
+ .btn.success, .alert-message.success {
1535
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1536
+ background-color: #57a957;
1537
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
1538
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
1539
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
1540
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
1541
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
1542
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
1543
+ background-image: linear-gradient(top, #62c462, #57a957);
1544
+ background-repeat: repeat-x;
1545
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
1546
+ border-color: #57a957 #57a957 #3d773d;
1547
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1548
+ }
1549
+ .btn.info, .alert-message.info {
1550
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1551
+ background-color: #339bb9;
1552
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
1553
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
1554
+ background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
1555
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
1556
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
1557
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
1558
+ background-image: linear-gradient(top, #5bc0de, #339bb9);
1559
+ background-repeat: repeat-x;
1560
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
1561
+ border-color: #339bb9 #339bb9 #22697d;
1562
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1563
+ }
1564
+ .btn {
1565
+ display: inline-block;
1566
+ padding: 5px 14px 6px;
1567
+ font-size: 13px;
1568
+ line-height: normal;
1569
+ color: #333;
1570
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1571
+ background-color: #e6e6e6;
1572
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
1573
+ background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1574
+ background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
1575
+ background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1576
+ background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1577
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1578
+ background-repeat: no-repeat;
1579
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
1580
+ border: 1px solid #ccc;
1581
+ border-bottom-color: #bbb;
1582
+ -webkit-border-radius: 4px;
1583
+ -moz-border-radius: 4px;
1584
+ border-radius: 4px;
1585
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1586
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1587
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
1588
+ cursor: pointer;
1589
+ -webkit-transition: 0.1s linear all;
1590
+ -moz-transition: 0.1s linear all;
1591
+ -ms-transition: 0.1s linear all;
1592
+ -o-transition: 0.1s linear all;
1593
+ transition: 0.1s linear all;
1594
+ }
1595
+ .btn:hover {
1596
+ color: #333;
1597
+ text-decoration: none;
1598
+ background-position: 0 -15px;
1599
+ }
1600
+ .btn:focus {
1601
+ outline: 1px dotted #666;
1602
+ }
1603
+ .btn.primary {
1604
+ color: #ffffff;
1605
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1606
+ background-color: #0064cd;
1607
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
1608
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
1609
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
1610
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
1611
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
1612
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
1613
+ background-image: linear-gradient(top, #049cdb, #0064cd);
1614
+ background-repeat: repeat-x;
1615
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
1616
+ border-color: #0064cd #0064cd #003f81;
1617
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1618
+ }
1619
+ .btn.active, .btn:active {
1620
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1621
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1622
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
1623
+ }
1624
+ .btn.disabled {
1625
+ cursor: default;
1626
+ background-image: none;
1627
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1628
+ filter: alpha(opacity=65);
1629
+ -moz-opacity: 0.65;
1630
+ opacity: 0.65;
1631
+ -webkit-box-shadow: none;
1632
+ -moz-box-shadow: none;
1633
+ box-shadow: none;
1634
+ }
1635
+ .btn[disabled] {
1636
+ cursor: default;
1637
+ background-image: none;
1638
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1639
+ filter: alpha(opacity=65);
1640
+ -moz-opacity: 0.65;
1641
+ opacity: 0.65;
1642
+ -webkit-box-shadow: none;
1643
+ -moz-box-shadow: none;
1644
+ box-shadow: none;
1645
+ }
1646
+ .btn.large {
1647
+ padding: 9px 14px 9px;
1648
+ font-size: 15px;
1649
+ line-height: normal;
1650
+ -webkit-border-radius: 6px;
1651
+ -moz-border-radius: 6px;
1652
+ border-radius: 6px;
1653
+ }
1654
+ .btn.small {
1655
+ padding: 7px 9px 7px;
1656
+ font-size: 11px;
1657
+ }
1658
+ :root .alert-message, :root .btn {
1659
+ border-radius: 0 \0;
1660
+ }
1661
+ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
1662
+ padding: 0;
1663
+ border: 0;
1664
+ }
1665
+ .btn-toolbar {
1666
+ zoom: 1;
1667
+ }
1668
+ .btn-toolbar:before, .btn-toolbar:after {
1669
+ display: table;
1670
+ *display: inline;
1671
+ content: "";
1672
+ zoom: 1;
1673
+ }
1674
+ .btn-toolbar:after {
1675
+ clear: both;
1676
+ }
1677
+ .btn-toolbar .btn-group {
1678
+ float: left;
1679
+ margin-right: 10px;
1680
+ }
1681
+ .btn-group {
1682
+ zoom: 1;
1683
+ }
1684
+ .btn-group:before, .btn-group:after {
1685
+ display: table;
1686
+ *display: inline;
1687
+ content: "";
1688
+ zoom: 1;
1689
+ }
1690
+ .btn-group:after {
1691
+ clear: both;
1692
+ }
1693
+ .btn-group .btn {
1694
+ position: relative;
1695
+ float: left;
1696
+ margin-left: -1px;
1697
+ -webkit-border-radius: 0;
1698
+ -moz-border-radius: 0;
1699
+ border-radius: 0;
1700
+ }
1701
+ .btn-group .btn:first-child {
1702
+ margin-left: 0;
1703
+ -webkit-border-top-left-radius: 4px;
1704
+ -moz-border-radius-topleft: 4px;
1705
+ border-top-left-radius: 4px;
1706
+ -webkit-border-bottom-left-radius: 4px;
1707
+ -moz-border-radius-bottomleft: 4px;
1708
+ border-bottom-left-radius: 4px;
1709
+ }
1710
+ .btn-group .btn:last-child {
1711
+ -webkit-border-top-right-radius: 4px;
1712
+ -moz-border-radius-topright: 4px;
1713
+ border-top-right-radius: 4px;
1714
+ -webkit-border-bottom-right-radius: 4px;
1715
+ -moz-border-radius-bottomright: 4px;
1716
+ border-bottom-right-radius: 4px;
1717
+ }
1718
+ .btn-group .btn:hover, .btn-group .btn:focus, .btn-group .btn:active {
1719
+ z-index: 2;
1720
+ }
1721
+ .close {
1722
+ float: right;
1723
+ font-size: 20px;
1724
+ font-weight: bold;
1725
+ line-height: 13.5px;
1726
+ color: #000000;
1727
+ text-shadow: 0 1px 0 #ffffff;
1728
+ filter: alpha(opacity=20);
1729
+ -moz-opacity: 0.2;
1730
+ opacity: 0.2;
1731
+ }
1732
+ .close:hover {
1733
+ color: #000000;
1734
+ text-decoration: none;
1735
+ filter: alpha(opacity=40);
1736
+ -moz-opacity: 0.4;
1737
+ opacity: 0.4;
1738
+ }
1739
+ .alert-message {
1740
+ position: relative;
1741
+ padding: 7px 15px;
1742
+ margin-bottom: 18px;
1743
+ color: #404040;
1744
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1745
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1746
+ background-color: #eedc94;
1747
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
1748
+ background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
1749
+ background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
1750
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
1751
+ background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
1752
+ background-image: -o-linear-gradient(top, #fceec1, #eedc94);
1753
+ background-image: linear-gradient(top, #fceec1, #eedc94);
1754
+ background-repeat: repeat-x;
1755
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
1756
+ border-color: #eedc94 #eedc94 #e4c652;
1757
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
1758
+ border-width: 1px;
1759
+ border-style: solid;
1760
+ -webkit-border-radius: 4px;
1761
+ -moz-border-radius: 4px;
1762
+ border-radius: 4px;
1763
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
1764
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
1765
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
1766
+ }
1767
+ .alert-message .close {
1768
+ *margin-top: 3px;
1769
+ /* IE7 spacing */
1770
+
1771
+ }
1772
+ .alert-message h5 {
1773
+ line-height: 18px;
1774
+ }
1775
+ .alert-message p {
1776
+ margin-bottom: 0;
1777
+ }
1778
+ .alert-message div {
1779
+ margin-top: 5px;
1780
+ margin-bottom: 2px;
1781
+ line-height: 28px;
1782
+ }
1783
+ .alert-message .btn {
1784
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
1785
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
1786
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
1787
+ }
1788
+ .alert-message.block-message {
1789
+ padding: 14px;
1790
+ background-image: none;
1791
+ background-color: #fdf5d9;
1792
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1793
+ border-color: #fceec1;
1794
+ -webkit-box-shadow: none;
1795
+ -moz-box-shadow: none;
1796
+ box-shadow: none;
1797
+ }
1798
+ .alert-message.block-message ul, .alert-message.block-message p {
1799
+ margin-right: 30px;
1800
+ }
1801
+ .alert-message.block-message ul {
1802
+ margin-bottom: 0;
1803
+ }
1804
+ .alert-message.block-message li {
1805
+ color: #404040;
1806
+ }
1807
+ .alert-message.block-message .alert-actions {
1808
+ margin-top: 5px;
1809
+ }
1810
+ .alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
1811
+ color: #404040;
1812
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
1813
+ }
1814
+ .alert-message.block-message.error {
1815
+ background-color: #fddfde;
1816
+ border-color: #fbc7c6;
1817
+ }
1818
+ .alert-message.block-message.success {
1819
+ background-color: #d1eed1;
1820
+ border-color: #bfe7bf;
1821
+ }
1822
+ .alert-message.block-message.info {
1823
+ background-color: #ddf4fb;
1824
+ border-color: #c6edf9;
1825
+ }
1826
+ .well {
1827
+ min-height: 20px;
1828
+ padding: 19px;
1829
+ margin-bottom: 20px;
1830
+ background-color: #f5f5f5;
1831
+ border: 1px solid #eee;
1832
+ border: 1px solid rgba(0, 0, 0, 0.05);
1833
+ -webkit-border-radius: 4px;
1834
+ -moz-border-radius: 4px;
1835
+ border-radius: 4px;
1836
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1837
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1838
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
1839
+ }
1840
+ .well blockquote {
1841
+ border-color: #ddd;
1842
+ border-color: rgba(0, 0, 0, 0.15);
1843
+ }
1844
+ .fade {
1845
+ -webkit-transition: opacity 0.15s linear;
1846
+ -moz-transition: opacity 0.15s linear;
1847
+ -ms-transition: opacity 0.15s linear;
1848
+ -o-transition: opacity 0.15s linear;
1849
+ transition: opacity 0.15s linear;
1850
+ opacity: 0;
1851
+ }
1852
+ .fade.in {
1853
+ opacity: 1;
1854
+ }
1855
+ .collapse {
1856
+ -webkit-transition: height 0.35s ease;
1857
+ -moz-transition: height 0.35s ease;
1858
+ -ms-transition: height 0.35s ease;
1859
+ -o-transition: height 0.35s ease;
1860
+ transition: height 0.35s ease;
1861
+ position: relative;
1862
+ overflow: hidden;
1863
+ height: 0;
1864
+ }
1865
+ .collapse.in {
1866
+ height: auto;
1867
+ }
1868
+ .label {
1869
+ padding: 1px 3px 2px;
1870
+ font-size: 9.75px;
1871
+ font-weight: bold;
1872
+ color: #ffffff;
1873
+ text-transform: uppercase;
1874
+ background-color: #bfbfbf;
1875
+ -webkit-border-radius: 3px;
1876
+ -moz-border-radius: 3px;
1877
+ border-radius: 3px;
1878
+ }
1879
+ .label.important {
1880
+ background-color: #c43c35;
1881
+ }
1882
+ .label.warning {
1883
+ background-color: #f89406;
1884
+ }
1885
+ .label.success {
1886
+ background-color: #46a546;
1887
+ }
1888
+ .label.notice {
1889
+ background-color: #62cffc;
1890
+ }
1891
+ .tabs, .pills {
1892
+ padding: 0;
1893
+ margin: 0 0 20px;
1894
+ list-style: none;
1895
+ zoom: 1;
1896
+ }
1897
+ .tabs:before,
1898
+ .pills:before,
1899
+ .tabs:after,
1900
+ .pills:after {
1901
+ display: table;
1902
+ *display: inline;
1903
+ content: "";
1904
+ zoom: 1;
1905
+ }
1906
+ .tabs:after, .pills:after {
1907
+ clear: both;
1908
+ }
1909
+ .tabs > li, .pills > li {
1910
+ float: left;
1911
+ }
1912
+ .tabs > li > a, .pills > li > a {
1913
+ display: block;
1914
+ }
1915
+ .tabs {
1916
+ border-color: #ddd;
1917
+ border-style: solid;
1918
+ border-width: 0 0 1px;
1919
+ }
1920
+ .tabs > li {
1921
+ position: relative;
1922
+ margin-bottom: -1px;
1923
+ }
1924
+ .tabs > li > a {
1925
+ padding: 0 15px;
1926
+ margin-right: 2px;
1927
+ line-height: 36px;
1928
+ border: 1px solid transparent;
1929
+ -webkit-border-radius: 4px 4px 0 0;
1930
+ -moz-border-radius: 4px 4px 0 0;
1931
+ border-radius: 4px 4px 0 0;
1932
+ }
1933
+ .tabs > li > a:hover {
1934
+ text-decoration: none;
1935
+ background-color: #eee;
1936
+ border-color: #eee #eee #ddd;
1937
+ }
1938
+ .tabs .active > a, .tabs .active > a:hover {
1939
+ color: #808080;
1940
+ background-color: #ffffff;
1941
+ border: 1px solid #ddd;
1942
+ border-bottom-color: transparent;
1943
+ cursor: default;
1944
+ }
1945
+ .tabbable {
1946
+ margin-bottom: 18px;
1947
+ }
1948
+ .tabbable .tabs {
1949
+ margin-bottom: 0;
1950
+ border-bottom: 0;
1951
+ }
1952
+ .tabbable .tab-content {
1953
+ padding: 19px;
1954
+ border: 1px solid #ddd;
1955
+ }
1956
+ .tabbable.tabs-bottom .tabs > li {
1957
+ margin-top: -1px;
1958
+ margin-bottom: 0;
1959
+ }
1960
+ .tabbable.tabs-bottom .tabs > li > a {
1961
+ -webkit-border-radius: 0 0 4px 4px;
1962
+ -moz-border-radius: 0 0 4px 4px;
1963
+ border-radius: 0 0 4px 4px;
1964
+ }
1965
+ .tabbable.tabs-bottom .tabs > li > a:hover {
1966
+ border-bottom-color: transparent;
1967
+ border-top-color: #ddd;
1968
+ }
1969
+ .tabbable.tabs-bottom .tabs > .active > a, .tabbable.tabs-bottom .tabs > .active > a:hover {
1970
+ border-color: transparent #ddd #ddd #ddd;
1971
+ }
1972
+ .tabbable.tabs-left, .tabbable.tabs-right {
1973
+ zoom: 1;
1974
+ }
1975
+ .tabbable.tabs-left:before,
1976
+ .tabbable.tabs-right:before,
1977
+ .tabbable.tabs-left:after,
1978
+ .tabbable.tabs-right:after {
1979
+ display: table;
1980
+ *display: inline;
1981
+ content: "";
1982
+ zoom: 1;
1983
+ }
1984
+ .tabbable.tabs-left:after, .tabbable.tabs-right:after {
1985
+ clear: both;
1986
+ }
1987
+ .tabbable.tabs-left .tabs, .tabbable.tabs-right .tabs {
1988
+ width: 100px;
1989
+ }
1990
+ .tabbable.tabs-left .tabs > li, .tabbable.tabs-right .tabs > li {
1991
+ float: none;
1992
+ margin-bottom: -1px;
1993
+ }
1994
+ .tabbable.tabs-left .tabs > li > a, .tabbable.tabs-right .tabs > li > a {
1995
+ margin-bottom: 2px;
1996
+ }
1997
+ .tabbable.tabs-left .tabs > li > a:hover, .tabbable.tabs-right .tabs > li > a:hover {
1998
+ border-color: transparent;
1999
+ }
2000
+ .tabbable.tabs-left .tab-content {
2001
+ margin-left: 100px;
2002
+ }
2003
+ .tabbable.tabs-left .tabs {
2004
+ float: left;
2005
+ }
2006
+ .tabbable.tabs-left .tabs > li {
2007
+ margin-right: -1px;
2008
+ }
2009
+ .tabbable.tabs-left .tabs > li > a {
2010
+ margin-right: 0;
2011
+ -webkit-border-radius: 4px 0 0 4px;
2012
+ -moz-border-radius: 4px 0 0 4px;
2013
+ border-radius: 4px 0 0 4px;
2014
+ }
2015
+ .tabbable.tabs-left .tabs > li > a:hover {
2016
+ border-right-color: #ddd;
2017
+ }
2018
+ .tabbable.tabs-left .tabs .active > a, .tabbable.tabs-left .tabs .active > a:hover {
2019
+ border-color: #ddd;
2020
+ border-right-color: transparent;
2021
+ }
2022
+ .tabbable.tabs-right .tab-content {
2023
+ margin-right: 100px;
2024
+ }
2025
+ .tabbable.tabs-right .tabs {
2026
+ float: right;
2027
+ }
2028
+ .tabbable.tabs-right .tabs > li {
2029
+ margin-left: -1px;
2030
+ }
2031
+ .tabbable.tabs-right .tabs > li > a {
2032
+ margin-left: 0;
2033
+ -webkit-border-radius: 0 4px 4px 0;
2034
+ -moz-border-radius: 0 4px 4px 0;
2035
+ border-radius: 0 4px 4px 0;
2036
+ }
2037
+ .tabbable.tabs-right .tabs > li > a:hover {
2038
+ border-left-color: #ddd;
2039
+ }
2040
+ .tabbable.tabs-right .tabs .active > a, .tabbable.tabs-right .tabs .active > a:hover {
2041
+ border-color: #ddd;
2042
+ border-left-color: transparent;
2043
+ }
2044
+ .tabs .menu-dropdown, .tabs .dropdown-menu {
2045
+ top: 35px;
2046
+ border-width: 1px;
2047
+ -webkit-border-radius: 0 6px 6px 6px;
2048
+ -moz-border-radius: 0 6px 6px 6px;
2049
+ border-radius: 0 6px 6px 6px;
2050
+ }
2051
+ .tabs a.menu:after, .tabs .dropdown-toggle:after {
2052
+ border-top-color: #999;
2053
+ margin-top: 15px;
2054
+ margin-left: 5px;
2055
+ }
2056
+ .tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle {
2057
+ border-color: #999;
2058
+ }
2059
+ .tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
2060
+ border-top-color: #555;
2061
+ }
2062
+ .pills a {
2063
+ padding: 0 15px;
2064
+ margin: 5px 3px 5px 0;
2065
+ line-height: 30px;
2066
+ text-shadow: 0 1px 1px #ffffff;
2067
+ -webkit-border-radius: 15px;
2068
+ -moz-border-radius: 15px;
2069
+ border-radius: 15px;
2070
+ }
2071
+ .pills a:hover {
2072
+ color: #ffffff;
2073
+ text-decoration: none;
2074
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
2075
+ background-color: #00438a;
2076
+ }
2077
+ .pills .active a {
2078
+ color: #ffffff;
2079
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
2080
+ background-color: #0069d6;
2081
+ }
2082
+ .pills-vertical > li {
2083
+ float: none;
2084
+ }
2085
+ .tab-content > .tab-pane, .pill-content > .pill-pane {
2086
+ display: none;
2087
+ }
2088
+ .tab-content > .active, .pill-content > .active {
2089
+ display: block;
2090
+ }
2091
+ .step-nav {
2092
+ position: relative;
2093
+ margin: 0 0 18px;
2094
+ list-style: none;
2095
+ line-height: 30px;
2096
+ text-align: center;
2097
+ background-color: #f5f5f5;
2098
+ -webkit-border-radius: 15px;
2099
+ -moz-border-radius: 15px;
2100
+ border-radius: 15px;
2101
+ }
2102
+ .step-nav li {
2103
+ display: inline;
2104
+ color: #bfbfbf;
2105
+ }
2106
+ .step-nav .prev, .step-nav .next {
2107
+ position: absolute;
2108
+ top: 6px;
2109
+ }
2110
+ .step-nav .prev {
2111
+ left: 15px;
2112
+ }
2113
+ .step-nav .next {
2114
+ right: 15px;
2115
+ }
2116
+ .step-nav .dot {
2117
+ display: inline-block;
2118
+ width: 10px;
2119
+ height: 10px;
2120
+ margin: 0 3px;
2121
+ text-indent: -999em;
2122
+ background-color: #bfbfbf;
2123
+ -webkit-border-radius: 5px;
2124
+ -moz-border-radius: 5px;
2125
+ border-radius: 5px;
2126
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
2127
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
2128
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
2129
+ }
2130
+ .step-nav .dot:hover, .step-nav .active .dot {
2131
+ background-color: #404040;
2132
+ }
2133
+ .subnav {
2134
+ position: relative;
2135
+ background-color: #eeeeee;
2136
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#f5f5f5), to(#eeeeee));
2137
+ background-image: -moz-linear-gradient(top, #f5f5f5, #eeeeee);
2138
+ background-image: -ms-linear-gradient(top, #f5f5f5, #eeeeee);
2139
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #eeeeee));
2140
+ background-image: -webkit-linear-gradient(top, #f5f5f5, #eeeeee);
2141
+ background-image: -o-linear-gradient(top, #f5f5f5, #eeeeee);
2142
+ background-image: linear-gradient(top, #f5f5f5, #eeeeee);
2143
+ background-repeat: repeat-x;
2144
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#eeeeee', GradientType=0);
2145
+ -webkit-border-radius: 6px;
2146
+ -moz-border-radius: 6px;
2147
+ border-radius: 6px;
2148
+ }
2149
+ .subnav a {
2150
+ padding: 10px 15px;
2151
+ color: #0069d6;
2152
+ text-shadow: 0 1px 0 #fff;
2153
+ border-left: 1px solid #f9f9f9;
2154
+ border-right: 1px solid #e5e5e5;
2155
+ }
2156
+ .subnav a:hover {
2157
+ color: #00438a;
2158
+ background-color: #eee;
2159
+ }
2160
+ .subnav li:first-child a {
2161
+ border-left: 0;
2162
+ -webkit-border-radius: 6px 0 0 6px;
2163
+ -moz-border-radius: 6px 0 0 6px;
2164
+ border-radius: 6px 0 0 6px;
2165
+ }
2166
+ .subnav li:last-child a {
2167
+ border-right: 0;
2168
+ -webkit-border-radius: 0 6px 6px 0;
2169
+ -moz-border-radius: 0 6px 6px 0;
2170
+ border-radius: 0 6px 6px 0;
2171
+ }
2172
+ .subnav ul .active > a {
2173
+ color: #404040;
2174
+ background-color: #eee;
2175
+ }
2176
+ .breadcrumb {
2177
+ padding: 7px 14px;
2178
+ margin: 0 0 18px;
2179
+ background-color: #f5f5f5;
2180
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
2181
+ background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
2182
+ background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
2183
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
2184
+ background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
2185
+ background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
2186
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
2187
+ background-repeat: repeat-x;
2188
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
2189
+ border: 1px solid #ddd;
2190
+ -webkit-border-radius: 3px;
2191
+ -moz-border-radius: 3px;
2192
+ border-radius: 3px;
2193
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
2194
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
2195
+ box-shadow: inset 0 1px 0 #ffffff;
2196
+ }
2197
+ .breadcrumb li {
2198
+ display: inline;
2199
+ text-shadow: 0 1px 0 #ffffff;
2200
+ }
2201
+ .breadcrumb .divider {
2202
+ padding: 0 5px;
2203
+ color: #bfbfbf;
2204
+ }
2205
+ .breadcrumb .active a {
2206
+ color: #404040;
2207
+ }
2208
+ .pagination {
2209
+ height: 36px;
2210
+ margin: 18px 0;
2211
+ }
2212
+ .pagination ul {
2213
+ float: left;
2214
+ margin: 0;
2215
+ border: 1px solid #ddd;
2216
+ border: 1px solid rgba(0, 0, 0, 0.15);
2217
+ -webkit-border-radius: 3px;
2218
+ -moz-border-radius: 3px;
2219
+ border-radius: 3px;
2220
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2221
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2222
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2223
+ }
2224
+ .pagination li {
2225
+ display: inline;
2226
+ }
2227
+ .pagination a {
2228
+ float: left;
2229
+ padding: 0 14px;
2230
+ line-height: 34px;
2231
+ text-decoration: none;
2232
+ border-right: 1px solid;
2233
+ border-right-color: #ddd;
2234
+ border-right-color: rgba(0, 0, 0, 0.15);
2235
+ *border-right-color: #ddd;
2236
+ /* IE6-7 */
2237
+
2238
+ }
2239
+ .pagination a:hover, .pagination .active a {
2240
+ background-color: #c7eefe;
2241
+ }
2242
+ .pagination .disabled a, .pagination .disabled a:hover {
2243
+ color: #bfbfbf;
2244
+ background-color: transparent;
2245
+ }
2246
+ .pagination .next a {
2247
+ border: 0;
2248
+ }
2249
+ .modal-backdrop {
2250
+ position: fixed;
2251
+ top: 0;
2252
+ right: 0;
2253
+ bottom: 0;
2254
+ left: 0;
2255
+ z-index: 10000;
2256
+ background-color: #000000;
2257
+ }
2258
+ .modal-backdrop.fade {
2259
+ opacity: 0;
2260
+ }
2261
+ .modal-backdrop, .modal-backdrop.fade.in {
2262
+ filter: alpha(opacity=80);
2263
+ -moz-opacity: 0.8;
2264
+ opacity: 0.8;
2265
+ }
2266
+ .modal {
2267
+ position: fixed;
2268
+ top: 50%;
2269
+ left: 50%;
2270
+ z-index: 11000;
2271
+ width: 560px;
2272
+ margin: -250px 0 0 -250px;
2273
+ background-color: #ffffff;
2274
+ border: 1px solid #999;
2275
+ border: 1px solid rgba(0, 0, 0, 0.3);
2276
+ *border: 1px solid #999;
2277
+ /* IE6-7 */
2278
+
2279
+ -webkit-border-radius: 6px;
2280
+ -moz-border-radius: 6px;
2281
+ border-radius: 6px;
2282
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2283
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2284
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2285
+ -webkit-background-clip: padding-box;
2286
+ -moz-background-clip: padding-box;
2287
+ background-clip: padding-box;
2288
+ }
2289
+ .modal .close {
2290
+ margin-top: 7px;
2291
+ }
2292
+ .modal.fade {
2293
+ -webkit-transition: opacity .3s linear, top .3s ease-out;
2294
+ -moz-transition: opacity .3s linear, top .3s ease-out;
2295
+ -ms-transition: opacity .3s linear, top .3s ease-out;
2296
+ -o-transition: opacity .3s linear, top .3s ease-out;
2297
+ transition: opacity .3s linear, top .3s ease-out;
2298
+ top: -25%;
2299
+ }
2300
+ .modal.fade.in {
2301
+ top: 50%;
2302
+ }
2303
+ .modal-header {
2304
+ padding: 5px 15px;
2305
+ border-bottom: 1px solid #eee;
2306
+ }
2307
+ .modal-body {
2308
+ padding: 15px;
2309
+ }
2310
+ .modal-footer {
2311
+ padding: 14px 15px 15px;
2312
+ margin-bottom: 0;
2313
+ background-color: #f5f5f5;
2314
+ border-top: 1px solid #ddd;
2315
+ -webkit-border-radius: 0 0 6px 6px;
2316
+ -moz-border-radius: 0 0 6px 6px;
2317
+ border-radius: 0 0 6px 6px;
2318
+ -webkit-box-shadow: inset 0 1px 0 #ffffff;
2319
+ -moz-box-shadow: inset 0 1px 0 #ffffff;
2320
+ box-shadow: inset 0 1px 0 #ffffff;
2321
+ zoom: 1;
2322
+ }
2323
+ .modal-footer:before, .modal-footer:after {
2324
+ display: table;
2325
+ *display: inline;
2326
+ content: "";
2327
+ zoom: 1;
2328
+ }
2329
+ .modal-footer:after {
2330
+ clear: both;
2331
+ }
2332
+ .modal-footer .btn {
2333
+ float: right;
2334
+ margin-left: 5px;
2335
+ }
2336
+ .twipsy {
2337
+ position: absolute;
2338
+ z-index: 1000;
2339
+ display: block;
2340
+ visibility: visible;
2341
+ padding: 5px;
2342
+ font-size: 11px;
2343
+ filter: alpha(opacity=0);
2344
+ -moz-opacity: 0;
2345
+ opacity: 0;
2346
+ }
2347
+ .twipsy.in {
2348
+ filter: alpha(opacity=80);
2349
+ -moz-opacity: 0.8;
2350
+ opacity: 0.8;
2351
+ }
2352
+ .twipsy.above .twipsy-arrow {
2353
+ bottom: 0;
2354
+ left: 50%;
2355
+ margin-left: -5px;
2356
+ border-left: 5px solid transparent;
2357
+ border-right: 5px solid transparent;
2358
+ border-top: 5px solid #000000;
2359
+ }
2360
+ .twipsy.left .twipsy-arrow {
2361
+ top: 50%;
2362
+ right: 0;
2363
+ margin-top: -5px;
2364
+ border-top: 5px solid transparent;
2365
+ border-bottom: 5px solid transparent;
2366
+ border-left: 5px solid #000000;
2367
+ }
2368
+ .twipsy.below .twipsy-arrow {
2369
+ top: 0;
2370
+ left: 50%;
2371
+ margin-left: -5px;
2372
+ border-left: 5px solid transparent;
2373
+ border-right: 5px solid transparent;
2374
+ border-bottom: 5px solid #000000;
2375
+ }
2376
+ .twipsy.right .twipsy-arrow {
2377
+ top: 50%;
2378
+ left: 0;
2379
+ margin-top: -5px;
2380
+ border-top: 5px solid transparent;
2381
+ border-bottom: 5px solid transparent;
2382
+ border-right: 5px solid #000000;
2383
+ }
2384
+ .twipsy-inner {
2385
+ max-width: 200px;
2386
+ padding: 3px 8px;
2387
+ color: white;
2388
+ text-align: center;
2389
+ text-decoration: none;
2390
+ background-color: #000000;
2391
+ -webkit-border-radius: 4px;
2392
+ -moz-border-radius: 4px;
2393
+ border-radius: 4px;
2394
+ }
2395
+ .twipsy-arrow {
2396
+ position: absolute;
2397
+ width: 0;
2398
+ height: 0;
2399
+ }
2400
+ .popover {
2401
+ position: absolute;
2402
+ top: 0;
2403
+ left: 0;
2404
+ z-index: 1000;
2405
+ display: none;
2406
+ padding: 5px;
2407
+ }
2408
+ .popover.above .arrow {
2409
+ bottom: 0;
2410
+ left: 50%;
2411
+ margin-left: -5px;
2412
+ border-left: 5px solid transparent;
2413
+ border-right: 5px solid transparent;
2414
+ border-top: 5px solid #000000;
2415
+ }
2416
+ .popover.right .arrow {
2417
+ top: 50%;
2418
+ left: 0;
2419
+ margin-top: -5px;
2420
+ border-top: 5px solid transparent;
2421
+ border-bottom: 5px solid transparent;
2422
+ border-right: 5px solid #000000;
2423
+ }
2424
+ .popover.below .arrow {
2425
+ top: 0;
2426
+ left: 50%;
2427
+ margin-left: -5px;
2428
+ border-left: 5px solid transparent;
2429
+ border-right: 5px solid transparent;
2430
+ border-bottom: 5px solid #000000;
2431
+ }
2432
+ .popover.left .arrow {
2433
+ top: 50%;
2434
+ right: 0;
2435
+ margin-top: -5px;
2436
+ border-top: 5px solid transparent;
2437
+ border-bottom: 5px solid transparent;
2438
+ border-left: 5px solid #000000;
2439
+ }
2440
+ .popover .arrow {
2441
+ position: absolute;
2442
+ width: 0;
2443
+ height: 0;
2444
+ }
2445
+ .popover .inner {
2446
+ padding: 3px;
2447
+ width: 280px;
2448
+ overflow: hidden;
2449
+ background-color: #000000;
2450
+ background-color: rgba(0, 0, 0, 0.8);
2451
+ -webkit-border-radius: 6px;
2452
+ -moz-border-radius: 6px;
2453
+ border-radius: 6px;
2454
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2455
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2456
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2457
+ }
2458
+ .popover .title {
2459
+ padding: 9px 15px;
2460
+ line-height: 1;
2461
+ background-color: #f5f5f5;
2462
+ border-bottom: 1px solid #eee;
2463
+ -webkit-border-radius: 3px 3px 0 0;
2464
+ -moz-border-radius: 3px 3px 0 0;
2465
+ border-radius: 3px 3px 0 0;
2466
+ }
2467
+ .popover .content {
2468
+ padding: 14px;
2469
+ background-color: #ffffff;
2470
+ -webkit-border-radius: 0 0 3px 3px;
2471
+ -moz-border-radius: 0 0 3px 3px;
2472
+ border-radius: 0 0 3px 3px;
2473
+ -webkit-background-clip: padding-box;
2474
+ -moz-background-clip: padding-box;
2475
+ background-clip: padding-box;
2476
+ }
2477
+ .popover .content p, .popover .content ul, .popover .content ol {
2478
+ margin-bottom: 0;
2479
+ }
2480
+ .media-grid {
2481
+ margin-left: -20px;
2482
+ margin-bottom: 0;
2483
+ zoom: 1;
2484
+ }
2485
+ .media-grid:before, .media-grid:after {
2486
+ display: table;
2487
+ *display: inline;
2488
+ content: "";
2489
+ zoom: 1;
2490
+ }
2491
+ .media-grid:after {
2492
+ clear: both;
2493
+ }
2494
+ .media-grid li {
2495
+ display: inline;
2496
+ }
2497
+ .media-grid a {
2498
+ float: left;
2499
+ padding: 4px;
2500
+ margin: 0 0 20px 20px;
2501
+ border: 1px solid #ddd;
2502
+ -webkit-border-radius: 4px;
2503
+ -moz-border-radius: 4px;
2504
+ border-radius: 4px;
2505
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2506
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2507
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
2508
+ }
2509
+ .media-grid a img {
2510
+ display: block;
2511
+ }
2512
+ .media-grid a:hover {
2513
+ border-color: #0069d6;
2514
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2515
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2516
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
2517
+ }
2518
+ @media (max-width: 480px) {
2519
+ .container {
2520
+ width: auto;
2521
+ padding: 0 15px;
2522
+ }
2523
+ .row {
2524
+ margin-left: 0;
2525
+ }
2526
+ [class*="span"] {
2527
+ float: none;
2528
+ display: block;
2529
+ width: auto;
2530
+ margin: 0;
2531
+ }
2532
+ .modal {
2533
+ width: auto;
2534
+ margin: 0;
2535
+ }
2536
+ .form-horizontal .control-group > label {
2537
+ float: none;
2538
+ width: auto;
2539
+ padding-top: 0;
2540
+ text-align: left;
2541
+ }
2542
+ .form-horizontal .controls {
2543
+ margin-left: 0;
2544
+ }
2545
+ .form-horizontal .control-list {
2546
+ padding-top: 0;
2547
+ }
2548
+ .form-horizontal .form-actions {
2549
+ padding-left: 0;
2550
+ }
2551
+ }
2552
+ @media (min-width: 480px) and (max-width: 768px) {
2553
+ .container {
2554
+ width: auto;
2555
+ padding: 0 10px;
2556
+ }
2557
+ .row {
2558
+ margin-left: 0;
2559
+ }
2560
+ [class*="span"] {
2561
+ float: none;
2562
+ display: block;
2563
+ width: auto;
2564
+ margin: 0;
2565
+ }
2566
+ }
2567
+ @media (min-width: 768px) and (max-width: 940px) {
2568
+ .container {
2569
+ width: 748px;
2570
+ }
2571
+ .span1 {
2572
+ width: 44px;
2573
+ }
2574
+ .span2 {
2575
+ width: 108px;
2576
+ }
2577
+ .span3 {
2578
+ width: 172px;
2579
+ }
2580
+ .span4 {
2581
+ width: 236px;
2582
+ }
2583
+ .span5 {
2584
+ width: 300px;
2585
+ }
2586
+ .span6 {
2587
+ width: 364px;
2588
+ }
2589
+ .span7 {
2590
+ width: 428px;
2591
+ }
2592
+ .span8 {
2593
+ width: 492px;
2594
+ }
2595
+ .span9 {
2596
+ width: 556px;
2597
+ }
2598
+ .span10 {
2599
+ width: 620px;
2600
+ }
2601
+ .span11 {
2602
+ width: 684px;
2603
+ }
2604
+ .span12 {
2605
+ width: 748px;
2606
+ }
2607
+ .offset1 {
2608
+ margin-left: 64px;
2609
+ }
2610
+ .offset2 {
2611
+ margin-left: 128px;
2612
+ }
2613
+ .offset3 {
2614
+ margin-left: 192px;
2615
+ }
2616
+ .offset4 {
2617
+ margin-left: 256px;
2618
+ }
2619
+ .offset5 {
2620
+ margin-left: 320px;
2621
+ }
2622
+ .offset6 {
2623
+ margin-left: 384px;
2624
+ }
2625
+ .offset7 {
2626
+ margin-left: 448px;
2627
+ }
2628
+ .offset8 {
2629
+ margin-left: 512px;
2630
+ }
2631
+ .offset9 {
2632
+ margin-left: 576px;
2633
+ }
2634
+ .offset10 {
2635
+ margin-left: 640px;
2636
+ }
2637
+ .offset11 {
2638
+ margin-left: 704px;
2639
+ }
2640
+ .offset12 {
2641
+ margin-left: 768px;
2642
+ }
2643
+ }
2644
+ /*
2645
+ // LARGE DESKTOP & UP
2646
+ // ------------------
2647
+
2648
+ @media (min-width: 1210px) {
2649
+
2650
+ // Reset grid variables
2651
+ @gridColumns: 12;
2652
+ @gridColumnWidth: 70px;
2653
+ @gridGutterWidth: 30px;
2654
+ @siteWidth: 1170px;
2655
+
2656
+ // Bring grid mixins to recalculate widths
2657
+ .columns(@columnSpan: 1) {
2658
+ width: (@gridColumnWidth * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1));
2659
+ }
2660
+ .offset(@columnOffset: 1) {
2661
+ margin-left: (@gridColumnWidth * @columnOffset) + (@gridGutterWidth * (@columnOffset - 1)) + @gridGutterWidth;
2662
+ }
2663
+
2664
+ .container {
2665
+ width: @siteWidth;
2666
+ }
2667
+ [class*="span"] {
2668
+ margin-left: @gridGutterWidth;
2669
+ }
2670
+
2671
+ // Default columns
2672
+ .span1 { .columns(1); }
2673
+ .span2 { .columns(2); }
2674
+ .span3 { .columns(3); }
2675
+ .span4 { .columns(4); }
2676
+ .span5 { .columns(5); }
2677
+ .span6 { .columns(6); }
2678
+ .span7 { .columns(7); }
2679
+ .span8 { .columns(8); }
2680
+ .span9 { .columns(9); }
2681
+ .span10 { .columns(10); }
2682
+ .span11 { .columns(11); }
2683
+ .span12 { .columns(12); }
2684
+
2685
+ // Offset column options
2686
+ .offset1 { .offset(1); }
2687
+ .offset2 { .offset(2); }
2688
+ .offset3 { .offset(3); }
2689
+ .offset4 { .offset(4); }
2690
+ .offset5 { .offset(5); }
2691
+ .offset6 { .offset(6); }
2692
+ .offset7 { .offset(7); }
2693
+ .offset8 { .offset(8); }
2694
+ .offset9 { .offset(9); }
2695
+ .offset10 { .offset(10); }
2696
+ .offset11 { .offset(11); }
2697
+ .offset12 { .offset(12); }
2698
+
2699
+ }
2700
+ */