jombo 0.0.1.beta11 → 0.0.1.beta12
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.
- data/lib/jombo/version.rb +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-carousel.js +74 -4
- data/vendor/assets/javascripts/bootstrap/bootstrap-dropdown.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-twipsy.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js +239 -0
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css +1807 -1439
- metadata +3 -2
data/lib/jombo/version.rb
CHANGED
@@ -25,12 +25,63 @@
|
|
25
25
|
/* CAROUSEL CLASS DEFINITION
|
26
26
|
* ========================= */
|
27
27
|
|
28
|
-
var Carousel = function () {
|
29
|
-
|
28
|
+
var Carousel = function (element, options) {
|
29
|
+
this.$element = $(element)
|
30
|
+
this.options = $.extend({}, $.fn.carousel.defaults, options)
|
31
|
+
this.options.slide && this.slide(this.options.slide)
|
30
32
|
}
|
31
33
|
|
32
34
|
Carousel.prototype = {
|
33
35
|
|
36
|
+
cycle: function () {
|
37
|
+
this.interval = setInterval($.proxy(this.next, this), this.options.interval)
|
38
|
+
return this
|
39
|
+
}
|
40
|
+
|
41
|
+
, pause: function () {
|
42
|
+
clearInterval(this.interval)
|
43
|
+
return this
|
44
|
+
}
|
45
|
+
|
46
|
+
, next: function () {
|
47
|
+
return this.slide('next')
|
48
|
+
}
|
49
|
+
|
50
|
+
, prev: function () {
|
51
|
+
return this.slide('prev')
|
52
|
+
}
|
53
|
+
|
54
|
+
, slide: function (type) {
|
55
|
+
var $active = this.$element.find('.active')
|
56
|
+
, $next = $active[type]()
|
57
|
+
, isCycling = this.interval
|
58
|
+
, direction = type == 'next' ? 'left' : 'right'
|
59
|
+
, fallback = type == 'next' ? 'first' : 'last'
|
60
|
+
, that = this
|
61
|
+
|
62
|
+
isCycling && this.pause()
|
63
|
+
|
64
|
+
$next = $next.length ? $next : this.$element.find('.item')[fallback]()
|
65
|
+
|
66
|
+
if (!$.support.transition && this.$element.hasClass('slide')) {
|
67
|
+
$active.removeClass('active')
|
68
|
+
$next.addClass('active')
|
69
|
+
} else {
|
70
|
+
$next.addClass(type)
|
71
|
+
$next[0].offsetWidth // force reflow
|
72
|
+
$active.addClass(direction)
|
73
|
+
$next.addClass(direction)
|
74
|
+
this.$element.one($.support.transition.end, function () {
|
75
|
+
$next.removeClass([type, direction].join(' ')).addClass('active')
|
76
|
+
$active.removeClass(['active', direction].join(' '))
|
77
|
+
})
|
78
|
+
}
|
79
|
+
|
80
|
+
isCycling && this.cycle()
|
81
|
+
|
82
|
+
return this
|
83
|
+
}
|
84
|
+
|
34
85
|
}
|
35
86
|
|
36
87
|
|
@@ -41,11 +92,30 @@
|
|
41
92
|
return this.each(function () {
|
42
93
|
var $this = $(this)
|
43
94
|
, data = $this.data('carousel')
|
44
|
-
|
45
|
-
if (
|
95
|
+
, options = typeof option == 'object' && option
|
96
|
+
if (!data) $this.data('carousel', (data = new Carousel(this, options)))
|
97
|
+
if (typeof option == 'string' || (option = options.slide)) data[option]()
|
98
|
+
else data.cycle()
|
46
99
|
})
|
47
100
|
}
|
48
101
|
|
102
|
+
$.fn.carousel.defaults = {
|
103
|
+
interval: 5000
|
104
|
+
}
|
105
|
+
|
49
106
|
$.fn.carousel.Constructor = Carousel
|
50
107
|
|
108
|
+
|
109
|
+
/* CAROUSEL DATA-API
|
110
|
+
* ================= */
|
111
|
+
|
112
|
+
$(function () {
|
113
|
+
$('body').on('click.carousel.data-api', '[data-slide]', function ( e ) {
|
114
|
+
var $this = $(this)
|
115
|
+
, $target = $($this.attr('data-target') || $this.attr('href'))
|
116
|
+
, options = !$target.data('modal') && $.extend({}, $target.data(), $this.data())
|
117
|
+
$target.carousel(options)
|
118
|
+
})
|
119
|
+
})
|
120
|
+
|
51
121
|
}( window.jQuery )
|
@@ -74,7 +74,7 @@
|
|
74
74
|
* =================================== */
|
75
75
|
|
76
76
|
$(function () {
|
77
|
-
$(
|
77
|
+
$(window).on('click.dropdown.data-api', clearMenus)
|
78
78
|
$('body').on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
79
79
|
})
|
80
80
|
|
@@ -0,0 +1,239 @@
|
|
1
|
+
/* =============================================================
|
2
|
+
* bootstrap-typeahead.js v2.0.0
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#collapsible
|
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
|
+
"use strict"
|
23
|
+
|
24
|
+
var Typeahead = function ( element, options ) {
|
25
|
+
this.$element = $(element)
|
26
|
+
this.options = $.extend({}, $.fn.typeahead.defaults, options)
|
27
|
+
this.$menu = $(this.options.menu).appendTo('body')
|
28
|
+
this.data = this.options.data
|
29
|
+
this.shown = false
|
30
|
+
this.listen()
|
31
|
+
}
|
32
|
+
|
33
|
+
Typeahead.prototype = {
|
34
|
+
|
35
|
+
constructor: Typeahead
|
36
|
+
|
37
|
+
, matcher: function (item, query) {
|
38
|
+
return ~item.indexOf(query)
|
39
|
+
}
|
40
|
+
|
41
|
+
, select: function () {
|
42
|
+
var val = this.$menu.find('.active').attr('data-value')
|
43
|
+
this.$element.val(val)
|
44
|
+
return this.hide()
|
45
|
+
}
|
46
|
+
|
47
|
+
, show: function () {
|
48
|
+
var pos = $.extend({}, this.$element.offset(), {
|
49
|
+
height: this.$element[0].offsetHeight
|
50
|
+
})
|
51
|
+
|
52
|
+
this.$menu.css({
|
53
|
+
top: pos.top + pos.height
|
54
|
+
, left: pos.left
|
55
|
+
})
|
56
|
+
|
57
|
+
this.$menu.show()
|
58
|
+
this.shown = true
|
59
|
+
return this
|
60
|
+
}
|
61
|
+
|
62
|
+
, hide: function () {
|
63
|
+
this.$menu.hide()
|
64
|
+
this.shown = false
|
65
|
+
return this
|
66
|
+
}
|
67
|
+
|
68
|
+
, lookup: function (event) {
|
69
|
+
var query = this.$element.val()
|
70
|
+
, that = this
|
71
|
+
, items
|
72
|
+
|
73
|
+
if (!query) {
|
74
|
+
return this.shown ? this.hide() : this
|
75
|
+
}
|
76
|
+
|
77
|
+
items = this.data.filter(function (item) {
|
78
|
+
if (that.matcher(item, query)) return item
|
79
|
+
})
|
80
|
+
|
81
|
+
if (!items.length) {
|
82
|
+
return this.shown ? this.hide() : this
|
83
|
+
}
|
84
|
+
|
85
|
+
return this.render(items.slice(0, this.options.items)).show()
|
86
|
+
}
|
87
|
+
|
88
|
+
, render: function (items) {
|
89
|
+
var that = this
|
90
|
+
|
91
|
+
items = $(items).map(function (i, item) {
|
92
|
+
i = $(that.options.item).attr('data-value', item)
|
93
|
+
i.find('a').text(item)
|
94
|
+
return i[0]
|
95
|
+
})
|
96
|
+
|
97
|
+
items.first().addClass('active')
|
98
|
+
this.$menu.html(items)
|
99
|
+
return this
|
100
|
+
}
|
101
|
+
|
102
|
+
, next: function (event) {
|
103
|
+
var active = this.$menu.find('.active').removeClass('active')
|
104
|
+
, next = active.next()
|
105
|
+
|
106
|
+
if (!next.length) {
|
107
|
+
next = $(this.$menu.find('li')[0])
|
108
|
+
}
|
109
|
+
|
110
|
+
next.addClass('active')
|
111
|
+
}
|
112
|
+
|
113
|
+
, prev: function (event) {
|
114
|
+
var active = this.$menu.find('.active').removeClass('active')
|
115
|
+
, prev = active.prev()
|
116
|
+
|
117
|
+
if (!prev.length) {
|
118
|
+
prev = this.$menu.find('li').last()
|
119
|
+
}
|
120
|
+
|
121
|
+
prev.addClass('active')
|
122
|
+
}
|
123
|
+
|
124
|
+
, keyup: function (e) {
|
125
|
+
e.stopPropagation()
|
126
|
+
e.preventDefault()
|
127
|
+
|
128
|
+
switch(e.keyCode) {
|
129
|
+
case 40: // down arrow
|
130
|
+
case 38: // up arrow
|
131
|
+
break
|
132
|
+
|
133
|
+
case 9: // tab
|
134
|
+
case 13: // enter
|
135
|
+
this.select()
|
136
|
+
break
|
137
|
+
|
138
|
+
case 27: // escape
|
139
|
+
this.hide()
|
140
|
+
break
|
141
|
+
|
142
|
+
default:
|
143
|
+
this.lookup()
|
144
|
+
}
|
145
|
+
|
146
|
+
}
|
147
|
+
|
148
|
+
, keypress: function (e) {
|
149
|
+
e.stopPropagation()
|
150
|
+
|
151
|
+
switch(e.keyCode) {
|
152
|
+
case 9: // tab
|
153
|
+
case 13: // enter
|
154
|
+
case 27: // escape
|
155
|
+
e.preventDefault()
|
156
|
+
break
|
157
|
+
|
158
|
+
case 38: // up arrow
|
159
|
+
e.preventDefault()
|
160
|
+
this.prev()
|
161
|
+
break
|
162
|
+
|
163
|
+
case 40: // down arrow
|
164
|
+
e.preventDefault()
|
165
|
+
this.next()
|
166
|
+
break
|
167
|
+
}
|
168
|
+
}
|
169
|
+
|
170
|
+
, blur: function (e) {
|
171
|
+
var that = this
|
172
|
+
e.stopPropagation()
|
173
|
+
e.preventDefault()
|
174
|
+
setTimeout(function () { that.hide() }, 150)
|
175
|
+
}
|
176
|
+
|
177
|
+
, click: function (e) {
|
178
|
+
e.stopPropagation()
|
179
|
+
e.preventDefault()
|
180
|
+
this.select()
|
181
|
+
}
|
182
|
+
|
183
|
+
, mouseenter: function (e) {
|
184
|
+
this.$menu.find('.active').removeClass('active')
|
185
|
+
$(e.currentTarget).addClass('active')
|
186
|
+
}
|
187
|
+
|
188
|
+
, listen: function () {
|
189
|
+
this.$element
|
190
|
+
.on('blur', $.proxy(this.blur, this))
|
191
|
+
.on('keypress', $.proxy(this.keypress, this))
|
192
|
+
.on('keyup', $.proxy(this.keyup, this))
|
193
|
+
|
194
|
+
if ($.browser.webkit || $.browser.msie) {
|
195
|
+
this.$element.on('keydown', $.proxy(this.keypress, this))
|
196
|
+
}
|
197
|
+
|
198
|
+
this.$menu
|
199
|
+
.on('click', $.proxy(this.click, this))
|
200
|
+
.on('mouseenter', 'li', $.proxy(this.mouseenter, this))
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
|
205
|
+
/* TYPEAHEAD PLUGIN DEFINITION
|
206
|
+
* =========================== */
|
207
|
+
|
208
|
+
$.fn.typeahead = function ( option ) {
|
209
|
+
return this.each(function () {
|
210
|
+
var $this = $(this)
|
211
|
+
, data = $this.data('typeahead')
|
212
|
+
, options = typeof option == 'object' && option
|
213
|
+
if (!data) $this.data('typeahead', (data = new Typeahead(this, options)))
|
214
|
+
if (typeof option == 'string') data[option]()
|
215
|
+
})
|
216
|
+
}
|
217
|
+
|
218
|
+
$.fn.typeahead.defaults = {
|
219
|
+
items: 8
|
220
|
+
, menu: '<ul class="typeahead dropdown-menu"></ul>'
|
221
|
+
, item: '<li><a href="#"></a></li>'
|
222
|
+
}
|
223
|
+
|
224
|
+
$.fn.typeahead.Constructor = Typeahead
|
225
|
+
|
226
|
+
|
227
|
+
/* TYPEAHEAD DATA-API
|
228
|
+
* ================== */
|
229
|
+
|
230
|
+
$(function () {
|
231
|
+
$('body').on('focus.typeahead.data-api', '[data-provide="typeahead"]', function (e) {
|
232
|
+
var $this = $(this)
|
233
|
+
if ($this.data('typeahead')) return
|
234
|
+
e.preventDefault()
|
235
|
+
$this.typeahead($this.data())
|
236
|
+
})
|
237
|
+
})
|
238
|
+
|
239
|
+
}( window.jQuery )
|
@@ -6,7 +6,7 @@
|
|
6
6
|
* http://www.apache.org/licenses/LICENSE-2.0
|
7
7
|
*
|
8
8
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
-
* Date:
|
9
|
+
* Date: Sun Jan 8 02:58:37 PST 2012
|
10
10
|
*/
|
11
11
|
html, body {
|
12
12
|
margin: 0;
|
@@ -175,7 +175,7 @@ body {
|
|
175
175
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
176
176
|
font-size: 13px;
|
177
177
|
line-height: 18px;
|
178
|
-
color: #
|
178
|
+
color: #555555;
|
179
179
|
background-color: #ffffff;
|
180
180
|
}
|
181
181
|
.container {
|
@@ -209,30 +209,36 @@ body {
|
|
209
209
|
.fluid-container:after {
|
210
210
|
clear: both;
|
211
211
|
}
|
212
|
-
.fluid-sidebar
|
212
|
+
.fluid-sidebar {
|
213
213
|
width: 220px;
|
214
|
+
margin: 0 20px 18px;
|
214
215
|
}
|
215
|
-
.
|
216
|
+
.sidebar-left {
|
217
|
+
padding-left: 260px;
|
218
|
+
}
|
219
|
+
.sidebar-right {
|
220
|
+
padding-right: 260px;
|
221
|
+
}
|
222
|
+
.sidebar-left .fluid-sidebar {
|
216
223
|
float: left;
|
224
|
+
margin-left: -240px;
|
217
225
|
}
|
218
|
-
.
|
226
|
+
.sidebar-right .fluid-sidebar {
|
219
227
|
float: right;
|
228
|
+
margin-right: -240px;
|
220
229
|
}
|
221
230
|
.fluid-content {
|
222
|
-
|
223
|
-
|
224
|
-
.fluid-container.reverse .fluid-content {
|
225
|
-
margin-left: 0;
|
226
|
-
margin-right: 240px;
|
231
|
+
float: left;
|
232
|
+
width: 100%;
|
227
233
|
}
|
228
234
|
a {
|
229
235
|
font-weight: inherit;
|
230
236
|
line-height: inherit;
|
231
|
-
color: #
|
237
|
+
color: #0088cc;
|
232
238
|
text-decoration: none;
|
233
239
|
}
|
234
240
|
a:hover {
|
235
|
-
color: #
|
241
|
+
color: #005580;
|
236
242
|
text-decoration: underline;
|
237
243
|
}
|
238
244
|
.pull-right {
|
@@ -261,7 +267,6 @@ a:hover {
|
|
261
267
|
clear: both;
|
262
268
|
}
|
263
269
|
[class*="span"] {
|
264
|
-
display: inline;
|
265
270
|
float: left;
|
266
271
|
margin-left: 20px;
|
267
272
|
}
|
@@ -342,7 +347,7 @@ p {
|
|
342
347
|
}
|
343
348
|
p small {
|
344
349
|
font-size: 11px;
|
345
|
-
color: #
|
350
|
+
color: #999999;
|
346
351
|
}
|
347
352
|
h1,
|
348
353
|
h2,
|
@@ -351,7 +356,7 @@ h4,
|
|
351
356
|
h5,
|
352
357
|
h6 {
|
353
358
|
font-weight: bold;
|
354
|
-
color: #
|
359
|
+
color: #333333;
|
355
360
|
text-rendering: optimizelegibility;
|
356
361
|
}
|
357
362
|
h1 small,
|
@@ -360,7 +365,7 @@ h3 small,
|
|
360
365
|
h4 small,
|
361
366
|
h5 small,
|
362
367
|
h6 small {
|
363
|
-
color: #
|
368
|
+
color: #999999;
|
364
369
|
}
|
365
370
|
h1 {
|
366
371
|
font-size: 30px;
|
@@ -383,21 +388,21 @@ h3 {
|
|
383
388
|
h3 small {
|
384
389
|
font-size: 14px;
|
385
390
|
}
|
391
|
+
h4, h5, h6 {
|
392
|
+
line-height: 18px;
|
393
|
+
}
|
386
394
|
h4 {
|
387
|
-
font-size:
|
388
|
-
line-height: 36px;
|
395
|
+
font-size: 14px;
|
389
396
|
}
|
390
397
|
h4 small {
|
391
398
|
font-size: 12px;
|
392
399
|
}
|
393
400
|
h5 {
|
394
|
-
font-size:
|
395
|
-
line-height: 18px;
|
401
|
+
font-size: 12px;
|
396
402
|
}
|
397
403
|
h6 {
|
398
|
-
font-size:
|
399
|
-
|
400
|
-
color: #bfbfbf;
|
404
|
+
font-size: 11px;
|
405
|
+
color: #999999;
|
401
406
|
text-transform: uppercase;
|
402
407
|
}
|
403
408
|
ul, ol {
|
@@ -417,7 +422,7 @@ ol {
|
|
417
422
|
}
|
418
423
|
li {
|
419
424
|
line-height: 18px;
|
420
|
-
color: #
|
425
|
+
color: #555555;
|
421
426
|
}
|
422
427
|
ul.unstyled {
|
423
428
|
margin-left: 0;
|
@@ -436,7 +441,7 @@ dl dd {
|
|
436
441
|
margin-left: 9px;
|
437
442
|
}
|
438
443
|
hr {
|
439
|
-
margin:
|
444
|
+
margin: 18px 0;
|
440
445
|
border: 0;
|
441
446
|
border-top: 1px solid #e5e5e5;
|
442
447
|
border-bottom: 1px solid #fff;
|
@@ -451,7 +456,7 @@ em {
|
|
451
456
|
line-height: inherit;
|
452
457
|
}
|
453
458
|
.muted {
|
454
|
-
color: #
|
459
|
+
color: #999999;
|
455
460
|
}
|
456
461
|
abbr {
|
457
462
|
font-size: 90%;
|
@@ -473,13 +478,17 @@ blockquote p {
|
|
473
478
|
blockquote small {
|
474
479
|
display: block;
|
475
480
|
line-height: 18px;
|
476
|
-
color: #
|
481
|
+
color: #999999;
|
477
482
|
}
|
478
483
|
blockquote small:before {
|
479
484
|
content: '\2014 \00A0';
|
480
485
|
}
|
481
486
|
blockquote.pull-right {
|
482
487
|
float: right;
|
488
|
+
padding-left: 0;
|
489
|
+
padding-right: 15px;
|
490
|
+
border-left: 0;
|
491
|
+
border-right: 5px solid #eee;
|
483
492
|
}
|
484
493
|
blockquote.pull-right p, blockquote.pull-right small {
|
485
494
|
text-align: right;
|
@@ -491,9 +500,9 @@ address {
|
|
491
500
|
}
|
492
501
|
code, pre {
|
493
502
|
padding: 0 3px 2px;
|
494
|
-
font-family:
|
503
|
+
font-family: Menlo, Monaco, "Courier New", monospace;
|
495
504
|
font-size: 12px;
|
496
|
-
color: #
|
505
|
+
color: #333333;
|
497
506
|
-webkit-border-radius: 3px;
|
498
507
|
-moz-border-radius: 3px;
|
499
508
|
border-radius: 3px;
|
@@ -511,9 +520,9 @@ pre {
|
|
511
520
|
background-color: #f5f5f5;
|
512
521
|
border: 1px solid #ccc;
|
513
522
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
514
|
-
-webkit-border-radius:
|
515
|
-
-moz-border-radius:
|
516
|
-
border-radius:
|
523
|
+
-webkit-border-radius: 4px;
|
524
|
+
-moz-border-radius: 4px;
|
525
|
+
border-radius: 4px;
|
517
526
|
white-space: pre;
|
518
527
|
white-space: pre-wrap;
|
519
528
|
word-break: break-all;
|
@@ -534,8 +543,9 @@ legend {
|
|
534
543
|
margin-bottom: 27px;
|
535
544
|
font-size: 19.5px;
|
536
545
|
line-height: 36px;
|
537
|
-
color: #
|
546
|
+
color: #333333;
|
538
547
|
border-bottom: 1px solid #eee;
|
548
|
+
-webkit-margin-collapse: separate;
|
539
549
|
}
|
540
550
|
label,
|
541
551
|
input,
|
@@ -549,19 +559,20 @@ textarea {
|
|
549
559
|
label {
|
550
560
|
display: block;
|
551
561
|
margin-bottom: 5px;
|
552
|
-
color: #
|
562
|
+
color: #333333;
|
553
563
|
}
|
554
564
|
input,
|
555
565
|
textarea,
|
556
566
|
select,
|
557
567
|
.uneditable-input {
|
558
|
-
display:
|
568
|
+
display: block;
|
559
569
|
width: 210px;
|
560
570
|
height: 18px;
|
561
571
|
padding: 4px;
|
572
|
+
margin-bottom: 9px;
|
562
573
|
font-size: 13px;
|
563
574
|
line-height: 18px;
|
564
|
-
color: #
|
575
|
+
color: #555555;
|
565
576
|
border: 1px solid #ccc;
|
566
577
|
-webkit-border-radius: 3px;
|
567
578
|
-moz-border-radius: 3px;
|
@@ -601,9 +612,12 @@ select, input[type=file] {
|
|
601
612
|
line-height: 27px;
|
602
613
|
}
|
603
614
|
select {
|
615
|
+
width: 220px;
|
616
|
+
padding: 0;
|
617
|
+
vertical-align: middle;
|
604
618
|
background-color: #ffffff;
|
605
619
|
}
|
606
|
-
select[multiple] {
|
620
|
+
select[multiple], select[size] {
|
607
621
|
height: inherit;
|
608
622
|
}
|
609
623
|
input[type=image] {
|
@@ -614,10 +628,27 @@ input[type=image] {
|
|
614
628
|
textarea {
|
615
629
|
height: auto;
|
616
630
|
}
|
631
|
+
.radio, .checkbox {
|
632
|
+
padding-left: 18px;
|
633
|
+
}
|
634
|
+
.radio input[type=radio], .checkbox input[type=checkbox] {
|
635
|
+
float: left;
|
636
|
+
margin-left: -18px;
|
637
|
+
}
|
638
|
+
.controls > .radio:first-child, .controls > .checkbox:first-child {
|
639
|
+
padding-top: 6px;
|
640
|
+
}
|
641
|
+
.radio.inline, .checkbox.inline {
|
642
|
+
display: inline-block;
|
643
|
+
margin-bottom: 0;
|
644
|
+
}
|
645
|
+
.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
|
646
|
+
margin-left: 10px;
|
647
|
+
}
|
617
648
|
input, textarea {
|
618
|
-
-webkit-box-shadow: inset 0 1px
|
619
|
-
-moz-box-shadow: inset 0 1px
|
620
|
-
box-shadow: inset 0 1px
|
649
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
650
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
651
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
|
621
652
|
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
622
653
|
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
|
623
654
|
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
|
@@ -626,9 +657,9 @@ input, textarea {
|
|
626
657
|
}
|
627
658
|
input:focus, textarea:focus {
|
628
659
|
border-color: rgba(82, 168, 236, 0.8);
|
629
|
-
-webkit-box-shadow: inset 0 1px
|
630
|
-
-moz-box-shadow: inset 0 1px
|
631
|
-
box-shadow: inset 0 1px
|
660
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
|
661
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
|
662
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
|
632
663
|
outline: 0;
|
633
664
|
}
|
634
665
|
input[type=file]:focus, input[type=checkbox]:focus, select:focus {
|
@@ -655,149 +686,84 @@ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
|
|
655
686
|
.input-xxlarge {
|
656
687
|
width: 530px;
|
657
688
|
}
|
658
|
-
input
|
659
|
-
|
660
|
-
|
661
|
-
.uneditable-input
|
662
|
-
display: inline-block;
|
689
|
+
input[class*="span"],
|
690
|
+
select[class*="span"],
|
691
|
+
textarea[class*="span"],
|
692
|
+
.uneditable-input {
|
663
693
|
float: none;
|
664
|
-
width: 50px;
|
665
694
|
margin-left: 0;
|
666
695
|
}
|
667
|
-
input.
|
668
|
-
|
669
|
-
|
670
|
-
.uneditable-input.span2 {
|
671
|
-
display: inline-block;
|
672
|
-
float: none;
|
696
|
+
input.span1, textarea.span1, .uneditable-input.span1 {
|
697
|
+
width: 50px;
|
698
|
+
}
|
699
|
+
input.span2, textarea.span2, .uneditable-input.span2 {
|
673
700
|
width: 130px;
|
674
|
-
margin-left: 0;
|
675
701
|
}
|
676
|
-
input.span3,
|
677
|
-
textarea.span3,
|
678
|
-
select.span3,
|
679
|
-
.uneditable-input.span3 {
|
680
|
-
display: inline-block;
|
681
|
-
float: none;
|
702
|
+
input.span3, textarea.span3, .uneditable-input.span3 {
|
682
703
|
width: 210px;
|
683
|
-
margin-left: 0;
|
684
704
|
}
|
685
|
-
input.span4,
|
686
|
-
textarea.span4,
|
687
|
-
select.span4,
|
688
|
-
.uneditable-input.span4 {
|
689
|
-
display: inline-block;
|
690
|
-
float: none;
|
705
|
+
input.span4, textarea.span4, .uneditable-input.span4 {
|
691
706
|
width: 290px;
|
692
|
-
margin-left: 0;
|
693
707
|
}
|
694
|
-
input.span5,
|
695
|
-
textarea.span5,
|
696
|
-
select.span5,
|
697
|
-
.uneditable-input.span5 {
|
698
|
-
display: inline-block;
|
699
|
-
float: none;
|
708
|
+
input.span5, textarea.span5, .uneditable-input.span5 {
|
700
709
|
width: 370px;
|
701
|
-
margin-left: 0;
|
702
710
|
}
|
703
|
-
input.span6,
|
704
|
-
textarea.span6,
|
705
|
-
select.span6,
|
706
|
-
.uneditable-input.span6 {
|
707
|
-
display: inline-block;
|
708
|
-
float: none;
|
711
|
+
input.span6, textarea.span6, .uneditable-input.span6 {
|
709
712
|
width: 450px;
|
710
|
-
margin-left: 0;
|
711
713
|
}
|
712
|
-
input.span7,
|
713
|
-
textarea.span7,
|
714
|
-
select.span7,
|
715
|
-
.uneditable-input.span7 {
|
716
|
-
display: inline-block;
|
717
|
-
float: none;
|
714
|
+
input.span7, textarea.span7, .uneditable-input.span7 {
|
718
715
|
width: 530px;
|
719
|
-
margin-left: 0;
|
720
716
|
}
|
721
|
-
input.span8,
|
722
|
-
textarea.span8,
|
723
|
-
select.span8,
|
724
|
-
.uneditable-input.span8 {
|
725
|
-
display: inline-block;
|
726
|
-
float: none;
|
717
|
+
input.span8, textarea.span8, .uneditable-input.span8 {
|
727
718
|
width: 610px;
|
728
|
-
margin-left: 0;
|
729
719
|
}
|
730
|
-
input.span9,
|
731
|
-
textarea.span9,
|
732
|
-
select.span9,
|
733
|
-
.uneditable-input.span9 {
|
734
|
-
display: inline-block;
|
735
|
-
float: none;
|
720
|
+
input.span9, textarea.span9, .uneditable-input.span9 {
|
736
721
|
width: 690px;
|
737
|
-
margin-left: 0;
|
738
722
|
}
|
739
|
-
input.span10,
|
740
|
-
textarea.span10,
|
741
|
-
select.span10,
|
742
|
-
.uneditable-input.span10 {
|
743
|
-
display: inline-block;
|
744
|
-
float: none;
|
723
|
+
input.span10, textarea.span10, .uneditable-input.span10 {
|
745
724
|
width: 770px;
|
746
|
-
margin-left: 0;
|
747
725
|
}
|
748
|
-
input.span11,
|
749
|
-
textarea.span11,
|
750
|
-
select.span11,
|
751
|
-
.uneditable-input.span11 {
|
752
|
-
display: inline-block;
|
753
|
-
float: none;
|
726
|
+
input.span11, textarea.span11, .uneditable-input.span11 {
|
754
727
|
width: 850px;
|
755
|
-
margin-left: 0;
|
756
728
|
}
|
757
|
-
input.span12,
|
758
|
-
textarea.span12,
|
759
|
-
select.span12,
|
760
|
-
.uneditable-input.span12 {
|
761
|
-
display: inline-block;
|
762
|
-
float: none;
|
729
|
+
input.span12, textarea.span12, .uneditable-input.span12 {
|
763
730
|
width: 930px;
|
764
|
-
margin-left: 0;
|
765
731
|
}
|
766
|
-
|
767
|
-
|
768
|
-
select.span13,
|
769
|
-
.uneditable-input.span13 {
|
770
|
-
display: inline-block;
|
771
|
-
float: none;
|
772
|
-
width: 1010px;
|
773
|
-
margin-left: 0;
|
732
|
+
select.span1 {
|
733
|
+
width: 70px;
|
774
734
|
}
|
775
|
-
|
776
|
-
|
777
|
-
select.span14,
|
778
|
-
.uneditable-input.span14 {
|
779
|
-
display: inline-block;
|
780
|
-
float: none;
|
781
|
-
width: 1090px;
|
782
|
-
margin-left: 0;
|
735
|
+
select.span2 {
|
736
|
+
width: 150px;
|
783
737
|
}
|
784
|
-
|
785
|
-
|
786
|
-
select.span15,
|
787
|
-
.uneditable-input.span15 {
|
788
|
-
display: inline-block;
|
789
|
-
float: none;
|
790
|
-
width: 1170px;
|
791
|
-
margin-left: 0;
|
738
|
+
select.span3 {
|
739
|
+
width: 230px;
|
792
740
|
}
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
.
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
741
|
+
select.span4 {
|
742
|
+
width: 310px;
|
743
|
+
}
|
744
|
+
select.span5 {
|
745
|
+
width: 390px;
|
746
|
+
}
|
747
|
+
select.span6 {
|
748
|
+
width: 470px;
|
749
|
+
}
|
750
|
+
select.span7 {
|
751
|
+
width: 550px;
|
752
|
+
}
|
753
|
+
select.span8 {
|
754
|
+
width: 630px;
|
755
|
+
}
|
756
|
+
select.span9 {
|
757
|
+
width: 710px;
|
758
|
+
}
|
759
|
+
select.span10 {
|
760
|
+
width: 790px;
|
761
|
+
}
|
762
|
+
select.span11 {
|
763
|
+
width: 870px;
|
764
|
+
}
|
765
|
+
select.span12 {
|
766
|
+
width: 950px;
|
801
767
|
}
|
802
768
|
input[disabled],
|
803
769
|
select[disabled],
|
@@ -863,6 +829,16 @@ textarea[readonly] {
|
|
863
829
|
background-color: #bcddbc;
|
864
830
|
border-color: #468847;
|
865
831
|
}
|
832
|
+
input:invalid, textarea:invalid, select:invalid {
|
833
|
+
color: #b94a48;
|
834
|
+
border-color: #ee5f5b;
|
835
|
+
}
|
836
|
+
input:invalid:focus, textarea:invalid:focus, select:invalid:focus {
|
837
|
+
border-color: #e9322d;
|
838
|
+
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
839
|
+
-moz-box-shadow: 0 0 6px #f8b9b7;
|
840
|
+
box-shadow: 0 0 6px #f8b9b7;
|
841
|
+
}
|
866
842
|
.form-actions {
|
867
843
|
padding: 17px 20px 18px;
|
868
844
|
margin-top: 18px;
|
@@ -879,16 +855,16 @@ textarea[readonly] {
|
|
879
855
|
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
|
880
856
|
cursor: not-allowed;
|
881
857
|
}
|
882
|
-
:-moz-placeholder {
|
883
|
-
color: #
|
858
|
+
input:-moz-placeholder {
|
859
|
+
color: #999999;
|
884
860
|
}
|
885
|
-
::-webkit-input-placeholder {
|
886
|
-
color: #
|
861
|
+
input::-webkit-input-placeholder {
|
862
|
+
color: #999999;
|
887
863
|
}
|
888
|
-
.help-
|
864
|
+
.help-block {
|
889
865
|
margin-top: 5px;
|
890
866
|
margin-bottom: 0;
|
891
|
-
color: #
|
867
|
+
color: #999999;
|
892
868
|
}
|
893
869
|
.help-inline {
|
894
870
|
*position: relative;
|
@@ -900,36 +876,34 @@ textarea[readonly] {
|
|
900
876
|
display: inline;
|
901
877
|
padding-left: 5px;
|
902
878
|
}
|
903
|
-
.
|
904
|
-
|
905
|
-
|
906
|
-
}
|
907
|
-
.inline-inputs {
|
908
|
-
color: #808080;
|
909
|
-
}
|
910
|
-
.inline-inputs span, .inline-inputs input {
|
911
|
-
display: inline-block;
|
912
|
-
}
|
913
|
-
.inline-inputs input.mini {
|
914
|
-
width: 60px;
|
915
|
-
}
|
916
|
-
.inline-inputs input.small {
|
917
|
-
width: 90px;
|
879
|
+
.input-prepend, .input-append {
|
880
|
+
margin-bottom: 5px;
|
881
|
+
zoom: 1;
|
918
882
|
}
|
919
|
-
.
|
920
|
-
|
883
|
+
.input-prepend:before,
|
884
|
+
.input-append:before,
|
885
|
+
.input-prepend:after,
|
886
|
+
.input-append:after {
|
887
|
+
display: table;
|
888
|
+
*display: inline;
|
889
|
+
content: "";
|
890
|
+
zoom: 1;
|
921
891
|
}
|
922
|
-
.input-prepend, .input-append {
|
923
|
-
|
892
|
+
.input-prepend:after, .input-append:after {
|
893
|
+
clear: both;
|
924
894
|
}
|
925
|
-
.input-prepend input,
|
895
|
+
.input-prepend input,
|
896
|
+
.input-append input,
|
897
|
+
.input-prepend .uneditable-input,
|
898
|
+
.input-append .uneditable-input {
|
926
899
|
-webkit-border-radius: 0 3px 3px 0;
|
927
900
|
-moz-border-radius: 0 3px 3px 0;
|
928
901
|
border-radius: 0 3px 3px 0;
|
929
902
|
}
|
903
|
+
.input-prepend .uneditable-input, .input-append .uneditable-input {
|
904
|
+
border-left-color: #ccc;
|
905
|
+
}
|
930
906
|
.input-prepend .add-on, .input-append .add-on {
|
931
|
-
position: relative;
|
932
|
-
z-index: 2;
|
933
907
|
float: left;
|
934
908
|
display: block;
|
935
909
|
width: auto;
|
@@ -939,7 +913,7 @@ textarea[readonly] {
|
|
939
913
|
padding: 4px 4px 4px 5px;
|
940
914
|
font-weight: normal;
|
941
915
|
line-height: 18px;
|
942
|
-
color: #
|
916
|
+
color: #999999;
|
943
917
|
text-align: center;
|
944
918
|
text-shadow: 0 1px 0 #ffffff;
|
945
919
|
background-color: #f5f5f5;
|
@@ -957,12 +931,15 @@ textarea[readonly] {
|
|
957
931
|
/* IE6-7 */
|
958
932
|
|
959
933
|
}
|
960
|
-
.input-append input {
|
934
|
+
.input-append input, .input-append .uneditable-input {
|
961
935
|
float: left;
|
962
936
|
-webkit-border-radius: 3px 0 0 3px;
|
963
937
|
-moz-border-radius: 3px 0 0 3px;
|
964
938
|
border-radius: 3px 0 0 3px;
|
965
939
|
}
|
940
|
+
.input-append .uneditable-input {
|
941
|
+
border-right-color: #ccc;
|
942
|
+
}
|
966
943
|
.input-append .add-on {
|
967
944
|
margin-right: 0;
|
968
945
|
margin-left: -1px;
|
@@ -970,11 +947,29 @@ textarea[readonly] {
|
|
970
947
|
-moz-border-radius: 0 3px 3px 0;
|
971
948
|
border-radius: 0 3px 3px 0;
|
972
949
|
}
|
973
|
-
.search-
|
950
|
+
.search-query {
|
951
|
+
padding-left: 14px;
|
952
|
+
padding-right: 14px;
|
953
|
+
margin-bottom: 0;
|
974
954
|
-webkit-border-radius: 14px;
|
975
955
|
-moz-border-radius: 14px;
|
976
956
|
border-radius: 14px;
|
977
957
|
}
|
958
|
+
.search-form input,
|
959
|
+
.inline-form input,
|
960
|
+
.horizontal-form input,
|
961
|
+
.search-form textarea,
|
962
|
+
.inline-form textarea,
|
963
|
+
.horizontal-form textarea,
|
964
|
+
.search-form select,
|
965
|
+
.inline-form select,
|
966
|
+
.horizontal-form select,
|
967
|
+
.search-form .uneditable-input,
|
968
|
+
.inline-form .uneditable-input,
|
969
|
+
.horizontal-form .uneditable-input {
|
970
|
+
display: inline-block;
|
971
|
+
margin-bottom: 0;
|
972
|
+
}
|
978
973
|
.control-group {
|
979
974
|
margin-bottom: 18px;
|
980
975
|
}
|
@@ -990,9 +985,6 @@ textarea[readonly] {
|
|
990
985
|
.horizontal-form .controls {
|
991
986
|
margin-left: 150px;
|
992
987
|
}
|
993
|
-
.horizontal-form .control-list {
|
994
|
-
padding-top: 6px;
|
995
|
-
}
|
996
988
|
.horizontal-form .form-actions {
|
997
989
|
padding-left: 150px;
|
998
990
|
}
|
@@ -1004,7 +996,7 @@ th, td {
|
|
1004
996
|
padding: 8px;
|
1005
997
|
line-height: 18px;
|
1006
998
|
text-align: left;
|
1007
|
-
border-
|
999
|
+
border-top: 1px solid #ddd;
|
1008
1000
|
}
|
1009
1001
|
th {
|
1010
1002
|
font-weight: bold;
|
@@ -1013,9 +1005,6 @@ th {
|
|
1013
1005
|
td {
|
1014
1006
|
vertical-align: top;
|
1015
1007
|
}
|
1016
|
-
tbody tr:last-child th, tbody tr:last-child td {
|
1017
|
-
border-bottom: 0;
|
1018
|
-
}
|
1019
1008
|
.condensed-table th, .condensed-table td {
|
1020
1009
|
padding: 4px 5px;
|
1021
1010
|
}
|
@@ -1032,6 +1021,9 @@ tbody tr:last-child th, tbody tr:last-child td {
|
|
1032
1021
|
.bordered-table td + th {
|
1033
1022
|
border-left: 1px solid #ddd;
|
1034
1023
|
}
|
1024
|
+
.bordered-table thead:first-child tr:first-child th, .bordered-table tbody:first-child tr:first-child td {
|
1025
|
+
border-top: 0;
|
1026
|
+
}
|
1035
1027
|
.bordered-table thead:first-child tr:first-child th:first-child, .bordered-table tbody:first-child tr:first-child td:first-child {
|
1036
1028
|
-webkit-border-radius: 4px 0 0 0;
|
1037
1029
|
-moz-border-radius: 4px 0 0 0;
|
@@ -1055,354 +1047,405 @@ tbody tr:last-child th, tbody tr:last-child td {
|
|
1055
1047
|
.striped-table tbody tr:nth-child(odd) td, .striped-table tbody tr:nth-child(odd) th {
|
1056
1048
|
background-color: #f9f9f9;
|
1057
1049
|
}
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
.tableColumns(@columnSpan: 1) {
|
1063
|
-
width: ((@gridColumnWidth - 20) * @columnSpan) + ((@gridColumnWidth - 20) * (@columnSpan - 1));
|
1050
|
+
table .span1 {
|
1051
|
+
float: none;
|
1052
|
+
width: 44px;
|
1053
|
+
margin-left: 0;
|
1064
1054
|
}
|
1065
|
-
table {
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
.span3 { .tableColumns(3); }
|
1070
|
-
.span4 { .tableColumns(4); }
|
1071
|
-
.span5 { .tableColumns(5); }
|
1072
|
-
.span6 { .tableColumns(6); }
|
1073
|
-
.span7 { .tableColumns(7); }
|
1074
|
-
.span8 { .tableColumns(8); }
|
1075
|
-
.span9 { .tableColumns(9); }
|
1076
|
-
.span10 { .tableColumns(10); }
|
1077
|
-
.span11 { .tableColumns(11); }
|
1078
|
-
.span12 { .tableColumns(12); }
|
1079
|
-
.span13 { .tableColumns(13); }
|
1080
|
-
.span14 { .tableColumns(14); }
|
1081
|
-
.span15 { .tableColumns(15); }
|
1082
|
-
.span16 { .tableColumns(16); }
|
1055
|
+
table .span2 {
|
1056
|
+
float: none;
|
1057
|
+
width: 124px;
|
1058
|
+
margin-left: 0;
|
1083
1059
|
}
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
table {
|
1090
|
-
// Tablesorting styles w/ jQuery plugin
|
1091
|
-
.header {
|
1092
|
-
cursor: pointer;
|
1093
|
-
&:after {
|
1094
|
-
float: right;
|
1095
|
-
margin-top: 7px;
|
1096
|
-
border-width: 0 4px 4px;
|
1097
|
-
border-style: solid;
|
1098
|
-
border-color: #000 transparent;
|
1099
|
-
content: "";
|
1100
|
-
visibility: hidden;
|
1101
|
-
}
|
1102
|
-
}
|
1103
|
-
// Style the sorted column headers (THs)
|
1104
|
-
.headerSortUp,
|
1105
|
-
.headerSortDown {
|
1106
|
-
text-shadow: 0 1px 1px rgba(255,255,255,.75);
|
1107
|
-
background-color: rgba(141,192,219,.25);
|
1108
|
-
}
|
1109
|
-
// Style the ascending (reverse alphabetical) column header
|
1110
|
-
.header:hover {
|
1111
|
-
&:after {
|
1112
|
-
visibility: visible;
|
1113
|
-
}
|
1114
|
-
}
|
1115
|
-
// Style the descending (alphabetical) column header
|
1116
|
-
.headerSortDown,
|
1117
|
-
.headerSortDown:hover {
|
1118
|
-
&:after {
|
1119
|
-
visibility: visible;
|
1120
|
-
.opacity(60);
|
1121
|
-
}
|
1122
|
-
}
|
1123
|
-
// Style the ascending (reverse alphabetical) column header
|
1124
|
-
.headerSortUp {
|
1125
|
-
&:after {
|
1126
|
-
border-bottom: none;
|
1127
|
-
border-left: 4px solid transparent;
|
1128
|
-
border-right: 4px solid transparent;
|
1129
|
-
border-top: 4px solid #000;
|
1130
|
-
visibility:visible;
|
1131
|
-
.box-shadow(none); //can't add boxshadow to downward facing arrow :(
|
1132
|
-
.opacity(60);
|
1133
|
-
}
|
1134
|
-
}
|
1135
|
-
// Blue Table Headings
|
1136
|
-
.blue {
|
1137
|
-
color: @blue;
|
1138
|
-
border-bottom-color: @blue;
|
1139
|
-
}
|
1140
|
-
.headerSortUp.blue,
|
1141
|
-
.headerSortDown.blue {
|
1142
|
-
background-color: lighten(@blue, 40%);
|
1143
|
-
}
|
1144
|
-
// Green Table Headings
|
1145
|
-
.green {
|
1146
|
-
color: @green;
|
1147
|
-
border-bottom-color: @green;
|
1148
|
-
}
|
1149
|
-
.headerSortUp.green,
|
1150
|
-
.headerSortDown.green {
|
1151
|
-
background-color: lighten(@green, 40%);
|
1152
|
-
}
|
1153
|
-
// Red Table Headings
|
1154
|
-
.red {
|
1155
|
-
color: @red;
|
1156
|
-
border-bottom-color: @red;
|
1157
|
-
}
|
1158
|
-
.headerSortUp.red,
|
1159
|
-
.headerSortDown.red {
|
1160
|
-
background-color: lighten(@red, 50%);
|
1161
|
-
}
|
1162
|
-
// Yellow Table Headings
|
1163
|
-
.yellow {
|
1164
|
-
color: @yellow;
|
1165
|
-
border-bottom-color: @yellow;
|
1166
|
-
}
|
1167
|
-
.headerSortUp.yellow,
|
1168
|
-
.headerSortDown.yellow {
|
1169
|
-
background-color: lighten(@yellow, 40%);
|
1170
|
-
}
|
1171
|
-
// Orange Table Headings
|
1172
|
-
.orange {
|
1173
|
-
color: @orange;
|
1174
|
-
border-bottom-color: @orange;
|
1175
|
-
}
|
1176
|
-
.headerSortUp.orange,
|
1177
|
-
.headerSortDown.orange {
|
1178
|
-
background-color: lighten(@orange, 40%);
|
1179
|
-
}
|
1180
|
-
// Purple Table Headings
|
1181
|
-
.purple {
|
1182
|
-
color: @purple;
|
1183
|
-
border-bottom-color: @purple;
|
1184
|
-
}
|
1185
|
-
.headerSortUp.purple,
|
1186
|
-
.headerSortDown.purple {
|
1187
|
-
background-color: lighten(@purple, 40%);
|
1188
|
-
}
|
1189
|
-
}*/
|
1190
|
-
.navbar {
|
1191
|
-
overflow: visible;
|
1060
|
+
table .span3 {
|
1061
|
+
float: none;
|
1062
|
+
width: 204px;
|
1063
|
+
margin-left: 0;
|
1192
1064
|
}
|
1193
|
-
.
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
background-image: -moz-linear-gradient(top, #333333, #222222);
|
1198
|
-
background-image: -ms-linear-gradient(top, #333333, #222222);
|
1199
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
|
1200
|
-
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
1201
|
-
background-image: -o-linear-gradient(top, #333333, #222222);
|
1202
|
-
background-image: linear-gradient(top, #333333, #222222);
|
1203
|
-
background-repeat: repeat-x;
|
1204
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
1205
|
-
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1206
|
-
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1207
|
-
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1065
|
+
table .span4 {
|
1066
|
+
float: none;
|
1067
|
+
width: 284px;
|
1068
|
+
margin-left: 0;
|
1208
1069
|
}
|
1209
|
-
.
|
1210
|
-
|
1211
|
-
|
1070
|
+
table .span5 {
|
1071
|
+
float: none;
|
1072
|
+
width: 364px;
|
1073
|
+
margin-left: 0;
|
1212
1074
|
}
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
background-color: rgba(255, 255, 255, 0.05);
|
1075
|
+
table .span6 {
|
1076
|
+
float: none;
|
1077
|
+
width: 444px;
|
1078
|
+
margin-left: 0;
|
1218
1079
|
}
|
1219
|
-
|
1220
|
-
float:
|
1221
|
-
|
1222
|
-
|
1223
|
-
margin-left: -20px;
|
1224
|
-
font-size: 20px;
|
1225
|
-
font-weight: 200;
|
1226
|
-
line-height: 1;
|
1227
|
-
color: #ffffff;
|
1080
|
+
table .span7 {
|
1081
|
+
float: none;
|
1082
|
+
width: 524px;
|
1083
|
+
margin-left: 0;
|
1228
1084
|
}
|
1229
|
-
.
|
1230
|
-
|
1231
|
-
|
1085
|
+
table .span8 {
|
1086
|
+
float: none;
|
1087
|
+
width: 604px;
|
1088
|
+
margin-left: 0;
|
1232
1089
|
}
|
1233
|
-
.
|
1234
|
-
|
1235
|
-
|
1090
|
+
table .span9 {
|
1091
|
+
float: none;
|
1092
|
+
width: 684px;
|
1093
|
+
margin-left: 0;
|
1236
1094
|
}
|
1237
|
-
.
|
1238
|
-
|
1239
|
-
|
1240
|
-
margin-
|
1241
|
-
margin-bottom: 0;
|
1095
|
+
table .span10 {
|
1096
|
+
float: none;
|
1097
|
+
width: 764px;
|
1098
|
+
margin-left: 0;
|
1242
1099
|
}
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
font-weight: normal;
|
1248
|
-
line-height: 1;
|
1249
|
-
color: #ffffff;
|
1250
|
-
color: rgba(255, 255, 255, 0.75);
|
1251
|
-
background-color: #444;
|
1252
|
-
background-color: rgba(255, 255, 255, 0.3);
|
1253
|
-
border: 1px solid #111;
|
1254
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1255
|
-
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1256
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1257
|
-
-webkit-transition: none;
|
1258
|
-
-moz-transition: none;
|
1259
|
-
-ms-transition: none;
|
1260
|
-
-o-transition: none;
|
1261
|
-
transition: none;
|
1100
|
+
table .span11 {
|
1101
|
+
float: none;
|
1102
|
+
width: 844px;
|
1103
|
+
margin-left: 0;
|
1262
1104
|
}
|
1263
|
-
|
1264
|
-
|
1105
|
+
table .span12 {
|
1106
|
+
float: none;
|
1107
|
+
width: 924px;
|
1108
|
+
margin-left: 0;
|
1265
1109
|
}
|
1266
|
-
|
1267
|
-
|
1110
|
+
table .header {
|
1111
|
+
cursor: pointer;
|
1268
1112
|
}
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1113
|
+
table .header:after {
|
1114
|
+
content: "";
|
1115
|
+
float: right;
|
1116
|
+
margin-top: 7px;
|
1117
|
+
border-width: 0 4px 4px;
|
1118
|
+
border-style: solid;
|
1119
|
+
border-color: #000 transparent;
|
1120
|
+
visibility: hidden;
|
1273
1121
|
}
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
text-shadow: 0 1px 0 #ffffff;
|
1278
|
-
background-color: #ffffff;
|
1279
|
-
border: 0;
|
1280
|
-
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1281
|
-
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1282
|
-
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1283
|
-
outline: 0;
|
1122
|
+
table .headerSortUp, table .headerSortDown {
|
1123
|
+
background-color: rgba(141, 192, 219, 0.25);
|
1124
|
+
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
1284
1125
|
}
|
1285
|
-
.
|
1286
|
-
|
1126
|
+
table .header:hover:after {
|
1127
|
+
visibility: visible;
|
1287
1128
|
}
|
1288
|
-
.
|
1289
|
-
|
1290
|
-
|
1291
|
-
-
|
1292
|
-
|
1293
|
-
border-radius: 4px;
|
1129
|
+
table .headerSortDown:after, table .headerSortDown:hover:after {
|
1130
|
+
visibility: visible;
|
1131
|
+
filter: alpha(opacity=60);
|
1132
|
+
-moz-opacity: 0.6;
|
1133
|
+
opacity: 0.6;
|
1294
1134
|
}
|
1295
|
-
.
|
1296
|
-
|
1297
|
-
|
1298
|
-
right:
|
1299
|
-
|
1300
|
-
|
1135
|
+
table .headerSortUp:after {
|
1136
|
+
border-bottom: none;
|
1137
|
+
border-left: 4px solid transparent;
|
1138
|
+
border-right: 4px solid transparent;
|
1139
|
+
border-top: 4px solid #000;
|
1140
|
+
visibility: visible;
|
1141
|
+
-webkit-box-shadow: none;
|
1142
|
+
-moz-box-shadow: none;
|
1143
|
+
box-shadow: none;
|
1144
|
+
filter: alpha(opacity=60);
|
1145
|
+
-moz-opacity: 0.6;
|
1146
|
+
opacity: 0.6;
|
1301
1147
|
}
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1148
|
+
i {
|
1149
|
+
background-image: url(docs/assets/img/glyphicons-halflings-sprite.png);
|
1150
|
+
background-position: 0 0;
|
1151
|
+
background-repeat: no-repeat;
|
1152
|
+
display: inline-block;
|
1153
|
+
vertical-align: text-top;
|
1154
|
+
width: 14px;
|
1155
|
+
height: 14px;
|
1308
1156
|
}
|
1309
|
-
.
|
1310
|
-
|
1311
|
-
float: left;
|
1157
|
+
.glass {
|
1158
|
+
background-position: 0 0;
|
1312
1159
|
}
|
1313
|
-
.
|
1314
|
-
|
1315
|
-
float: none;
|
1316
|
-
padding: 10px 10px 11px;
|
1317
|
-
line-height: 19px;
|
1318
|
-
text-decoration: none;
|
1160
|
+
.music {
|
1161
|
+
background-position: -24px 0;
|
1319
1162
|
}
|
1320
|
-
.
|
1321
|
-
|
1322
|
-
text-decoration: none;
|
1163
|
+
.search {
|
1164
|
+
background-position: -48px 0;
|
1323
1165
|
}
|
1324
|
-
.
|
1325
|
-
background-
|
1326
|
-
background-color: rgba(0, 0, 0, 0.5);
|
1166
|
+
.envelope {
|
1167
|
+
background-position: -72px 0;
|
1327
1168
|
}
|
1328
|
-
.
|
1329
|
-
|
1330
|
-
width: 1px;
|
1331
|
-
margin: 0 5px;
|
1332
|
-
overflow: hidden;
|
1333
|
-
background-color: #222;
|
1334
|
-
border-right: 1px solid #444;
|
1169
|
+
.heart {
|
1170
|
+
background-position: -96px 0;
|
1335
1171
|
}
|
1336
|
-
.
|
1337
|
-
|
1338
|
-
margin-left: 10px;
|
1339
|
-
margin-right: 0;
|
1172
|
+
.star {
|
1173
|
+
background-position: -120px 0;
|
1340
1174
|
}
|
1341
|
-
.
|
1342
|
-
|
1343
|
-
border: 0;
|
1175
|
+
.star-empty {
|
1176
|
+
background-position: -144px 0;
|
1344
1177
|
}
|
1345
|
-
.
|
1346
|
-
background:
|
1347
|
-
background: rgba(255, 255, 255, 0.05);
|
1178
|
+
.user {
|
1179
|
+
background-position: -168px 0;
|
1348
1180
|
}
|
1349
|
-
.
|
1350
|
-
background-
|
1181
|
+
.film {
|
1182
|
+
background-position: -192px 0;
|
1351
1183
|
}
|
1352
|
-
.
|
1353
|
-
|
1184
|
+
.th-large {
|
1185
|
+
background-position: -216px 0;
|
1354
1186
|
}
|
1355
|
-
.
|
1356
|
-
background:
|
1357
|
-
background: rgba(255, 255, 255, 0.05);
|
1358
|
-
}
|
1359
|
-
.nav .dropdown-menu li a {
|
1360
|
-
color: #999;
|
1361
|
-
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
|
1362
|
-
}
|
1363
|
-
.nav .dropdown-menu li a:hover {
|
1364
|
-
background-color: #191919;
|
1365
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
|
1366
|
-
background-image: -moz-linear-gradient(top, #292929, #191919);
|
1367
|
-
background-image: -ms-linear-gradient(top, #292929, #191919);
|
1368
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
|
1369
|
-
background-image: -webkit-linear-gradient(top, #292929, #191919);
|
1370
|
-
background-image: -o-linear-gradient(top, #292929, #191919);
|
1371
|
-
background-image: linear-gradient(top, #292929, #191919);
|
1372
|
-
background-repeat: repeat-x;
|
1373
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
|
1374
|
-
color: #ffffff;
|
1187
|
+
.th {
|
1188
|
+
background-position: -240px 0;
|
1375
1189
|
}
|
1376
|
-
.
|
1377
|
-
|
1190
|
+
.th-lines {
|
1191
|
+
background-position: -264px 0;
|
1378
1192
|
}
|
1379
|
-
.
|
1380
|
-
background-
|
1381
|
-
|
1193
|
+
.ok {
|
1194
|
+
background-position: -288px 0;
|
1195
|
+
}
|
1196
|
+
.remove {
|
1197
|
+
background-position: -312px 0;
|
1198
|
+
}
|
1199
|
+
.zoom-in {
|
1200
|
+
background-position: -336px 0;
|
1201
|
+
}
|
1202
|
+
.zoom-out {
|
1203
|
+
background-position: -360px 0;
|
1204
|
+
}
|
1205
|
+
.off {
|
1206
|
+
background-position: -384px 0;
|
1207
|
+
}
|
1208
|
+
.signal {
|
1209
|
+
background-position: -408px 0;
|
1210
|
+
}
|
1211
|
+
.cog {
|
1212
|
+
background-position: -432px 0;
|
1213
|
+
}
|
1214
|
+
.trash {
|
1215
|
+
background-position: -456px 0;
|
1216
|
+
}
|
1217
|
+
.home {
|
1218
|
+
background-position: 0 -24px;
|
1219
|
+
}
|
1220
|
+
.file {
|
1221
|
+
background-position: -24px -24px;
|
1222
|
+
}
|
1223
|
+
.time {
|
1224
|
+
background-position: -48px -24px;
|
1225
|
+
}
|
1226
|
+
.road {
|
1227
|
+
background-position: -72px -24px;
|
1228
|
+
}
|
1229
|
+
.download-alt {
|
1230
|
+
background-position: -96px -24px;
|
1231
|
+
}
|
1232
|
+
.download {
|
1233
|
+
background-position: -120px -24px;
|
1234
|
+
}
|
1235
|
+
.upload {
|
1236
|
+
background-position: -144px -24px;
|
1237
|
+
}
|
1238
|
+
.inbox {
|
1239
|
+
background-position: -168px -24px;
|
1240
|
+
}
|
1241
|
+
.play-circle {
|
1242
|
+
background-position: -192px -24px;
|
1243
|
+
}
|
1244
|
+
.repeat {
|
1245
|
+
background-position: -216px -24px;
|
1246
|
+
}
|
1247
|
+
.refresh {
|
1248
|
+
background-position: -240px -24px;
|
1249
|
+
}
|
1250
|
+
.calendar {
|
1251
|
+
background-position: -264px -24px;
|
1252
|
+
}
|
1253
|
+
.lock {
|
1254
|
+
background-position: -288px -24px;
|
1255
|
+
}
|
1256
|
+
.flag {
|
1257
|
+
background-position: -312px -24px;
|
1258
|
+
}
|
1259
|
+
.headphones {
|
1260
|
+
background-position: -336px -24px;
|
1261
|
+
}
|
1262
|
+
.volume-off {
|
1263
|
+
background-position: -360px -24px;
|
1264
|
+
}
|
1265
|
+
.volume-down {
|
1266
|
+
background-position: -384px -24px;
|
1267
|
+
}
|
1268
|
+
.volume-up {
|
1269
|
+
background-position: -408px -24px;
|
1270
|
+
}
|
1271
|
+
.qrcode {
|
1272
|
+
background-position: -432px -24px;
|
1273
|
+
}
|
1274
|
+
.barcode {
|
1275
|
+
background-position: -456px -24px;
|
1276
|
+
}
|
1277
|
+
.tag {
|
1278
|
+
background-position: 0 -48px;
|
1279
|
+
}
|
1280
|
+
.tags {
|
1281
|
+
background-position: -24px -48px;
|
1282
|
+
}
|
1283
|
+
.book {
|
1284
|
+
background-position: -48px -48px;
|
1285
|
+
}
|
1286
|
+
.bookmark {
|
1287
|
+
background-position: -72px -48px;
|
1288
|
+
}
|
1289
|
+
.print {
|
1290
|
+
background-position: -96px -48px;
|
1291
|
+
}
|
1292
|
+
.camera {
|
1293
|
+
background-position: -120px -48px;
|
1294
|
+
}
|
1295
|
+
.font {
|
1296
|
+
background-position: -144px -48px;
|
1297
|
+
}
|
1298
|
+
.bold {
|
1299
|
+
background-position: -168px -48px;
|
1300
|
+
}
|
1301
|
+
.italic {
|
1302
|
+
background-position: -192px -48px;
|
1303
|
+
}
|
1304
|
+
.text-height {
|
1305
|
+
background-position: -216px -48px;
|
1306
|
+
}
|
1307
|
+
.text-width {
|
1308
|
+
background-position: -240px -48px;
|
1309
|
+
}
|
1310
|
+
.align-left {
|
1311
|
+
background-position: -264px -48px;
|
1312
|
+
}
|
1313
|
+
.align-center {
|
1314
|
+
background-position: -288px -48px;
|
1315
|
+
}
|
1316
|
+
.align-right {
|
1317
|
+
background-position: -312px -48px;
|
1318
|
+
}
|
1319
|
+
.align-justify {
|
1320
|
+
background-position: -336px -48px;
|
1321
|
+
}
|
1322
|
+
.list {
|
1323
|
+
background-position: -360px -48px;
|
1324
|
+
}
|
1325
|
+
.indent-left {
|
1326
|
+
background-position: -384px -48px;
|
1327
|
+
}
|
1328
|
+
.indent-right {
|
1329
|
+
background-position: -408px -48px;
|
1330
|
+
}
|
1331
|
+
.facetime-video {
|
1332
|
+
background-position: -432px -48px;
|
1333
|
+
}
|
1334
|
+
.picture {
|
1335
|
+
background-position: -456px -48px;
|
1336
|
+
}
|
1337
|
+
.pencil {
|
1338
|
+
background-position: 0 -72px;
|
1339
|
+
}
|
1340
|
+
.map-marker {
|
1341
|
+
background-position: -24px -72px;
|
1342
|
+
}
|
1343
|
+
.adjust {
|
1344
|
+
background-position: -48px -72px;
|
1345
|
+
}
|
1346
|
+
.tint {
|
1347
|
+
background-position: -72px -72px;
|
1348
|
+
}
|
1349
|
+
.edit {
|
1350
|
+
background-position: -96px -72px;
|
1351
|
+
}
|
1352
|
+
.share {
|
1353
|
+
background-position: -120px -72px;
|
1354
|
+
}
|
1355
|
+
.check {
|
1356
|
+
background-position: -144px -72px;
|
1382
1357
|
}
|
1383
|
-
.
|
1384
|
-
|
1358
|
+
.move {
|
1359
|
+
background-position: -168px -72px;
|
1360
|
+
}
|
1361
|
+
.step-backward {
|
1362
|
+
background-position: -192px -72px;
|
1363
|
+
}
|
1364
|
+
.fast-backward {
|
1365
|
+
background-position: -216px -72px;
|
1366
|
+
}
|
1367
|
+
.backward {
|
1368
|
+
background-position: -240px -72px;
|
1369
|
+
}
|
1370
|
+
.play {
|
1371
|
+
background-position: -264px -72px;
|
1372
|
+
}
|
1373
|
+
.pause {
|
1374
|
+
background-position: -288px -72px;
|
1375
|
+
}
|
1376
|
+
.stop {
|
1377
|
+
background-position: -312px -72px;
|
1378
|
+
}
|
1379
|
+
.forward {
|
1380
|
+
background-position: -336px -72px;
|
1381
|
+
}
|
1382
|
+
.fast-forward {
|
1383
|
+
background-position: -360px -72px;
|
1384
|
+
}
|
1385
|
+
.step-forward {
|
1386
|
+
background-position: -384px -72px;
|
1387
|
+
}
|
1388
|
+
.eject {
|
1389
|
+
background-position: -408px -72px;
|
1390
|
+
}
|
1391
|
+
.chevron-left {
|
1392
|
+
background-position: -432px -72px;
|
1393
|
+
}
|
1394
|
+
.chevron-right {
|
1395
|
+
background-position: -456px -72px;
|
1396
|
+
}
|
1397
|
+
.arrow-left {
|
1398
|
+
background-position: -240px -96px;
|
1399
|
+
}
|
1400
|
+
.arrow-right {
|
1401
|
+
background-position: -264px -96px;
|
1402
|
+
}
|
1403
|
+
.arrow-up {
|
1404
|
+
background-position: -288px -96px;
|
1405
|
+
}
|
1406
|
+
.arrow-down {
|
1407
|
+
background-position: -312px -96px;
|
1408
|
+
}
|
1409
|
+
.share {
|
1410
|
+
background-position: -336px -96px;
|
1411
|
+
}
|
1412
|
+
.resize-full {
|
1413
|
+
background-position: -360px -96px;
|
1414
|
+
}
|
1415
|
+
.resize-small {
|
1416
|
+
background-position: -384px -96px;
|
1417
|
+
}
|
1418
|
+
.plus {
|
1419
|
+
background-position: -408px -96px;
|
1420
|
+
}
|
1421
|
+
.minus {
|
1422
|
+
background-position: -432px -96px;
|
1423
|
+
}
|
1424
|
+
.asterisk {
|
1425
|
+
background-position: -456px -96px;
|
1385
1426
|
}
|
1386
1427
|
.dropdown {
|
1387
1428
|
position: relative;
|
1388
1429
|
}
|
1389
|
-
.
|
1430
|
+
.caret {
|
1390
1431
|
display: inline-block;
|
1391
1432
|
width: 0;
|
1392
1433
|
height: 0;
|
1393
|
-
margin-top: 8px;
|
1394
|
-
margin-left: 6px;
|
1395
1434
|
text-indent: -99999px;
|
1396
1435
|
vertical-align: top;
|
1397
1436
|
border-left: 4px solid transparent;
|
1398
1437
|
border-right: 4px solid transparent;
|
1399
|
-
border-top: 4px solid #
|
1438
|
+
border-top: 4px solid #000;
|
1400
1439
|
filter: alpha(opacity=30);
|
1401
1440
|
-moz-opacity: 0.3;
|
1402
1441
|
opacity: 0.3;
|
1403
|
-
content: "
|
1442
|
+
content: "\2193";
|
1443
|
+
}
|
1444
|
+
.dropdown .caret {
|
1445
|
+
margin-top: 8px;
|
1446
|
+
margin-left: 2px;
|
1404
1447
|
}
|
1405
|
-
.dropdown:hover .dropdown
|
1448
|
+
.dropdown:hover .caret, .open.dropdown .caret {
|
1406
1449
|
filter: alpha(opacity=100);
|
1407
1450
|
-moz-opacity: 1;
|
1408
1451
|
opacity: 1;
|
@@ -1410,68 +1453,63 @@ table {
|
|
1410
1453
|
.dropdown-menu {
|
1411
1454
|
position: absolute;
|
1412
1455
|
top: 40px;
|
1413
|
-
z-index:
|
1456
|
+
z-index: 1000;
|
1414
1457
|
float: left;
|
1415
1458
|
display: none;
|
1416
1459
|
min-width: 160px;
|
1417
1460
|
max-width: 220px;
|
1418
1461
|
_width: 160px;
|
1419
|
-
padding:
|
1420
|
-
margin
|
1421
|
-
|
1462
|
+
padding: 5px 0;
|
1463
|
+
margin: 0;
|
1464
|
+
list-style: none;
|
1422
1465
|
background-color: #ffffff;
|
1423
1466
|
border-color: #999;
|
1424
|
-
border-color: rgba(0, 0, 0, 0.
|
1467
|
+
border-color: rgba(0, 0, 0, 0.1);
|
1425
1468
|
border-style: solid;
|
1426
|
-
border-width:
|
1427
|
-
-webkit-border-radius: 0 0
|
1428
|
-
-moz-border-radius: 0 0
|
1429
|
-
border-radius: 0 0
|
1430
|
-
-webkit-box-shadow: 0
|
1431
|
-
-moz-box-shadow: 0
|
1432
|
-
box-shadow: 0
|
1469
|
+
border-width: 1px;
|
1470
|
+
-webkit-border-radius: 0 0 5px 5px;
|
1471
|
+
-moz-border-radius: 0 0 5px 5px;
|
1472
|
+
border-radius: 0 0 5px 5px;
|
1473
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
1474
|
+
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
1475
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
1433
1476
|
-webkit-background-clip: padding-box;
|
1434
|
-
-moz-background-clip: padding
|
1477
|
+
-moz-background-clip: padding;
|
1435
1478
|
background-clip: padding-box;
|
1436
1479
|
zoom: 1;
|
1437
1480
|
}
|
1438
|
-
.dropdown-menu li {
|
1439
|
-
float: none;
|
1440
|
-
display: block;
|
1441
|
-
background-color: none;
|
1442
|
-
}
|
1443
1481
|
.dropdown-menu .divider {
|
1444
1482
|
height: 1px;
|
1445
|
-
margin: 5px
|
1483
|
+
margin: 5px 1px;
|
1446
1484
|
overflow: hidden;
|
1447
|
-
background-color: #
|
1485
|
+
background-color: #e5e5e5;
|
1448
1486
|
border-bottom: 1px solid #ffffff;
|
1449
1487
|
}
|
1450
|
-
.
|
1488
|
+
.dropdown-menu a {
|
1451
1489
|
display: block;
|
1452
|
-
padding:
|
1490
|
+
padding: 2px 15px;
|
1453
1491
|
clear: both;
|
1454
1492
|
font-weight: normal;
|
1455
1493
|
line-height: 18px;
|
1456
|
-
color: #
|
1457
|
-
text-shadow: 0 1px 0 #ffffff;
|
1494
|
+
color: #555555;
|
1458
1495
|
}
|
1459
|
-
.
|
1460
|
-
color: #
|
1496
|
+
.dropdown-menu a:hover, .dropdown-menu .active > a {
|
1497
|
+
color: #fff;
|
1461
1498
|
text-decoration: none;
|
1462
|
-
|
1463
|
-
background-
|
1464
|
-
background-image: -
|
1465
|
-
background-image: -
|
1466
|
-
background-image: -
|
1467
|
-
background-image: -webkit-
|
1468
|
-
background-image: -
|
1469
|
-
background-image: linear-gradient(top, #
|
1499
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1500
|
+
background-color: #0077b3;
|
1501
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#0088cc), to(#0077b3));
|
1502
|
+
background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
|
1503
|
+
background-image: -ms-linear-gradient(top, #0088cc, #0077b3);
|
1504
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0088cc), color-stop(100%, #0077b3));
|
1505
|
+
background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
|
1506
|
+
background-image: -o-linear-gradient(top, #0088cc, #0077b3);
|
1507
|
+
background-image: linear-gradient(top, #0088cc, #0077b3);
|
1470
1508
|
background-repeat: repeat-x;
|
1471
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#
|
1472
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.
|
1473
|
-
-moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.
|
1474
|
-
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.
|
1509
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0077b3', GradientType=0);
|
1510
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.075), inset 0 -1px rgba(0, 0, 0, 0.075);
|
1511
|
+
-moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.075), inset 0 -1px rgba(0, 0, 0, 0.075);
|
1512
|
+
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.075), inset 0 -1px rgba(0, 0, 0, 0.075);
|
1475
1513
|
}
|
1476
1514
|
.dropdown.open .dropdown-toggle {
|
1477
1515
|
color: #ffffff;
|
@@ -1481,534 +1519,317 @@ table {
|
|
1481
1519
|
.dropdown.open .dropdown-menu {
|
1482
1520
|
display: block;
|
1483
1521
|
}
|
1484
|
-
.
|
1485
|
-
|
1486
|
-
|
1522
|
+
.typeahead {
|
1523
|
+
margin-top: 2px;
|
1524
|
+
-webkit-border-radius: 4px;
|
1525
|
+
-moz-border-radius: 4px;
|
1526
|
+
border-radius: 4px;
|
1527
|
+
}
|
1528
|
+
.well {
|
1529
|
+
min-height: 20px;
|
1530
|
+
padding: 19px;
|
1531
|
+
margin-bottom: 20px;
|
1487
1532
|
background-color: #f5f5f5;
|
1488
|
-
|
1489
|
-
|
1490
|
-
border-radius:
|
1533
|
+
border: 1px solid #eee;
|
1534
|
+
border: 1px solid rgba(0, 0, 0, 0.05);
|
1535
|
+
-webkit-border-radius: 4px;
|
1536
|
+
-moz-border-radius: 4px;
|
1537
|
+
border-radius: 4px;
|
1538
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1539
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1540
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1491
1541
|
}
|
1492
|
-
.
|
1493
|
-
|
1494
|
-
|
1495
|
-
line-height: 1;
|
1496
|
-
letter-spacing: -1px;
|
1542
|
+
.well blockquote {
|
1543
|
+
border-color: #ddd;
|
1544
|
+
border-color: rgba(0, 0, 0, 0.15);
|
1497
1545
|
}
|
1498
|
-
.
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1546
|
+
.fade {
|
1547
|
+
-webkit-transition: opacity 0.15s linear;
|
1548
|
+
-moz-transition: opacity 0.15s linear;
|
1549
|
+
-ms-transition: opacity 0.15s linear;
|
1550
|
+
-o-transition: opacity 0.15s linear;
|
1551
|
+
transition: opacity 0.15s linear;
|
1552
|
+
opacity: 0;
|
1502
1553
|
}
|
1503
|
-
|
1504
|
-
|
1505
|
-
margin-top: 17px;
|
1506
|
-
border-top: 1px solid #eee;
|
1554
|
+
.fade.in {
|
1555
|
+
opacity: 1;
|
1507
1556
|
}
|
1508
|
-
.
|
1509
|
-
|
1510
|
-
|
1511
|
-
-
|
1512
|
-
-
|
1513
|
-
|
1557
|
+
.collapse {
|
1558
|
+
-webkit-transition: height 0.35s ease;
|
1559
|
+
-moz-transition: height 0.35s ease;
|
1560
|
+
-ms-transition: height 0.35s ease;
|
1561
|
+
-o-transition: height 0.35s ease;
|
1562
|
+
transition: height 0.35s ease;
|
1563
|
+
position: relative;
|
1564
|
+
overflow: hidden;
|
1565
|
+
height: 0;
|
1514
1566
|
}
|
1515
|
-
.
|
1516
|
-
|
1567
|
+
.collapse.in {
|
1568
|
+
height: auto;
|
1517
1569
|
}
|
1518
|
-
.
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
.
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
.
|
1527
|
-
.
|
1528
|
-
.btn.success:hover,
|
1529
|
-
.alert-message.success:hover,
|
1530
|
-
.btn.info,
|
1531
|
-
.alert-message.info,
|
1532
|
-
.btn.info:hover,
|
1533
|
-
.alert-message.info:hover {
|
1534
|
-
color: #ffffff;
|
1570
|
+
.close {
|
1571
|
+
float: right;
|
1572
|
+
font-size: 20px;
|
1573
|
+
font-weight: bold;
|
1574
|
+
line-height: 13.5px;
|
1575
|
+
color: #000000;
|
1576
|
+
text-shadow: 0 1px 0 #ffffff;
|
1577
|
+
filter: alpha(opacity=20);
|
1578
|
+
-moz-opacity: 0.2;
|
1579
|
+
opacity: 0.2;
|
1535
1580
|
}
|
1536
|
-
.
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1542
|
-
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
1543
|
-
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
1544
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
|
1545
|
-
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
1546
|
-
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
1547
|
-
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
1548
|
-
background-repeat: repeat-x;
|
1549
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
|
1550
|
-
border-color: #c43c35 #c43c35 #882a25;
|
1551
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1581
|
+
.close:hover {
|
1582
|
+
color: #000000;
|
1583
|
+
text-decoration: none;
|
1584
|
+
filter: alpha(opacity=40);
|
1585
|
+
-moz-opacity: 0.4;
|
1586
|
+
opacity: 0.4;
|
1552
1587
|
}
|
1553
|
-
.
|
1554
|
-
|
1555
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
|
1556
|
-
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
1557
|
-
background-image: -ms-linear-gradient(top, #62c462, #57a957);
|
1558
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
|
1559
|
-
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
|
1560
|
-
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
1561
|
-
background-image: linear-gradient(top, #62c462, #57a957);
|
1562
|
-
background-repeat: repeat-x;
|
1563
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
|
1564
|
-
border-color: #57a957 #57a957 #3d773d;
|
1565
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1588
|
+
.navbar {
|
1589
|
+
overflow: visible;
|
1566
1590
|
}
|
1567
|
-
.
|
1568
|
-
background-color: #
|
1569
|
-
background-
|
1570
|
-
background-image: -
|
1571
|
-
background-image: -
|
1572
|
-
background-image: -
|
1573
|
-
background-image: -webkit-
|
1574
|
-
background-image: -
|
1575
|
-
background-image: linear-gradient(top, #
|
1591
|
+
.navbar-inner {
|
1592
|
+
background-color: #222222;
|
1593
|
+
background-color: #222222;
|
1594
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
|
1595
|
+
background-image: -moz-linear-gradient(top, #333333, #222222);
|
1596
|
+
background-image: -ms-linear-gradient(top, #333333, #222222);
|
1597
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
|
1598
|
+
background-image: -webkit-linear-gradient(top, #333333, #222222);
|
1599
|
+
background-image: -o-linear-gradient(top, #333333, #222222);
|
1600
|
+
background-image: linear-gradient(top, #333333, #222222);
|
1576
1601
|
background-repeat: repeat-x;
|
1577
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
.btn {
|
1582
|
-
display: inline-block;
|
1583
|
-
padding: 5px 14px 6px;
|
1584
|
-
font-size: 13px;
|
1585
|
-
line-height: normal;
|
1586
|
-
color: #333;
|
1587
|
-
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
1588
|
-
background-color: #e6e6e6;
|
1589
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
|
1590
|
-
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1591
|
-
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
|
1592
|
-
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1593
|
-
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1594
|
-
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
1595
|
-
background-repeat: no-repeat;
|
1596
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
|
1597
|
-
border: 1px solid #ccc;
|
1598
|
-
border-bottom-color: #bbb;
|
1599
|
-
-webkit-border-radius: 4px;
|
1600
|
-
-moz-border-radius: 4px;
|
1601
|
-
border-radius: 4px;
|
1602
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1603
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1604
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1605
|
-
cursor: pointer;
|
1606
|
-
-webkit-transition: 0.1s linear all;
|
1607
|
-
-moz-transition: 0.1s linear all;
|
1608
|
-
-ms-transition: 0.1s linear all;
|
1609
|
-
-o-transition: 0.1s linear all;
|
1610
|
-
transition: 0.1s linear all;
|
1602
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
|
1603
|
+
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1604
|
+
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1605
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
|
1611
1606
|
}
|
1612
|
-
.
|
1613
|
-
color: #
|
1607
|
+
.navbar .brand:hover, .navbar .nav .active > a {
|
1608
|
+
color: #ffffff;
|
1614
1609
|
text-decoration: none;
|
1615
|
-
background-
|
1616
|
-
|
1617
|
-
.btn:focus {
|
1618
|
-
outline: 1px dotted #666;
|
1610
|
+
background-color: #333333;
|
1611
|
+
background-color: rgba(255, 255, 255, 0.05);
|
1619
1612
|
}
|
1620
|
-
.
|
1613
|
+
.navbar .brand {
|
1614
|
+
float: left;
|
1615
|
+
display: block;
|
1616
|
+
padding: 8px 20px 12px;
|
1617
|
+
margin-left: -20px;
|
1618
|
+
font-size: 20px;
|
1619
|
+
font-weight: 200;
|
1620
|
+
line-height: 1;
|
1621
1621
|
color: #ffffff;
|
1622
|
-
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1623
|
-
background-color: #0064cd;
|
1624
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
|
1625
|
-
background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
|
1626
|
-
background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
|
1627
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
|
1628
|
-
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
|
1629
|
-
background-image: -o-linear-gradient(top, #049cdb, #0064cd);
|
1630
|
-
background-image: linear-gradient(top, #049cdb, #0064cd);
|
1631
|
-
background-repeat: repeat-x;
|
1632
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
|
1633
|
-
border-color: #0064cd #0064cd #003f81;
|
1634
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1635
1622
|
}
|
1636
|
-
.
|
1637
|
-
|
1638
|
-
-
|
1639
|
-
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1623
|
+
.navbar p {
|
1624
|
+
margin: 0;
|
1625
|
+
line-height: 40px;
|
1640
1626
|
}
|
1641
|
-
.
|
1642
|
-
|
1643
|
-
background-
|
1644
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1645
|
-
filter: alpha(opacity=65);
|
1646
|
-
-moz-opacity: 0.65;
|
1647
|
-
opacity: 0.65;
|
1648
|
-
-webkit-box-shadow: none;
|
1649
|
-
-moz-box-shadow: none;
|
1650
|
-
box-shadow: none;
|
1627
|
+
.navbar p a:hover {
|
1628
|
+
color: #ffffff;
|
1629
|
+
background-color: transparent;
|
1651
1630
|
}
|
1652
|
-
.btn
|
1653
|
-
|
1654
|
-
background-image: none;
|
1655
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1656
|
-
filter: alpha(opacity=65);
|
1657
|
-
-moz-opacity: 0.65;
|
1658
|
-
opacity: 0.65;
|
1659
|
-
-webkit-box-shadow: none;
|
1660
|
-
-moz-box-shadow: none;
|
1661
|
-
box-shadow: none;
|
1631
|
+
.navbar .btn {
|
1632
|
+
margin-top: 5px;
|
1662
1633
|
}
|
1663
|
-
.
|
1664
|
-
|
1665
|
-
font-size: 15px;
|
1666
|
-
line-height: normal;
|
1667
|
-
-webkit-border-radius: 6px;
|
1668
|
-
-moz-border-radius: 6px;
|
1669
|
-
border-radius: 6px;
|
1634
|
+
.navbar-form {
|
1635
|
+
margin-bottom: 0;
|
1670
1636
|
}
|
1671
|
-
.
|
1672
|
-
|
1673
|
-
|
1637
|
+
.navbar-form input, .navbar-form select {
|
1638
|
+
display: inline-block;
|
1639
|
+
margin-bottom: 0;
|
1674
1640
|
}
|
1675
|
-
|
1676
|
-
|
1641
|
+
.navbar-search {
|
1642
|
+
position: relative;
|
1643
|
+
float: left;
|
1644
|
+
margin-top: 6px;
|
1645
|
+
margin-bottom: 0;
|
1677
1646
|
}
|
1678
|
-
|
1679
|
-
padding:
|
1680
|
-
|
1647
|
+
.navbar-search .search-query {
|
1648
|
+
padding: 4px 9px;
|
1649
|
+
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1650
|
+
font-size: 13px;
|
1651
|
+
font-weight: normal;
|
1652
|
+
line-height: 1;
|
1653
|
+
color: #ffffff;
|
1654
|
+
color: rgba(255, 255, 255, 0.75);
|
1655
|
+
background-color: #444;
|
1656
|
+
background-color: rgba(255, 255, 255, 0.3);
|
1657
|
+
border: 1px solid #111;
|
1658
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1659
|
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1660
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
|
1661
|
+
-webkit-transition: none;
|
1662
|
+
-moz-transition: none;
|
1663
|
+
-ms-transition: none;
|
1664
|
+
-o-transition: none;
|
1665
|
+
transition: none;
|
1681
1666
|
}
|
1682
|
-
.
|
1683
|
-
|
1667
|
+
.navbar-search .search-query:-moz-placeholder {
|
1668
|
+
color: #eeeeee;
|
1684
1669
|
}
|
1685
|
-
.
|
1686
|
-
|
1687
|
-
*display: inline;
|
1688
|
-
content: "";
|
1689
|
-
zoom: 1;
|
1670
|
+
.navbar-search .search-query::-webkit-input-placeholder {
|
1671
|
+
color: #eeeeee;
|
1690
1672
|
}
|
1691
|
-
.
|
1692
|
-
|
1673
|
+
.navbar-search .search-query:hover {
|
1674
|
+
color: #ffffff;
|
1675
|
+
background-color: #999999;
|
1676
|
+
background-color: rgba(255, 255, 255, 0.5);
|
1693
1677
|
}
|
1694
|
-
.
|
1695
|
-
|
1696
|
-
|
1678
|
+
.navbar-search .search-query:focus, .navbar-search .search-query.focused {
|
1679
|
+
padding: 5px 10px;
|
1680
|
+
color: #333333;
|
1681
|
+
text-shadow: 0 1px 0 #ffffff;
|
1682
|
+
background-color: #ffffff;
|
1683
|
+
border: 0;
|
1684
|
+
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1685
|
+
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1686
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
1687
|
+
outline: 0;
|
1697
1688
|
}
|
1698
|
-
.
|
1699
|
-
|
1689
|
+
.navbar-static {
|
1690
|
+
margin-bottom: 18px;
|
1700
1691
|
}
|
1701
|
-
.
|
1702
|
-
|
1703
|
-
|
1704
|
-
|
1705
|
-
|
1692
|
+
.navbar-static .navbar-inner {
|
1693
|
+
padding-left: 20px;
|
1694
|
+
padding-right: 20px;
|
1695
|
+
-webkit-border-radius: 4px;
|
1696
|
+
-moz-border-radius: 4px;
|
1697
|
+
border-radius: 4px;
|
1706
1698
|
}
|
1707
|
-
.
|
1708
|
-
|
1699
|
+
.navbar-fixed {
|
1700
|
+
position: fixed;
|
1701
|
+
top: 0;
|
1702
|
+
right: 0;
|
1703
|
+
left: 0;
|
1704
|
+
z-index: 1010;
|
1709
1705
|
}
|
1710
|
-
.
|
1706
|
+
.navbar .nav {
|
1711
1707
|
position: relative;
|
1708
|
+
left: 0;
|
1709
|
+
display: block;
|
1712
1710
|
float: left;
|
1713
|
-
margin
|
1714
|
-
-webkit-border-radius: 0;
|
1715
|
-
-moz-border-radius: 0;
|
1716
|
-
border-radius: 0;
|
1711
|
+
margin: 0 10px 0 0;
|
1717
1712
|
}
|
1718
|
-
.
|
1719
|
-
|
1720
|
-
-webkit-border-top-left-radius: 4px;
|
1721
|
-
-moz-border-radius-topleft: 4px;
|
1722
|
-
border-top-left-radius: 4px;
|
1723
|
-
-webkit-border-bottom-left-radius: 4px;
|
1724
|
-
-moz-border-radius-bottomleft: 4px;
|
1725
|
-
border-bottom-left-radius: 4px;
|
1713
|
+
.navbar .nav.pull-right {
|
1714
|
+
float: right;
|
1726
1715
|
}
|
1727
|
-
.
|
1728
|
-
|
1729
|
-
|
1730
|
-
border-top-right-radius: 4px;
|
1731
|
-
-webkit-border-bottom-right-radius: 4px;
|
1732
|
-
-moz-border-radius-bottomright: 4px;
|
1733
|
-
border-bottom-right-radius: 4px;
|
1716
|
+
.navbar .nav > li {
|
1717
|
+
display: block;
|
1718
|
+
float: left;
|
1734
1719
|
}
|
1735
|
-
.
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
font-size: 20px;
|
1741
|
-
font-weight: bold;
|
1742
|
-
line-height: 13.5px;
|
1743
|
-
color: #000000;
|
1744
|
-
text-shadow: 0 1px 0 #ffffff;
|
1745
|
-
filter: alpha(opacity=20);
|
1746
|
-
-moz-opacity: 0.2;
|
1747
|
-
opacity: 0.2;
|
1748
|
-
}
|
1749
|
-
.close:hover {
|
1750
|
-
color: #000000;
|
1720
|
+
.navbar .nav > li > a {
|
1721
|
+
float: none;
|
1722
|
+
padding: 10px 10px 11px;
|
1723
|
+
line-height: 19px;
|
1724
|
+
color: #999999;
|
1751
1725
|
text-decoration: none;
|
1752
|
-
filter: alpha(opacity=40);
|
1753
|
-
-moz-opacity: 0.4;
|
1754
|
-
opacity: 0.4;
|
1755
|
-
}
|
1756
|
-
.alert-message {
|
1757
|
-
position: relative;
|
1758
|
-
padding: 7px 15px;
|
1759
|
-
margin-bottom: 18px;
|
1760
|
-
color: #404040;
|
1761
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1762
|
-
background-color: #eedc94;
|
1763
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
|
1764
|
-
background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
|
1765
|
-
background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
|
1766
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
|
1767
|
-
background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
|
1768
|
-
background-image: -o-linear-gradient(top, #fceec1, #eedc94);
|
1769
|
-
background-image: linear-gradient(top, #fceec1, #eedc94);
|
1770
|
-
background-repeat: repeat-x;
|
1771
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
|
1772
|
-
border-color: #eedc94 #eedc94 #e4c652;
|
1773
|
-
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1774
|
-
border-width: 1px;
|
1775
|
-
border-style: solid;
|
1776
|
-
-webkit-border-radius: 4px;
|
1777
|
-
-moz-border-radius: 4px;
|
1778
|
-
border-radius: 4px;
|
1779
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1780
|
-
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1781
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1782
|
-
}
|
1783
|
-
.alert-message .close {
|
1784
|
-
*margin-top: 3px;
|
1785
|
-
/* IE7 spacing */
|
1786
|
-
|
1787
|
-
}
|
1788
|
-
.alert-message h5 {
|
1789
|
-
line-height: 18px;
|
1790
|
-
}
|
1791
|
-
.alert-message p {
|
1792
|
-
margin-bottom: 0;
|
1793
|
-
}
|
1794
|
-
.alert-message div {
|
1795
|
-
margin-top: 5px;
|
1796
|
-
margin-bottom: 2px;
|
1797
|
-
line-height: 28px;
|
1798
|
-
}
|
1799
|
-
.alert-message .btn {
|
1800
|
-
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
1801
|
-
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
1802
|
-
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
1803
|
-
}
|
1804
|
-
.alert-message.error, .alert-message.success, .alert-message.info {
|
1805
1726
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1806
1727
|
}
|
1807
|
-
.
|
1808
|
-
|
1809
|
-
|
1810
|
-
|
1811
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
1812
|
-
border-color: #fceec1;
|
1813
|
-
-webkit-box-shadow: none;
|
1814
|
-
-moz-box-shadow: none;
|
1815
|
-
box-shadow: none;
|
1816
|
-
}
|
1817
|
-
.alert-message.block-message ul, .alert-message.block-message p {
|
1818
|
-
margin-right: 30px;
|
1819
|
-
}
|
1820
|
-
.alert-message.block-message ul {
|
1821
|
-
margin-bottom: 0;
|
1822
|
-
}
|
1823
|
-
.alert-message.block-message li {
|
1824
|
-
color: #404040;
|
1825
|
-
}
|
1826
|
-
.alert-message.block-message .alert-actions {
|
1827
|
-
margin-top: 5px;
|
1828
|
-
}
|
1829
|
-
.alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
|
1830
|
-
color: #404040;
|
1831
|
-
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1728
|
+
.navbar .nav > li > a:hover {
|
1729
|
+
background-color: transparent;
|
1730
|
+
color: #ffffff;
|
1731
|
+
text-decoration: none;
|
1832
1732
|
}
|
1833
|
-
.
|
1834
|
-
background-color: #
|
1835
|
-
|
1733
|
+
.navbar .nav .active > a {
|
1734
|
+
background-color: #222;
|
1735
|
+
background-color: rgba(0, 0, 0, 0.5);
|
1836
1736
|
}
|
1837
|
-
.
|
1838
|
-
|
1839
|
-
|
1737
|
+
.navbar .vertical-divider {
|
1738
|
+
height: 40px;
|
1739
|
+
width: 1px;
|
1740
|
+
margin: 0 5px;
|
1741
|
+
overflow: hidden;
|
1742
|
+
background-color: #222;
|
1743
|
+
border-right: 1px solid #444;
|
1840
1744
|
}
|
1841
|
-
.
|
1842
|
-
|
1843
|
-
|
1745
|
+
.navbar .nav.pull-right {
|
1746
|
+
margin-left: 10px;
|
1747
|
+
margin-right: 0;
|
1844
1748
|
}
|
1845
|
-
.
|
1846
|
-
|
1847
|
-
padding: 19px;
|
1848
|
-
margin-bottom: 20px;
|
1849
|
-
background-color: #f5f5f5;
|
1850
|
-
border: 1px solid #eee;
|
1851
|
-
border: 1px solid rgba(0, 0, 0, 0.05);
|
1749
|
+
.navbar .dropdown-menu {
|
1750
|
+
top: 42px;
|
1852
1751
|
-webkit-border-radius: 4px;
|
1853
1752
|
-moz-border-radius: 4px;
|
1854
1753
|
border-radius: 4px;
|
1855
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1856
|
-
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1857
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
1858
|
-
}
|
1859
|
-
.well blockquote {
|
1860
|
-
border-color: #ddd;
|
1861
|
-
border-color: rgba(0, 0, 0, 0.15);
|
1862
|
-
}
|
1863
|
-
.fade {
|
1864
|
-
-webkit-transition: opacity 0.15s linear;
|
1865
|
-
-moz-transition: opacity 0.15s linear;
|
1866
|
-
-ms-transition: opacity 0.15s linear;
|
1867
|
-
-o-transition: opacity 0.15s linear;
|
1868
|
-
transition: opacity 0.15s linear;
|
1869
|
-
opacity: 0;
|
1870
|
-
}
|
1871
|
-
.fade.in {
|
1872
|
-
opacity: 1;
|
1873
|
-
}
|
1874
|
-
.collapse {
|
1875
|
-
-webkit-transition: height 0.35s ease;
|
1876
|
-
-moz-transition: height 0.35s ease;
|
1877
|
-
-ms-transition: height 0.35s ease;
|
1878
|
-
-o-transition: height 0.35s ease;
|
1879
|
-
transition: height 0.35s ease;
|
1880
|
-
position: relative;
|
1881
|
-
overflow: hidden;
|
1882
|
-
height: 0;
|
1883
|
-
}
|
1884
|
-
.collapse.in {
|
1885
|
-
height: auto;
|
1886
|
-
}
|
1887
|
-
.label {
|
1888
|
-
padding: 1px 3px 2px;
|
1889
|
-
font-size: 9.75px;
|
1890
|
-
font-weight: bold;
|
1891
|
-
color: #ffffff;
|
1892
|
-
text-transform: uppercase;
|
1893
|
-
background-color: #bfbfbf;
|
1894
|
-
-webkit-border-radius: 3px;
|
1895
|
-
-moz-border-radius: 3px;
|
1896
|
-
border-radius: 3px;
|
1897
1754
|
}
|
1898
|
-
.
|
1899
|
-
|
1755
|
+
.navbar .dropdown-menu:before {
|
1756
|
+
content: '';
|
1757
|
+
display: inline-block;
|
1758
|
+
border-left: 7px solid transparent;
|
1759
|
+
border-right: 7px solid transparent;
|
1760
|
+
border-bottom: 7px solid #ccc;
|
1761
|
+
border-bottom-color: rgba(0, 0, 0, 0.1);
|
1762
|
+
position: absolute;
|
1763
|
+
top: -7px;
|
1764
|
+
left: 12px;
|
1900
1765
|
}
|
1901
|
-
.
|
1902
|
-
|
1766
|
+
.navbar .dropdown-menu:after {
|
1767
|
+
content: '';
|
1768
|
+
display: inline-block;
|
1769
|
+
border-left: 6px solid transparent;
|
1770
|
+
border-right: 6px solid transparent;
|
1771
|
+
border-bottom: 6px solid #fff;
|
1772
|
+
position: absolute;
|
1773
|
+
top: -6px;
|
1774
|
+
left: 13px;
|
1903
1775
|
}
|
1904
|
-
.
|
1905
|
-
|
1776
|
+
.navbar .dropdown-toggle .caret, .navbar .open.dropdown .caret {
|
1777
|
+
border-top-color: #fff;
|
1906
1778
|
}
|
1907
|
-
.
|
1908
|
-
background-color:
|
1779
|
+
.navbar .open .dropdown-toggle {
|
1780
|
+
background-color: transparent;
|
1909
1781
|
}
|
1910
|
-
.dropdown {
|
1911
|
-
|
1782
|
+
.navbar .nav.pull-right .dropdown-menu {
|
1783
|
+
right: 0;
|
1912
1784
|
}
|
1913
|
-
.dropdown-
|
1914
|
-
|
1915
|
-
|
1916
|
-
height: 0;
|
1917
|
-
margin-top: 8px;
|
1918
|
-
margin-left: 6px;
|
1919
|
-
text-indent: -99999px;
|
1920
|
-
vertical-align: top;
|
1921
|
-
border-left: 4px solid transparent;
|
1922
|
-
border-right: 4px solid transparent;
|
1923
|
-
border-top: 4px solid #ffffff;
|
1924
|
-
filter: alpha(opacity=30);
|
1925
|
-
-moz-opacity: 0.3;
|
1926
|
-
opacity: 0.3;
|
1927
|
-
content: "↓";
|
1785
|
+
.navbar .nav.pull-right .dropdown-menu:before {
|
1786
|
+
left: auto;
|
1787
|
+
right: 12px;
|
1928
1788
|
}
|
1929
|
-
.
|
1930
|
-
|
1931
|
-
|
1932
|
-
opacity: 1;
|
1789
|
+
.navbar .nav.pull-right .dropdown-menu:after {
|
1790
|
+
left: auto;
|
1791
|
+
right: 13px;
|
1933
1792
|
}
|
1934
|
-
.
|
1935
|
-
position: absolute;
|
1936
|
-
top: 40px;
|
1937
|
-
z-index: 900;
|
1938
|
-
float: left;
|
1939
|
-
display: none;
|
1940
|
-
min-width: 160px;
|
1941
|
-
max-width: 220px;
|
1942
|
-
_width: 160px;
|
1943
|
-
padding: 6px 0;
|
1793
|
+
.nav {
|
1944
1794
|
margin-left: 0;
|
1945
|
-
margin-
|
1946
|
-
|
1947
|
-
border-color: #999;
|
1948
|
-
border-color: rgba(0, 0, 0, 0.2);
|
1949
|
-
border-style: solid;
|
1950
|
-
border-width: 0 1px 1px;
|
1951
|
-
-webkit-border-radius: 0 0 6px 6px;
|
1952
|
-
-moz-border-radius: 0 0 6px 6px;
|
1953
|
-
border-radius: 0 0 6px 6px;
|
1954
|
-
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
1955
|
-
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
1956
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
1957
|
-
-webkit-background-clip: padding-box;
|
1958
|
-
-moz-background-clip: padding-box;
|
1959
|
-
background-clip: padding-box;
|
1960
|
-
zoom: 1;
|
1795
|
+
margin-bottom: 18px;
|
1796
|
+
list-style: none;
|
1961
1797
|
}
|
1962
|
-
.
|
1963
|
-
float: none;
|
1798
|
+
.nav > li > a {
|
1964
1799
|
display: block;
|
1965
|
-
background-color: none;
|
1966
1800
|
}
|
1967
|
-
.
|
1968
|
-
|
1969
|
-
margin: 5px 0;
|
1970
|
-
overflow: hidden;
|
1801
|
+
.nav > li > a:hover {
|
1802
|
+
text-decoration: none;
|
1971
1803
|
background-color: #eee;
|
1972
|
-
border-bottom: 1px solid #ffffff;
|
1973
1804
|
}
|
1974
|
-
.
|
1805
|
+
.nav.list {
|
1806
|
+
padding-left: 14px;
|
1807
|
+
padding-right: 14px;
|
1808
|
+
margin-bottom: 0;
|
1809
|
+
}
|
1810
|
+
.nav.list > li > a, .nav.list .nav-header {
|
1975
1811
|
display: block;
|
1976
|
-
padding:
|
1977
|
-
|
1978
|
-
|
1812
|
+
padding: 3px 15px;
|
1813
|
+
margin-left: -15px;
|
1814
|
+
margin-right: -15px;
|
1815
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
1816
|
+
}
|
1817
|
+
.nav.list .nav-header {
|
1818
|
+
font-size: 11px;
|
1819
|
+
font-weight: bold;
|
1979
1820
|
line-height: 18px;
|
1980
|
-
color: #
|
1981
|
-
text-
|
1821
|
+
color: #999999;
|
1822
|
+
text-transform: uppercase;
|
1982
1823
|
}
|
1983
|
-
.
|
1984
|
-
|
1985
|
-
text-decoration: none;
|
1986
|
-
background-color: #dddddd;
|
1987
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
|
1988
|
-
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
1989
|
-
background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
|
1990
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
|
1991
|
-
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
1992
|
-
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
1993
|
-
background-image: linear-gradient(top, #eeeeee, #dddddd);
|
1994
|
-
background-repeat: repeat-x;
|
1995
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
|
1996
|
-
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
|
1997
|
-
-moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
|
1998
|
-
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
|
1824
|
+
.nav.list > li + .nav-header {
|
1825
|
+
margin-top: 9px;
|
1999
1826
|
}
|
2000
|
-
.
|
1827
|
+
.nav.list .active > a {
|
2001
1828
|
color: #ffffff;
|
2002
|
-
|
2003
|
-
background:
|
2004
|
-
}
|
2005
|
-
.dropdown.open .dropdown-menu {
|
2006
|
-
display: block;
|
1829
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
|
1830
|
+
background-color: #0088cc;
|
2007
1831
|
}
|
2008
1832
|
.tabs, .pills {
|
2009
|
-
padding: 0;
|
2010
|
-
margin: 0 0 20px;
|
2011
|
-
list-style: none;
|
2012
1833
|
zoom: 1;
|
2013
1834
|
}
|
2014
1835
|
.tabs:before,
|
@@ -2027,268 +1848,193 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2027
1848
|
float: left;
|
2028
1849
|
}
|
2029
1850
|
.tabs > li > a, .pills > li > a {
|
2030
|
-
|
1851
|
+
padding-right: 12px;
|
1852
|
+
padding-left: 12px;
|
1853
|
+
margin-right: 2px;
|
1854
|
+
line-height: 14px;
|
2031
1855
|
}
|
2032
1856
|
.tabs {
|
2033
|
-
border-
|
2034
|
-
border-style: solid;
|
2035
|
-
border-width: 0 0 1px;
|
1857
|
+
border-bottom: 1px solid #ddd;
|
2036
1858
|
}
|
2037
1859
|
.tabs > li {
|
2038
|
-
position: relative;
|
2039
1860
|
margin-bottom: -1px;
|
2040
1861
|
}
|
2041
1862
|
.tabs > li > a {
|
2042
|
-
padding:
|
2043
|
-
|
2044
|
-
line-height: 36px;
|
1863
|
+
padding-top: 9px;
|
1864
|
+
padding-bottom: 9px;
|
2045
1865
|
border: 1px solid transparent;
|
2046
1866
|
-webkit-border-radius: 4px 4px 0 0;
|
2047
1867
|
-moz-border-radius: 4px 4px 0 0;
|
2048
1868
|
border-radius: 4px 4px 0 0;
|
2049
1869
|
}
|
2050
1870
|
.tabs > li > a:hover {
|
2051
|
-
text-decoration: none;
|
2052
|
-
background-color: #eee;
|
2053
1871
|
border-color: #eee #eee #ddd;
|
2054
1872
|
}
|
2055
1873
|
.tabs .active > a, .tabs .active > a:hover {
|
2056
|
-
color: #
|
1874
|
+
color: #555555;
|
2057
1875
|
background-color: #ffffff;
|
2058
1876
|
border: 1px solid #ddd;
|
2059
1877
|
border-bottom-color: transparent;
|
2060
1878
|
cursor: default;
|
2061
1879
|
}
|
2062
|
-
.
|
2063
|
-
|
2064
|
-
|
2065
|
-
|
2066
|
-
margin-bottom:
|
1880
|
+
.pills > li > a {
|
1881
|
+
padding-top: 8px;
|
1882
|
+
padding-bottom: 8px;
|
1883
|
+
margin-top: 2px;
|
1884
|
+
margin-bottom: 2px;
|
1885
|
+
-webkit-border-radius: 5px;
|
1886
|
+
-moz-border-radius: 5px;
|
1887
|
+
border-radius: 5px;
|
1888
|
+
}
|
1889
|
+
.pills .active > a, .pills .active > a:hover {
|
1890
|
+
color: #ffffff;
|
1891
|
+
background-color: #0088cc;
|
1892
|
+
}
|
1893
|
+
.nav.stacked > li {
|
1894
|
+
float: none;
|
1895
|
+
}
|
1896
|
+
.nav.stacked > li > a {
|
1897
|
+
margin-right: 0;
|
1898
|
+
}
|
1899
|
+
.tabs.stacked {
|
2067
1900
|
border-bottom: 0;
|
2068
1901
|
}
|
2069
|
-
.
|
2070
|
-
padding: 19px;
|
1902
|
+
.tabs.stacked > li > a {
|
2071
1903
|
border: 1px solid #ddd;
|
1904
|
+
-webkit-border-radius: 0;
|
1905
|
+
-moz-border-radius: 0;
|
1906
|
+
border-radius: 0;
|
2072
1907
|
}
|
2073
|
-
.
|
2074
|
-
|
2075
|
-
|
1908
|
+
.tabs.stacked > li:first-child > a {
|
1909
|
+
-webkit-border-radius: 4px 4px 0 0;
|
1910
|
+
-moz-border-radius: 4px 4px 0 0;
|
1911
|
+
border-radius: 4px 4px 0 0;
|
2076
1912
|
}
|
2077
|
-
.
|
1913
|
+
.tabs.stacked > li:last-child > a {
|
2078
1914
|
-webkit-border-radius: 0 0 4px 4px;
|
2079
1915
|
-moz-border-radius: 0 0 4px 4px;
|
2080
1916
|
border-radius: 0 0 4px 4px;
|
2081
1917
|
}
|
2082
|
-
.
|
2083
|
-
border-
|
2084
|
-
|
1918
|
+
.tabs.stacked > li > a:hover {
|
1919
|
+
border-color: #ddd;
|
1920
|
+
z-index: 2;
|
2085
1921
|
}
|
2086
|
-
.
|
2087
|
-
|
1922
|
+
.pills.stacked > li > a {
|
1923
|
+
margin-bottom: 3px;
|
1924
|
+
}
|
1925
|
+
.pills.stacked > li:last-child > a {
|
1926
|
+
margin-bottom: 1px;
|
1927
|
+
}
|
1928
|
+
.nav .dropdown-menu {
|
1929
|
+
top: 33px;
|
1930
|
+
border-width: 1px;
|
2088
1931
|
}
|
2089
|
-
.
|
1932
|
+
.pills .dropdown-menu {
|
1933
|
+
-webkit-border-radius: 4px;
|
1934
|
+
-moz-border-radius: 4px;
|
1935
|
+
border-radius: 4px;
|
1936
|
+
}
|
1937
|
+
.nav .dropdown-toggle .caret {
|
1938
|
+
border-top-color: #0088cc;
|
1939
|
+
margin-top: 6px;
|
1940
|
+
}
|
1941
|
+
.nav .dropdown-toggle:hover .caret {
|
1942
|
+
border-top-color: #005580;
|
1943
|
+
}
|
1944
|
+
.nav .open .dropdown-toggle {
|
1945
|
+
background-color: #999;
|
1946
|
+
border-color: #999;
|
1947
|
+
}
|
1948
|
+
.nav .open .caret, .nav .open a:hover .caret {
|
1949
|
+
border-top-color: #fff;
|
1950
|
+
filter: alpha(opacity=100);
|
1951
|
+
-moz-opacity: 1;
|
1952
|
+
opacity: 1;
|
1953
|
+
}
|
1954
|
+
.tabs.stacked .open > a:hover {
|
1955
|
+
border-color: #999;
|
1956
|
+
}
|
1957
|
+
.tabbable {
|
2090
1958
|
zoom: 1;
|
2091
1959
|
}
|
2092
|
-
.tabbable
|
2093
|
-
.tabbable.tabs-right:before,
|
2094
|
-
.tabbable.tabs-left:after,
|
2095
|
-
.tabbable.tabs-right:after {
|
1960
|
+
.tabbable:before, .tabbable:after {
|
2096
1961
|
display: table;
|
2097
1962
|
*display: inline;
|
2098
1963
|
content: "";
|
2099
1964
|
zoom: 1;
|
2100
1965
|
}
|
2101
|
-
.tabbable
|
1966
|
+
.tabbable:after {
|
2102
1967
|
clear: both;
|
2103
1968
|
}
|
2104
|
-
.
|
2105
|
-
|
1969
|
+
.tabs-below .tabs, .tabs-right .tabs, .tabs-left .tabs {
|
1970
|
+
border-bottom: 0;
|
2106
1971
|
}
|
2107
|
-
.
|
2108
|
-
|
2109
|
-
margin-bottom: -1px;
|
1972
|
+
.tab-content > .tab-pane, .pill-content > .pill-pane {
|
1973
|
+
display: none;
|
2110
1974
|
}
|
2111
|
-
.
|
2112
|
-
|
1975
|
+
.tab-content > .active, .pill-content > .active {
|
1976
|
+
display: block;
|
2113
1977
|
}
|
2114
|
-
.
|
2115
|
-
border-
|
1978
|
+
.tabs-below .tabs {
|
1979
|
+
border-top: 1px solid #ddd;
|
2116
1980
|
}
|
2117
|
-
.
|
2118
|
-
margin-
|
1981
|
+
.tabs-below .tabs > li {
|
1982
|
+
margin-top: -1px;
|
1983
|
+
margin-bottom: 0;
|
2119
1984
|
}
|
2120
|
-
.
|
2121
|
-
|
1985
|
+
.tabs-below .tabs > li > a {
|
1986
|
+
-webkit-border-radius: 0 0 4px 4px;
|
1987
|
+
-moz-border-radius: 0 0 4px 4px;
|
1988
|
+
border-radius: 0 0 4px 4px;
|
2122
1989
|
}
|
2123
|
-
.
|
2124
|
-
|
1990
|
+
.tabs-below .tabs > li > a:hover {
|
1991
|
+
border-bottom-color: transparent;
|
1992
|
+
border-top-color: #ddd;
|
1993
|
+
}
|
1994
|
+
.tabs-below .tabs .active > a, .tabs-below .tabs .active > a:hover {
|
1995
|
+
border-color: transparent #ddd #ddd #ddd;
|
1996
|
+
}
|
1997
|
+
.tabs-left .tabs > li, .tabs-right .tabs > li {
|
1998
|
+
float: none;
|
2125
1999
|
}
|
2126
|
-
.
|
2000
|
+
.tabs-left .tabs > li > a, .tabs-right .tabs > li > a {
|
2001
|
+
min-width: 74px;
|
2127
2002
|
margin-right: 0;
|
2003
|
+
margin-bottom: 3px;
|
2004
|
+
}
|
2005
|
+
.tabs-left .tabs {
|
2006
|
+
float: left;
|
2007
|
+
margin-right: 19px;
|
2008
|
+
border-right: 1px solid #ddd;
|
2009
|
+
}
|
2010
|
+
.tabs-left .tabs > li > a {
|
2011
|
+
margin-right: -1px;
|
2128
2012
|
-webkit-border-radius: 4px 0 0 4px;
|
2129
2013
|
-moz-border-radius: 4px 0 0 4px;
|
2130
2014
|
border-radius: 4px 0 0 4px;
|
2131
2015
|
}
|
2132
|
-
.
|
2133
|
-
border-
|
2134
|
-
}
|
2135
|
-
.tabbable.tabs-left .tabs .active > a, .tabbable.tabs-left .tabs .active > a:hover {
|
2136
|
-
border-color: #ddd;
|
2137
|
-
border-right-color: transparent;
|
2016
|
+
.tabs-left .tabs > li > a:hover {
|
2017
|
+
border-color: #eee #ddd #eee #eee;
|
2138
2018
|
}
|
2139
|
-
.
|
2140
|
-
|
2019
|
+
.tabs-left .tabs .active > a, .tabs-left .tabs .active > a:hover {
|
2020
|
+
border-color: #ddd transparent #ddd #ddd;
|
2141
2021
|
}
|
2142
|
-
.
|
2022
|
+
.tabs-right .tabs {
|
2143
2023
|
float: right;
|
2024
|
+
margin-left: 19px;
|
2025
|
+
border-left: 1px solid #ddd;
|
2144
2026
|
}
|
2145
|
-
.
|
2027
|
+
.tabs-right .tabs > li > a {
|
2146
2028
|
margin-left: -1px;
|
2147
|
-
}
|
2148
|
-
.tabbable.tabs-right .tabs > li > a {
|
2149
|
-
margin-left: 0;
|
2150
2029
|
-webkit-border-radius: 0 4px 4px 0;
|
2151
2030
|
-moz-border-radius: 0 4px 4px 0;
|
2152
2031
|
border-radius: 0 4px 4px 0;
|
2153
2032
|
}
|
2154
|
-
.
|
2155
|
-
border-
|
2156
|
-
}
|
2157
|
-
.tabbable.tabs-right .tabs .active > a, .tabbable.tabs-right .tabs .active > a:hover {
|
2158
|
-
border-color: #ddd;
|
2159
|
-
border-left-color: transparent;
|
2160
|
-
}
|
2161
|
-
.tabs .menu-dropdown, .tabs .dropdown-menu {
|
2162
|
-
top: 35px;
|
2163
|
-
border-width: 1px;
|
2164
|
-
-webkit-border-radius: 0 6px 6px 6px;
|
2165
|
-
-moz-border-radius: 0 6px 6px 6px;
|
2166
|
-
border-radius: 0 6px 6px 6px;
|
2167
|
-
}
|
2168
|
-
.tabs a.menu:after, .tabs .dropdown-toggle:after {
|
2169
|
-
border-top-color: #999;
|
2170
|
-
margin-top: 15px;
|
2171
|
-
margin-left: 5px;
|
2172
|
-
}
|
2173
|
-
.tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle {
|
2174
|
-
border-color: #999;
|
2175
|
-
}
|
2176
|
-
.tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
|
2177
|
-
border-top-color: #555;
|
2178
|
-
}
|
2179
|
-
.pills > li > a {
|
2180
|
-
padding: 0 15px;
|
2181
|
-
margin: 5px 3px 5px 0;
|
2182
|
-
line-height: 30px;
|
2183
|
-
text-shadow: 0 1px 1px #ffffff;
|
2184
|
-
-webkit-border-radius: 15px;
|
2185
|
-
-moz-border-radius: 15px;
|
2186
|
-
border-radius: 15px;
|
2187
|
-
}
|
2188
|
-
.pills > li > a:hover {
|
2189
|
-
color: #ffffff;
|
2190
|
-
text-decoration: none;
|
2191
|
-
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
|
2192
|
-
background-color: #00438a;
|
2193
|
-
}
|
2194
|
-
.pills .active > a {
|
2195
|
-
color: #ffffff;
|
2196
|
-
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
|
2197
|
-
background-color: #0069d6;
|
2198
|
-
}
|
2199
|
-
.pills-vertical > li {
|
2200
|
-
float: none;
|
2201
|
-
}
|
2202
|
-
.tab-content > .tab-pane, .pill-content > .pill-pane {
|
2203
|
-
display: none;
|
2204
|
-
}
|
2205
|
-
.tab-content > .active, .pill-content > .active {
|
2206
|
-
display: block;
|
2207
|
-
}
|
2208
|
-
.step-nav {
|
2209
|
-
position: relative;
|
2210
|
-
margin: 0 0 18px;
|
2211
|
-
list-style: none;
|
2212
|
-
line-height: 30px;
|
2213
|
-
text-align: center;
|
2214
|
-
background-color: #f5f5f5;
|
2215
|
-
-webkit-border-radius: 15px;
|
2216
|
-
-moz-border-radius: 15px;
|
2217
|
-
border-radius: 15px;
|
2218
|
-
}
|
2219
|
-
.step-nav li {
|
2220
|
-
display: inline;
|
2221
|
-
color: #bfbfbf;
|
2222
|
-
}
|
2223
|
-
.step-nav .prev, .step-nav .next {
|
2224
|
-
position: absolute;
|
2225
|
-
top: 6px;
|
2226
|
-
}
|
2227
|
-
.step-nav .prev {
|
2228
|
-
left: 15px;
|
2229
|
-
}
|
2230
|
-
.step-nav .next {
|
2231
|
-
right: 15px;
|
2232
|
-
}
|
2233
|
-
.step-nav .dot {
|
2234
|
-
display: inline-block;
|
2235
|
-
width: 10px;
|
2236
|
-
height: 10px;
|
2237
|
-
margin: 0 3px;
|
2238
|
-
text-indent: -999em;
|
2239
|
-
background-color: #bfbfbf;
|
2240
|
-
-webkit-border-radius: 5px;
|
2241
|
-
-moz-border-radius: 5px;
|
2242
|
-
border-radius: 5px;
|
2243
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
|
2244
|
-
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
|
2245
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25);
|
2246
|
-
}
|
2247
|
-
.step-nav .dot:hover, .step-nav .active .dot {
|
2248
|
-
background-color: #404040;
|
2249
|
-
}
|
2250
|
-
.subnav {
|
2251
|
-
background-color: #eeeeee;
|
2252
|
-
background-image: -khtml-gradient(linear, left top, left bottom, from(#f5f5f5), to(#eeeeee));
|
2253
|
-
background-image: -moz-linear-gradient(top, #f5f5f5, #eeeeee);
|
2254
|
-
background-image: -ms-linear-gradient(top, #f5f5f5, #eeeeee);
|
2255
|
-
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #eeeeee));
|
2256
|
-
background-image: -webkit-linear-gradient(top, #f5f5f5, #eeeeee);
|
2257
|
-
background-image: -o-linear-gradient(top, #f5f5f5, #eeeeee);
|
2258
|
-
background-image: linear-gradient(top, #f5f5f5, #eeeeee);
|
2259
|
-
background-repeat: repeat-x;
|
2260
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#eeeeee', GradientType=0);
|
2261
|
-
-webkit-box-shadow: inset 0 1px 0 #ffffff, 0 0 5px rgba(0, 0, 0, 0.5);
|
2262
|
-
-moz-box-shadow: inset 0 1px 0 #ffffff, 0 0 5px rgba(0, 0, 0, 0.5);
|
2263
|
-
box-shadow: inset 0 1px 0 #ffffff, 0 0 5px rgba(0, 0, 0, 0.5);
|
2264
|
-
}
|
2265
|
-
.subnav a {
|
2266
|
-
padding: 8px 10px;
|
2267
|
-
font-size: 12px;
|
2268
|
-
color: #0069d6;
|
2269
|
-
text-shadow: 0 1px 0 #fff;
|
2270
|
-
border-left: 1px solid #f9f9f9;
|
2271
|
-
border-right: 1px solid #e5e5e5;
|
2272
|
-
}
|
2273
|
-
.subnav a:hover {
|
2274
|
-
color: #00438a;
|
2275
|
-
background-color: #eee;
|
2033
|
+
.tabs-right .tabs > li > a:hover {
|
2034
|
+
border-color: #eee #eee #eee #ddd;
|
2276
2035
|
}
|
2277
|
-
.
|
2278
|
-
border-
|
2279
|
-
-webkit-border-radius: 6px 0 0 6px;
|
2280
|
-
-moz-border-radius: 6px 0 0 6px;
|
2281
|
-
border-radius: 6px 0 0 6px;
|
2282
|
-
}
|
2283
|
-
.subnav li:last-child a {
|
2284
|
-
border-right: 0;
|
2285
|
-
-webkit-border-radius: 0 6px 6px 0;
|
2286
|
-
-moz-border-radius: 0 6px 6px 0;
|
2287
|
-
border-radius: 0 6px 6px 0;
|
2288
|
-
}
|
2289
|
-
.subnav ul .active > a {
|
2290
|
-
color: #404040;
|
2291
|
-
background-color: #eee;
|
2036
|
+
.tabs-right .tabs .active > a, .tabs-right .tabs .active > a:hover {
|
2037
|
+
border-color: #ddd #ddd #ddd transparent;
|
2292
2038
|
}
|
2293
2039
|
.breadcrumb {
|
2294
2040
|
padding: 7px 14px;
|
@@ -2317,17 +2063,21 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2317
2063
|
}
|
2318
2064
|
.breadcrumb .divider {
|
2319
2065
|
padding: 0 5px;
|
2320
|
-
color: #
|
2066
|
+
color: #999999;
|
2321
2067
|
}
|
2322
2068
|
.breadcrumb .active a {
|
2323
|
-
color: #
|
2069
|
+
color: #333333;
|
2324
2070
|
}
|
2325
2071
|
.pagination {
|
2326
2072
|
height: 36px;
|
2327
2073
|
margin: 18px 0;
|
2328
2074
|
}
|
2329
2075
|
.pagination ul {
|
2330
|
-
|
2076
|
+
display: inline-block;
|
2077
|
+
*display: inline;
|
2078
|
+
/* IE7 inline-block hack */
|
2079
|
+
|
2080
|
+
*zoom: 1;
|
2331
2081
|
margin: 0;
|
2332
2082
|
border: 1px solid #ddd;
|
2333
2083
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
@@ -2357,266 +2107,623 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2357
2107
|
background-color: #c7eefe;
|
2358
2108
|
}
|
2359
2109
|
.pagination .disabled a, .pagination .disabled a:hover {
|
2360
|
-
color: #
|
2110
|
+
color: #999999;
|
2361
2111
|
background-color: transparent;
|
2112
|
+
cursor: default;
|
2362
2113
|
}
|
2363
2114
|
.pagination .next a {
|
2364
2115
|
border: 0;
|
2365
2116
|
}
|
2117
|
+
.pagination.centered {
|
2118
|
+
text-align: center;
|
2119
|
+
}
|
2366
2120
|
.modal-backdrop {
|
2367
2121
|
position: fixed;
|
2368
2122
|
top: 0;
|
2369
2123
|
right: 0;
|
2370
2124
|
bottom: 0;
|
2371
2125
|
left: 0;
|
2372
|
-
z-index:
|
2126
|
+
z-index: 1020;
|
2373
2127
|
background-color: #000000;
|
2374
2128
|
}
|
2375
2129
|
.modal-backdrop.fade {
|
2376
2130
|
opacity: 0;
|
2377
2131
|
}
|
2378
|
-
.modal-backdrop, .modal-backdrop.fade.in {
|
2379
|
-
filter: alpha(opacity=80);
|
2380
|
-
-moz-opacity: 0.8;
|
2381
|
-
opacity: 0.8;
|
2132
|
+
.modal-backdrop, .modal-backdrop.fade.in {
|
2133
|
+
filter: alpha(opacity=80);
|
2134
|
+
-moz-opacity: 0.8;
|
2135
|
+
opacity: 0.8;
|
2136
|
+
}
|
2137
|
+
.modal {
|
2138
|
+
position: fixed;
|
2139
|
+
top: 50%;
|
2140
|
+
left: 50%;
|
2141
|
+
z-index: 1030;
|
2142
|
+
max-height: 500px;
|
2143
|
+
overflow: auto;
|
2144
|
+
width: 560px;
|
2145
|
+
margin: -250px 0 0 -250px;
|
2146
|
+
background-color: #ffffff;
|
2147
|
+
border: 1px solid #999;
|
2148
|
+
border: 1px solid rgba(0, 0, 0, 0.3);
|
2149
|
+
*border: 1px solid #999;
|
2150
|
+
/* IE6-7 */
|
2151
|
+
|
2152
|
+
-webkit-border-radius: 6px;
|
2153
|
+
-moz-border-radius: 6px;
|
2154
|
+
border-radius: 6px;
|
2155
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2156
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2157
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2158
|
+
-webkit-background-clip: padding-box;
|
2159
|
+
-moz-background-clip: padding-box;
|
2160
|
+
background-clip: padding-box;
|
2161
|
+
}
|
2162
|
+
.modal.fade {
|
2163
|
+
-webkit-transition: opacity .3s linear, top .3s ease-out;
|
2164
|
+
-moz-transition: opacity .3s linear, top .3s ease-out;
|
2165
|
+
-ms-transition: opacity .3s linear, top .3s ease-out;
|
2166
|
+
-o-transition: opacity .3s linear, top .3s ease-out;
|
2167
|
+
transition: opacity .3s linear, top .3s ease-out;
|
2168
|
+
top: -25%;
|
2169
|
+
}
|
2170
|
+
.modal.fade.in {
|
2171
|
+
top: 50%;
|
2172
|
+
}
|
2173
|
+
.modal-header {
|
2174
|
+
padding: 5px 15px;
|
2175
|
+
border-bottom: 1px solid #eee;
|
2176
|
+
}
|
2177
|
+
.modal-header .close {
|
2178
|
+
margin-top: 7px;
|
2179
|
+
}
|
2180
|
+
.modal-body {
|
2181
|
+
padding: 15px;
|
2182
|
+
}
|
2183
|
+
.modal-footer {
|
2184
|
+
padding: 14px 15px 15px;
|
2185
|
+
margin-bottom: 0;
|
2186
|
+
background-color: #f5f5f5;
|
2187
|
+
border-top: 1px solid #ddd;
|
2188
|
+
-webkit-border-radius: 0 0 6px 6px;
|
2189
|
+
-moz-border-radius: 0 0 6px 6px;
|
2190
|
+
border-radius: 0 0 6px 6px;
|
2191
|
+
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2192
|
+
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2193
|
+
box-shadow: inset 0 1px 0 #ffffff;
|
2194
|
+
zoom: 1;
|
2195
|
+
}
|
2196
|
+
.modal-footer:before, .modal-footer:after {
|
2197
|
+
display: table;
|
2198
|
+
*display: inline;
|
2199
|
+
content: "";
|
2200
|
+
zoom: 1;
|
2201
|
+
}
|
2202
|
+
.modal-footer:after {
|
2203
|
+
clear: both;
|
2204
|
+
}
|
2205
|
+
.modal-footer .btn {
|
2206
|
+
float: right;
|
2207
|
+
margin-left: 5px;
|
2208
|
+
}
|
2209
|
+
.twipsy {
|
2210
|
+
position: absolute;
|
2211
|
+
z-index: 1050;
|
2212
|
+
display: block;
|
2213
|
+
visibility: visible;
|
2214
|
+
padding: 5px;
|
2215
|
+
font-size: 11px;
|
2216
|
+
filter: alpha(opacity=0);
|
2217
|
+
-moz-opacity: 0;
|
2218
|
+
opacity: 0;
|
2219
|
+
}
|
2220
|
+
.twipsy.in {
|
2221
|
+
filter: alpha(opacity=80);
|
2222
|
+
-moz-opacity: 0.8;
|
2223
|
+
opacity: 0.8;
|
2224
|
+
}
|
2225
|
+
.twipsy.top {
|
2226
|
+
margin-top: -2px;
|
2227
|
+
}
|
2228
|
+
.twipsy.right {
|
2229
|
+
margin-left: 2px;
|
2230
|
+
}
|
2231
|
+
.twipsy.bottom {
|
2232
|
+
margin-top: 2px;
|
2233
|
+
}
|
2234
|
+
.twipsy.left {
|
2235
|
+
margin-left: -2px;
|
2236
|
+
}
|
2237
|
+
.twipsy.top .twipsy-arrow {
|
2238
|
+
bottom: 0;
|
2239
|
+
left: 50%;
|
2240
|
+
margin-left: -5px;
|
2241
|
+
border-left: 5px solid transparent;
|
2242
|
+
border-right: 5px solid transparent;
|
2243
|
+
border-top: 5px solid #000000;
|
2244
|
+
}
|
2245
|
+
.twipsy.left .twipsy-arrow {
|
2246
|
+
top: 50%;
|
2247
|
+
right: 0;
|
2248
|
+
margin-top: -5px;
|
2249
|
+
border-top: 5px solid transparent;
|
2250
|
+
border-bottom: 5px solid transparent;
|
2251
|
+
border-left: 5px solid #000000;
|
2252
|
+
}
|
2253
|
+
.twipsy.bottom .twipsy-arrow {
|
2254
|
+
top: 0;
|
2255
|
+
left: 50%;
|
2256
|
+
margin-left: -5px;
|
2257
|
+
border-left: 5px solid transparent;
|
2258
|
+
border-right: 5px solid transparent;
|
2259
|
+
border-bottom: 5px solid #000000;
|
2260
|
+
}
|
2261
|
+
.twipsy.right .twipsy-arrow {
|
2262
|
+
top: 50%;
|
2263
|
+
left: 0;
|
2264
|
+
margin-top: -5px;
|
2265
|
+
border-top: 5px solid transparent;
|
2266
|
+
border-bottom: 5px solid transparent;
|
2267
|
+
border-right: 5px solid #000000;
|
2268
|
+
}
|
2269
|
+
.twipsy-inner {
|
2270
|
+
max-width: 200px;
|
2271
|
+
padding: 3px 8px;
|
2272
|
+
color: white;
|
2273
|
+
text-align: center;
|
2274
|
+
text-decoration: none;
|
2275
|
+
background-color: #000000;
|
2276
|
+
-webkit-border-radius: 4px;
|
2277
|
+
-moz-border-radius: 4px;
|
2278
|
+
border-radius: 4px;
|
2279
|
+
}
|
2280
|
+
.twipsy-arrow {
|
2281
|
+
position: absolute;
|
2282
|
+
width: 0;
|
2283
|
+
height: 0;
|
2284
|
+
}
|
2285
|
+
.popover {
|
2286
|
+
position: absolute;
|
2287
|
+
top: 0;
|
2288
|
+
left: 0;
|
2289
|
+
z-index: 1040;
|
2290
|
+
display: none;
|
2291
|
+
padding: 5px;
|
2292
|
+
}
|
2293
|
+
.popover.top {
|
2294
|
+
margin-top: -5px;
|
2295
|
+
}
|
2296
|
+
.popover.right {
|
2297
|
+
margin-left: 5px;
|
2298
|
+
}
|
2299
|
+
.popover.bottom {
|
2300
|
+
margin-top: 5px;
|
2301
|
+
}
|
2302
|
+
.popover.left {
|
2303
|
+
margin-left: -5px;
|
2304
|
+
}
|
2305
|
+
.popover.top .arrow {
|
2306
|
+
bottom: 0;
|
2307
|
+
left: 50%;
|
2308
|
+
margin-left: -5px;
|
2309
|
+
border-left: 5px solid transparent;
|
2310
|
+
border-right: 5px solid transparent;
|
2311
|
+
border-top: 5px solid #000000;
|
2312
|
+
}
|
2313
|
+
.popover.right .arrow {
|
2314
|
+
top: 50%;
|
2315
|
+
left: 0;
|
2316
|
+
margin-top: -5px;
|
2317
|
+
border-top: 5px solid transparent;
|
2318
|
+
border-bottom: 5px solid transparent;
|
2319
|
+
border-right: 5px solid #000000;
|
2320
|
+
}
|
2321
|
+
.popover.bottom .arrow {
|
2322
|
+
top: 0;
|
2323
|
+
left: 50%;
|
2324
|
+
margin-left: -5px;
|
2325
|
+
border-left: 5px solid transparent;
|
2326
|
+
border-right: 5px solid transparent;
|
2327
|
+
border-bottom: 5px solid #000000;
|
2328
|
+
}
|
2329
|
+
.popover.left .arrow {
|
2330
|
+
top: 50%;
|
2331
|
+
right: 0;
|
2332
|
+
margin-top: -5px;
|
2333
|
+
border-top: 5px solid transparent;
|
2334
|
+
border-bottom: 5px solid transparent;
|
2335
|
+
border-left: 5px solid #000000;
|
2336
|
+
}
|
2337
|
+
.popover .arrow {
|
2338
|
+
position: absolute;
|
2339
|
+
width: 0;
|
2340
|
+
height: 0;
|
2341
|
+
}
|
2342
|
+
.popover .inner {
|
2343
|
+
padding: 3px;
|
2344
|
+
width: 280px;
|
2345
|
+
overflow: hidden;
|
2346
|
+
background-color: #000000;
|
2347
|
+
background-color: rgba(0, 0, 0, 0.8);
|
2348
|
+
-webkit-border-radius: 6px;
|
2349
|
+
-moz-border-radius: 6px;
|
2350
|
+
border-radius: 6px;
|
2351
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2352
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2353
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2354
|
+
}
|
2355
|
+
.popover .title {
|
2356
|
+
padding: 9px 15px;
|
2357
|
+
line-height: 1;
|
2358
|
+
background-color: #f5f5f5;
|
2359
|
+
border-bottom: 1px solid #eee;
|
2360
|
+
-webkit-border-radius: 3px 3px 0 0;
|
2361
|
+
-moz-border-radius: 3px 3px 0 0;
|
2362
|
+
border-radius: 3px 3px 0 0;
|
2363
|
+
}
|
2364
|
+
.popover .content {
|
2365
|
+
padding: 14px;
|
2366
|
+
background-color: #ffffff;
|
2367
|
+
-webkit-border-radius: 0 0 3px 3px;
|
2368
|
+
-moz-border-radius: 0 0 3px 3px;
|
2369
|
+
border-radius: 0 0 3px 3px;
|
2370
|
+
-webkit-background-clip: padding-box;
|
2371
|
+
-moz-background-clip: padding-box;
|
2372
|
+
background-clip: padding-box;
|
2373
|
+
}
|
2374
|
+
.popover .content p, .popover .content ul, .popover .content ol {
|
2375
|
+
margin-bottom: 0;
|
2376
|
+
}
|
2377
|
+
.btn.danger,
|
2378
|
+
.alert-message.danger,
|
2379
|
+
.btn.danger:hover,
|
2380
|
+
.alert-message.danger:hover,
|
2381
|
+
.btn.error,
|
2382
|
+
.alert-message.error,
|
2383
|
+
.btn.error:hover,
|
2384
|
+
.alert-message.error:hover,
|
2385
|
+
.btn.success,
|
2386
|
+
.alert-message.success,
|
2387
|
+
.btn.success:hover,
|
2388
|
+
.alert-message.success:hover,
|
2389
|
+
.btn.info,
|
2390
|
+
.alert-message.info,
|
2391
|
+
.btn.info:hover,
|
2392
|
+
.alert-message.info:hover {
|
2393
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2394
|
+
color: #ffffff;
|
2395
|
+
}
|
2396
|
+
.btn.danger,
|
2397
|
+
.alert-message.danger,
|
2398
|
+
.btn.error,
|
2399
|
+
.alert-message.error {
|
2400
|
+
background-color: #c43c35;
|
2401
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
2402
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
2403
|
+
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
2404
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
|
2405
|
+
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
2406
|
+
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
2407
|
+
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
2408
|
+
background-repeat: repeat-x;
|
2409
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
|
2410
|
+
border-color: #c43c35 #c43c35 #882a25;
|
2411
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2412
|
+
}
|
2413
|
+
.btn.success, .alert-message.success {
|
2414
|
+
background-color: #57a957;
|
2415
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
|
2416
|
+
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
2417
|
+
background-image: -ms-linear-gradient(top, #62c462, #57a957);
|
2418
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
|
2419
|
+
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
|
2420
|
+
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
2421
|
+
background-image: linear-gradient(top, #62c462, #57a957);
|
2422
|
+
background-repeat: repeat-x;
|
2423
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
|
2424
|
+
border-color: #57a957 #57a957 #3d773d;
|
2425
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2426
|
+
}
|
2427
|
+
.btn.info, .alert-message.info {
|
2428
|
+
background-color: #339bb9;
|
2429
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
|
2430
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
2431
|
+
background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
|
2432
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
|
2433
|
+
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
2434
|
+
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
2435
|
+
background-image: linear-gradient(top, #5bc0de, #339bb9);
|
2436
|
+
background-repeat: repeat-x;
|
2437
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
|
2438
|
+
border-color: #339bb9 #339bb9 #22697d;
|
2439
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2440
|
+
}
|
2441
|
+
.btn {
|
2442
|
+
display: inline-block;
|
2443
|
+
padding: 5px 10px 6px;
|
2444
|
+
font-size: 13px;
|
2445
|
+
line-height: normal;
|
2446
|
+
color: #333;
|
2447
|
+
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
|
2448
|
+
background-color: #e6e6e6;
|
2449
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
|
2450
|
+
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
2451
|
+
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
|
2452
|
+
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
2453
|
+
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
2454
|
+
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
|
2455
|
+
background-repeat: no-repeat;
|
2456
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
|
2457
|
+
border: 1px solid #ccc;
|
2458
|
+
border-bottom-color: #bbb;
|
2459
|
+
-webkit-border-radius: 4px;
|
2460
|
+
-moz-border-radius: 4px;
|
2461
|
+
border-radius: 4px;
|
2462
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2463
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2464
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2465
|
+
cursor: pointer;
|
2466
|
+
-webkit-transition: 0.1s linear all;
|
2467
|
+
-moz-transition: 0.1s linear all;
|
2468
|
+
-ms-transition: 0.1s linear all;
|
2469
|
+
-o-transition: 0.1s linear all;
|
2470
|
+
transition: 0.1s linear all;
|
2471
|
+
}
|
2472
|
+
.btn:hover {
|
2473
|
+
color: #333333;
|
2474
|
+
text-decoration: none;
|
2475
|
+
background-position: 0 -15px;
|
2476
|
+
}
|
2477
|
+
.btn:focus {
|
2478
|
+
outline: 1px dotted #666;
|
2479
|
+
}
|
2480
|
+
.btn.primary {
|
2481
|
+
color: #ffffff;
|
2482
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2483
|
+
background-color: #0064cd;
|
2484
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
|
2485
|
+
background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
|
2486
|
+
background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
|
2487
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
|
2488
|
+
background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
|
2489
|
+
background-image: -o-linear-gradient(top, #049cdb, #0064cd);
|
2490
|
+
background-image: linear-gradient(top, #049cdb, #0064cd);
|
2491
|
+
background-repeat: repeat-x;
|
2492
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
|
2493
|
+
border-color: #0064cd #0064cd #003f81;
|
2494
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2495
|
+
}
|
2496
|
+
.btn.active, .btn:active {
|
2497
|
+
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2498
|
+
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2499
|
+
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2500
|
+
}
|
2501
|
+
.btn.disabled {
|
2502
|
+
cursor: default;
|
2503
|
+
background-image: none;
|
2504
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
2505
|
+
filter: alpha(opacity=65);
|
2506
|
+
-moz-opacity: 0.65;
|
2507
|
+
opacity: 0.65;
|
2508
|
+
-webkit-box-shadow: none;
|
2509
|
+
-moz-box-shadow: none;
|
2510
|
+
box-shadow: none;
|
2511
|
+
}
|
2512
|
+
.btn[disabled] {
|
2513
|
+
cursor: default;
|
2514
|
+
background-image: none;
|
2515
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
2516
|
+
filter: alpha(opacity=65);
|
2517
|
+
-moz-opacity: 0.65;
|
2518
|
+
opacity: 0.65;
|
2519
|
+
-webkit-box-shadow: none;
|
2520
|
+
-moz-box-shadow: none;
|
2521
|
+
box-shadow: none;
|
2382
2522
|
}
|
2383
|
-
.
|
2384
|
-
|
2385
|
-
|
2386
|
-
|
2387
|
-
z-index: 11000;
|
2388
|
-
width: 560px;
|
2389
|
-
margin: -250px 0 0 -250px;
|
2390
|
-
background-color: #ffffff;
|
2391
|
-
border: 1px solid #999;
|
2392
|
-
border: 1px solid rgba(0, 0, 0, 0.3);
|
2393
|
-
*border: 1px solid #999;
|
2394
|
-
/* IE6-7 */
|
2395
|
-
|
2523
|
+
.btn.large {
|
2524
|
+
padding: 9px 14px 9px;
|
2525
|
+
font-size: 15px;
|
2526
|
+
line-height: normal;
|
2396
2527
|
-webkit-border-radius: 6px;
|
2397
2528
|
-moz-border-radius: 6px;
|
2398
2529
|
border-radius: 6px;
|
2399
|
-
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2400
|
-
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2401
|
-
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2402
|
-
-webkit-background-clip: padding-box;
|
2403
|
-
-moz-background-clip: padding-box;
|
2404
|
-
background-clip: padding-box;
|
2405
|
-
}
|
2406
|
-
.modal .close {
|
2407
|
-
margin-top: 7px;
|
2408
|
-
}
|
2409
|
-
.modal.fade {
|
2410
|
-
-webkit-transition: opacity .3s linear, top .3s ease-out;
|
2411
|
-
-moz-transition: opacity .3s linear, top .3s ease-out;
|
2412
|
-
-ms-transition: opacity .3s linear, top .3s ease-out;
|
2413
|
-
-o-transition: opacity .3s linear, top .3s ease-out;
|
2414
|
-
transition: opacity .3s linear, top .3s ease-out;
|
2415
|
-
top: -25%;
|
2416
2530
|
}
|
2417
|
-
.
|
2418
|
-
|
2531
|
+
.btn.small {
|
2532
|
+
padding: 7px 9px 7px;
|
2533
|
+
font-size: 11px;
|
2419
2534
|
}
|
2420
|
-
.
|
2421
|
-
|
2422
|
-
border-bottom: 1px solid #eee;
|
2535
|
+
:root .alert-message, :root .btn {
|
2536
|
+
border-radius: 0 \0;
|
2423
2537
|
}
|
2424
|
-
.
|
2425
|
-
padding:
|
2538
|
+
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
2539
|
+
padding: 0;
|
2540
|
+
border: 0;
|
2426
2541
|
}
|
2427
|
-
.
|
2428
|
-
|
2429
|
-
margin-bottom: 0;
|
2430
|
-
background-color: #f5f5f5;
|
2431
|
-
border-top: 1px solid #ddd;
|
2432
|
-
-webkit-border-radius: 0 0 6px 6px;
|
2433
|
-
-moz-border-radius: 0 0 6px 6px;
|
2434
|
-
border-radius: 0 0 6px 6px;
|
2435
|
-
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
2436
|
-
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
2437
|
-
box-shadow: inset 0 1px 0 #ffffff;
|
2542
|
+
.btn-group {
|
2543
|
+
position: relative;
|
2438
2544
|
zoom: 1;
|
2439
2545
|
}
|
2440
|
-
.
|
2546
|
+
.btn-group:before, .btn-group:after {
|
2441
2547
|
display: table;
|
2442
2548
|
*display: inline;
|
2443
2549
|
content: "";
|
2444
2550
|
zoom: 1;
|
2445
2551
|
}
|
2446
|
-
.
|
2552
|
+
.btn-group:after {
|
2447
2553
|
clear: both;
|
2448
2554
|
}
|
2449
|
-
.
|
2450
|
-
float: right;
|
2555
|
+
.btn-group + .btn-group {
|
2451
2556
|
margin-left: 5px;
|
2452
2557
|
}
|
2453
|
-
.
|
2454
|
-
|
2455
|
-
z-index: 1000;
|
2456
|
-
display: block;
|
2457
|
-
visibility: visible;
|
2458
|
-
padding: 5px;
|
2459
|
-
font-size: 11px;
|
2460
|
-
filter: alpha(opacity=0);
|
2461
|
-
-moz-opacity: 0;
|
2462
|
-
opacity: 0;
|
2558
|
+
.btn-toolbar .btn-group {
|
2559
|
+
display: inline-block;
|
2463
2560
|
}
|
2464
|
-
.
|
2465
|
-
|
2466
|
-
|
2467
|
-
|
2561
|
+
.btn-group .btn {
|
2562
|
+
position: relative;
|
2563
|
+
float: left;
|
2564
|
+
margin-left: -1px;
|
2565
|
+
-webkit-border-radius: 0;
|
2566
|
+
-moz-border-radius: 0;
|
2567
|
+
border-radius: 0;
|
2468
2568
|
}
|
2469
|
-
.
|
2470
|
-
margin-
|
2569
|
+
.btn-group .btn:first-child {
|
2570
|
+
margin-left: 0;
|
2571
|
+
-webkit-border-top-left-radius: 4px;
|
2572
|
+
-moz-border-radius-topleft: 4px;
|
2573
|
+
border-top-left-radius: 4px;
|
2574
|
+
-webkit-border-bottom-left-radius: 4px;
|
2575
|
+
-moz-border-radius-bottomleft: 4px;
|
2576
|
+
border-bottom-left-radius: 4px;
|
2471
2577
|
}
|
2472
|
-
.
|
2473
|
-
|
2578
|
+
.btn-group .btn:last-child, .btn-group .dropdown-toggle {
|
2579
|
+
-webkit-border-top-right-radius: 4px;
|
2580
|
+
-moz-border-radius-topright: 4px;
|
2581
|
+
border-top-right-radius: 4px;
|
2582
|
+
-webkit-border-bottom-right-radius: 4px;
|
2583
|
+
-moz-border-radius-bottomright: 4px;
|
2584
|
+
border-bottom-right-radius: 4px;
|
2474
2585
|
}
|
2475
|
-
.
|
2476
|
-
margin-
|
2586
|
+
.btn-group .btn.large:first-child {
|
2587
|
+
margin-left: 0;
|
2588
|
+
-webkit-border-top-left-radius: 6px;
|
2589
|
+
-moz-border-radius-topleft: 6px;
|
2590
|
+
border-top-left-radius: 6px;
|
2591
|
+
-webkit-border-bottom-left-radius: 6px;
|
2592
|
+
-moz-border-radius-bottomleft: 6px;
|
2593
|
+
border-bottom-left-radius: 6px;
|
2594
|
+
}
|
2595
|
+
.btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle {
|
2596
|
+
-webkit-border-top-right-radius: 6px;
|
2597
|
+
-moz-border-radius-topright: 6px;
|
2598
|
+
border-top-right-radius: 6px;
|
2599
|
+
-webkit-border-bottom-right-radius: 6px;
|
2600
|
+
-moz-border-radius-bottomright: 6px;
|
2601
|
+
border-bottom-right-radius: 6px;
|
2477
2602
|
}
|
2478
|
-
.
|
2479
|
-
|
2603
|
+
.btn-group .btn:hover, .btn-group .btn:focus, .btn-group .btn:active {
|
2604
|
+
z-index: 2;
|
2480
2605
|
}
|
2481
|
-
.
|
2482
|
-
|
2483
|
-
|
2484
|
-
|
2485
|
-
|
2486
|
-
|
2487
|
-
border-top: 5px solid #000000;
|
2606
|
+
.btn-group .dropdown-toggle {
|
2607
|
+
padding-left: 8px;
|
2608
|
+
padding-right: 8px;
|
2609
|
+
-webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2610
|
+
-moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2611
|
+
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2488
2612
|
}
|
2489
|
-
.
|
2490
|
-
|
2491
|
-
|
2492
|
-
|
2493
|
-
border-
|
2494
|
-
border-
|
2495
|
-
border-left: 5px solid #000000;
|
2613
|
+
.btn-group.open .dropdown-menu {
|
2614
|
+
display: block;
|
2615
|
+
top: 30px;
|
2616
|
+
-webkit-border-radius: 5px;
|
2617
|
+
-moz-border-radius: 5px;
|
2618
|
+
border-radius: 5px;
|
2496
2619
|
}
|
2497
|
-
.
|
2498
|
-
|
2499
|
-
|
2500
|
-
|
2501
|
-
|
2502
|
-
border-right: 5px solid transparent;
|
2503
|
-
border-bottom: 5px solid #000000;
|
2620
|
+
.btn-group.open .dropdown-toggle {
|
2621
|
+
background-image: none;
|
2622
|
+
-webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2623
|
+
-moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2624
|
+
box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2504
2625
|
}
|
2505
|
-
.
|
2506
|
-
top:
|
2507
|
-
left: 0;
|
2508
|
-
margin-top: -5px;
|
2509
|
-
border-top: 5px solid transparent;
|
2510
|
-
border-bottom: 5px solid transparent;
|
2511
|
-
border-right: 5px solid #000000;
|
2626
|
+
.btn .caret {
|
2627
|
+
margin-top: 6px;
|
2628
|
+
margin-left: 0;
|
2512
2629
|
}
|
2513
|
-
.
|
2514
|
-
|
2515
|
-
|
2516
|
-
|
2517
|
-
|
2518
|
-
|
2519
|
-
|
2630
|
+
.primary .caret,
|
2631
|
+
.danger .caret,
|
2632
|
+
.info .caret,
|
2633
|
+
.success .caret {
|
2634
|
+
border-top-color: #fff;
|
2635
|
+
filter: alpha(opacity=75);
|
2636
|
+
-moz-opacity: 0.75;
|
2637
|
+
opacity: 0.75;
|
2638
|
+
}
|
2639
|
+
.alert-message {
|
2640
|
+
position: relative;
|
2641
|
+
padding: 7px 15px;
|
2642
|
+
margin-bottom: 18px;
|
2643
|
+
color: #333333;
|
2644
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2645
|
+
background-color: #eedc94;
|
2646
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
|
2647
|
+
background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
|
2648
|
+
background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
|
2649
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
|
2650
|
+
background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
|
2651
|
+
background-image: -o-linear-gradient(top, #fceec1, #eedc94);
|
2652
|
+
background-image: linear-gradient(top, #fceec1, #eedc94);
|
2653
|
+
background-repeat: repeat-x;
|
2654
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
|
2655
|
+
border-color: #eedc94 #eedc94 #e4c652;
|
2656
|
+
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
2657
|
+
border-width: 1px;
|
2658
|
+
border-style: solid;
|
2520
2659
|
-webkit-border-radius: 4px;
|
2521
2660
|
-moz-border-radius: 4px;
|
2522
2661
|
border-radius: 4px;
|
2662
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
2663
|
+
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
2664
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
2523
2665
|
}
|
2524
|
-
.
|
2525
|
-
|
2526
|
-
|
2527
|
-
|
2528
|
-
}
|
2529
|
-
.popover {
|
2530
|
-
position: absolute;
|
2531
|
-
top: 0;
|
2532
|
-
left: 0;
|
2533
|
-
z-index: 1000;
|
2534
|
-
display: none;
|
2535
|
-
padding: 5px;
|
2666
|
+
.alert-message .close {
|
2667
|
+
*margin-top: 3px;
|
2668
|
+
/* IE7 spacing */
|
2669
|
+
|
2536
2670
|
}
|
2537
|
-
.
|
2538
|
-
|
2671
|
+
.alert-message h5 {
|
2672
|
+
line-height: 18px;
|
2539
2673
|
}
|
2540
|
-
.
|
2541
|
-
margin-
|
2674
|
+
.alert-message p {
|
2675
|
+
margin-bottom: 0;
|
2542
2676
|
}
|
2543
|
-
.
|
2677
|
+
.alert-message div {
|
2544
2678
|
margin-top: 5px;
|
2679
|
+
margin-bottom: 2px;
|
2680
|
+
line-height: 28px;
|
2545
2681
|
}
|
2546
|
-
.
|
2547
|
-
|
2682
|
+
.alert-message .btn {
|
2683
|
+
-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
2684
|
+
-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
2685
|
+
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
|
2548
2686
|
}
|
2549
|
-
.
|
2550
|
-
|
2551
|
-
left: 50%;
|
2552
|
-
margin-left: -5px;
|
2553
|
-
border-left: 5px solid transparent;
|
2554
|
-
border-right: 5px solid transparent;
|
2555
|
-
border-top: 5px solid #000000;
|
2687
|
+
.alert-message.error, .alert-message.success, .alert-message.info {
|
2688
|
+
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
2556
2689
|
}
|
2557
|
-
.
|
2558
|
-
|
2559
|
-
|
2560
|
-
|
2561
|
-
|
2562
|
-
border-
|
2563
|
-
|
2690
|
+
.alert-message.block-message {
|
2691
|
+
padding: 14px;
|
2692
|
+
background-image: none;
|
2693
|
+
background-color: #fdf5d9;
|
2694
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
2695
|
+
border-color: #fceec1;
|
2696
|
+
-webkit-box-shadow: none;
|
2697
|
+
-moz-box-shadow: none;
|
2698
|
+
box-shadow: none;
|
2564
2699
|
}
|
2565
|
-
.
|
2566
|
-
|
2567
|
-
left: 50%;
|
2568
|
-
margin-left: -5px;
|
2569
|
-
border-left: 5px solid transparent;
|
2570
|
-
border-right: 5px solid transparent;
|
2571
|
-
border-bottom: 5px solid #000000;
|
2700
|
+
.alert-message.block-message ul, .alert-message.block-message p {
|
2701
|
+
margin-right: 30px;
|
2572
2702
|
}
|
2573
|
-
.
|
2574
|
-
|
2575
|
-
right: 0;
|
2576
|
-
margin-top: -5px;
|
2577
|
-
border-top: 5px solid transparent;
|
2578
|
-
border-bottom: 5px solid transparent;
|
2579
|
-
border-left: 5px solid #000000;
|
2703
|
+
.alert-message.block-message ul {
|
2704
|
+
margin-bottom: 0;
|
2580
2705
|
}
|
2581
|
-
.
|
2582
|
-
|
2583
|
-
width: 0;
|
2584
|
-
height: 0;
|
2706
|
+
.alert-message.block-message li {
|
2707
|
+
color: #333333;
|
2585
2708
|
}
|
2586
|
-
.
|
2587
|
-
|
2588
|
-
width: 280px;
|
2589
|
-
overflow: hidden;
|
2590
|
-
background-color: #000000;
|
2591
|
-
background-color: rgba(0, 0, 0, 0.8);
|
2592
|
-
-webkit-border-radius: 6px;
|
2593
|
-
-moz-border-radius: 6px;
|
2594
|
-
border-radius: 6px;
|
2595
|
-
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2596
|
-
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2597
|
-
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
2709
|
+
.alert-message.block-message .alert-actions {
|
2710
|
+
margin-top: 5px;
|
2598
2711
|
}
|
2599
|
-
.
|
2600
|
-
|
2601
|
-
|
2602
|
-
background-color: #f5f5f5;
|
2603
|
-
border-bottom: 1px solid #eee;
|
2604
|
-
-webkit-border-radius: 3px 3px 0 0;
|
2605
|
-
-moz-border-radius: 3px 3px 0 0;
|
2606
|
-
border-radius: 3px 3px 0 0;
|
2712
|
+
.alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
|
2713
|
+
color: #333333;
|
2714
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
2607
2715
|
}
|
2608
|
-
.
|
2609
|
-
|
2610
|
-
|
2611
|
-
-webkit-border-radius: 0 0 3px 3px;
|
2612
|
-
-moz-border-radius: 0 0 3px 3px;
|
2613
|
-
border-radius: 0 0 3px 3px;
|
2614
|
-
-webkit-background-clip: padding-box;
|
2615
|
-
-moz-background-clip: padding-box;
|
2616
|
-
background-clip: padding-box;
|
2716
|
+
.alert-message.block-message.error {
|
2717
|
+
background-color: #fddfde;
|
2718
|
+
border-color: #fbc7c6;
|
2617
2719
|
}
|
2618
|
-
.
|
2619
|
-
|
2720
|
+
.alert-message.block-message.success {
|
2721
|
+
background-color: #d1eed1;
|
2722
|
+
border-color: #bfe7bf;
|
2723
|
+
}
|
2724
|
+
.alert-message.block-message.info {
|
2725
|
+
background-color: #ddf4fb;
|
2726
|
+
border-color: #c6edf9;
|
2620
2727
|
}
|
2621
2728
|
.thumbnails {
|
2622
2729
|
margin-left: -20px;
|
@@ -2650,7 +2757,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2650
2757
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
|
2651
2758
|
}
|
2652
2759
|
a.thumbnail:hover {
|
2653
|
-
border-color: #
|
2760
|
+
border-color: #0088cc;
|
2654
2761
|
-webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
2655
2762
|
-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
2656
2763
|
box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
|
@@ -2662,46 +2769,245 @@ a.thumbnail:hover {
|
|
2662
2769
|
.thumbnail .caption {
|
2663
2770
|
padding: 9px;
|
2664
2771
|
}
|
2665
|
-
.
|
2772
|
+
.carousel {
|
2773
|
+
position: relative;
|
2774
|
+
}
|
2775
|
+
.carousel .carousel-inner {
|
2776
|
+
overflow: hidden;
|
2777
|
+
width: 100%;
|
2778
|
+
position: relative;
|
2779
|
+
}
|
2780
|
+
.carousel .item {
|
2666
2781
|
display: none;
|
2667
|
-
|
2782
|
+
position: relative;
|
2783
|
+
-webkit-transition: 0.6s ease-in-out left;
|
2784
|
+
-moz-transition: 0.6s ease-in-out left;
|
2785
|
+
-ms-transition: 0.6s ease-in-out left;
|
2786
|
+
-o-transition: 0.6s ease-in-out left;
|
2787
|
+
transition: 0.6s ease-in-out left;
|
2668
2788
|
}
|
2669
|
-
|
2670
|
-
|
2671
|
-
|
2672
|
-
|
2673
|
-
|
2674
|
-
|
2675
|
-
|
2676
|
-
|
2677
|
-
|
2678
|
-
|
2679
|
-
|
2680
|
-
|
2681
|
-
|
2682
|
-
|
2683
|
-
|
2684
|
-
|
2789
|
+
.carousel .active, .carousel .next, .carousel .prev {
|
2790
|
+
display: block;
|
2791
|
+
}
|
2792
|
+
.carousel .next, .carousel .prev {
|
2793
|
+
position: absolute;
|
2794
|
+
top: 0;
|
2795
|
+
width: 100%;
|
2796
|
+
}
|
2797
|
+
.carousel .next {
|
2798
|
+
left: 100%;
|
2799
|
+
}
|
2800
|
+
.carousel .prev {
|
2801
|
+
left: -100%;
|
2802
|
+
}
|
2803
|
+
.carousel .next.left, .carousel .prev.right {
|
2804
|
+
left: 0%;
|
2805
|
+
}
|
2806
|
+
.carousel .active.left {
|
2807
|
+
left: -100%;
|
2808
|
+
}
|
2809
|
+
.carousel .active.right {
|
2810
|
+
left: 100%;
|
2811
|
+
}
|
2812
|
+
.carousel .nav {
|
2813
|
+
width: auto;
|
2814
|
+
-webkit-border-radius: 0;
|
2815
|
+
-moz-border-radius: 0;
|
2816
|
+
border-radius: 0;
|
2817
|
+
height: 50px;
|
2818
|
+
position: absolute;
|
2819
|
+
top: 50%;
|
2820
|
+
margin: -25px 0 0;
|
2821
|
+
cursor: pointer;
|
2822
|
+
background: rgba(0, 0, 0, 0.7);
|
2823
|
+
color: white;
|
2824
|
+
font-size: 42px;
|
2825
|
+
left: 5px;
|
2826
|
+
font-weight: 100;
|
2827
|
+
padding: 0 15px;
|
2828
|
+
}
|
2829
|
+
.carousel .nav.right {
|
2830
|
+
right: 5px;
|
2831
|
+
left: auto;
|
2832
|
+
}
|
2833
|
+
.carousel .nav:hover {
|
2834
|
+
text-decoration: none;
|
2835
|
+
background: rgba(0, 0, 0, 0.8);
|
2836
|
+
}
|
2837
|
+
.label {
|
2838
|
+
padding: 1px 3px 2px;
|
2839
|
+
font-size: 9.75px;
|
2840
|
+
font-weight: bold;
|
2841
|
+
color: #ffffff;
|
2842
|
+
text-transform: uppercase;
|
2843
|
+
background-color: #999999;
|
2844
|
+
-webkit-border-radius: 3px;
|
2845
|
+
-moz-border-radius: 3px;
|
2846
|
+
border-radius: 3px;
|
2847
|
+
}
|
2848
|
+
.label.important {
|
2849
|
+
background-color: #c43c35;
|
2850
|
+
}
|
2851
|
+
.label.warning {
|
2852
|
+
background-color: #f89406;
|
2853
|
+
}
|
2854
|
+
.label.success {
|
2855
|
+
background-color: #46a546;
|
2856
|
+
}
|
2857
|
+
.label.notice {
|
2858
|
+
background-color: #62cffc;
|
2859
|
+
}
|
2860
|
+
@-webkit-keyframes progress-bar-stripes {
|
2861
|
+
from {
|
2862
|
+
background-position: 0 0;
|
2685
2863
|
}
|
2686
|
-
|
2687
|
-
|
2864
|
+
to {
|
2865
|
+
background-position: 40px 0;
|
2688
2866
|
}
|
2689
2867
|
}
|
2690
|
-
@
|
2691
|
-
|
2692
|
-
|
2693
|
-
padding: 0 20px;
|
2868
|
+
@keyframes progress-bar-stripes {
|
2869
|
+
from {
|
2870
|
+
background-position: 0 0;
|
2694
2871
|
}
|
2695
|
-
|
2696
|
-
|
2697
|
-
}
|
2698
|
-
[class*="span"] {
|
2699
|
-
float: none;
|
2700
|
-
display: block;
|
2701
|
-
width: auto;
|
2702
|
-
margin: 0;
|
2872
|
+
to {
|
2873
|
+
background-position: 40px 0;
|
2703
2874
|
}
|
2704
|
-
|
2875
|
+
}
|
2876
|
+
.progress, .progress .bar {
|
2877
|
+
-webkit-border-radius: 4px;
|
2878
|
+
-moz-border-radius: 4px;
|
2879
|
+
border-radius: 4px;
|
2880
|
+
}
|
2881
|
+
.progress {
|
2882
|
+
height: 18px;
|
2883
|
+
margin-bottom: 18px;
|
2884
|
+
background-color: #f9f9f9;
|
2885
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f9f9f9));
|
2886
|
+
background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2887
|
+
background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2888
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #f9f9f9));
|
2889
|
+
background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2890
|
+
background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
|
2891
|
+
background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
|
2892
|
+
background-repeat: repeat-x;
|
2893
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
|
2894
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2895
|
+
-moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2896
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2897
|
+
}
|
2898
|
+
.progress .bar {
|
2899
|
+
width: 0%;
|
2900
|
+
height: 18px;
|
2901
|
+
margin: ;
|
2902
|
+
background-color: #0480be;
|
2903
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#149bdf), to(#0480be));
|
2904
|
+
background-image: -moz-linear-gradient(top, #149bdf, #0480be);
|
2905
|
+
background-image: -ms-linear-gradient(top, #149bdf, #0480be);
|
2906
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #149bdf), color-stop(100%, #0480be));
|
2907
|
+
background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
|
2908
|
+
background-image: -o-linear-gradient(top, #149bdf, #0480be);
|
2909
|
+
background-image: linear-gradient(top, #149bdf, #0480be);
|
2910
|
+
background-repeat: repeat-x;
|
2911
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
|
2912
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2913
|
+
-moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2914
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2915
|
+
-webkit-box-sizing: border-box;
|
2916
|
+
-moz-box-sizing: border-box;
|
2917
|
+
box-sizing: border-box;
|
2918
|
+
-webkit-transition: width 0.6s ease;
|
2919
|
+
-moz-transition: width 0.6s ease;
|
2920
|
+
-ms-transition: width 0.6s ease;
|
2921
|
+
-o-transition: width 0.6s ease;
|
2922
|
+
transition: width 0.6s ease;
|
2923
|
+
}
|
2924
|
+
.progress.striped .bar {
|
2925
|
+
background-color: #62c462;
|
2926
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
2927
|
+
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2928
|
+
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2929
|
+
background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2930
|
+
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2931
|
+
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2932
|
+
-webkit-background-size: 40px 40px;
|
2933
|
+
-moz-background-size: 40px 40px;
|
2934
|
+
-o-background-size: 40px 40px;
|
2935
|
+
background-size: 40px 40px;
|
2936
|
+
}
|
2937
|
+
.progress.active .bar {
|
2938
|
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
2939
|
+
-moz-animation: progress-bar-stripes 2s linear infinite;
|
2940
|
+
animation: progress-bar-stripes 2s linear infinite;
|
2941
|
+
}
|
2942
|
+
.progress.danger .bar {
|
2943
|
+
background-color: #c43c35;
|
2944
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
|
2945
|
+
background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
|
2946
|
+
background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
|
2947
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
|
2948
|
+
background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
|
2949
|
+
background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
|
2950
|
+
background-image: linear-gradient(top, #ee5f5b, #c43c35);
|
2951
|
+
background-repeat: repeat-x;
|
2952
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
|
2953
|
+
}
|
2954
|
+
.progress.danger.striped .bar {
|
2955
|
+
background-color: #ee5f5b;
|
2956
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
2957
|
+
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2958
|
+
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2959
|
+
background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2960
|
+
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2961
|
+
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2962
|
+
}
|
2963
|
+
.progress.success .bar {
|
2964
|
+
background-color: #57a957;
|
2965
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
|
2966
|
+
background-image: -moz-linear-gradient(top, #62c462, #57a957);
|
2967
|
+
background-image: -ms-linear-gradient(top, #62c462, #57a957);
|
2968
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
|
2969
|
+
background-image: -webkit-linear-gradient(top, #62c462, #57a957);
|
2970
|
+
background-image: -o-linear-gradient(top, #62c462, #57a957);
|
2971
|
+
background-image: linear-gradient(top, #62c462, #57a957);
|
2972
|
+
background-repeat: repeat-x;
|
2973
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
|
2974
|
+
}
|
2975
|
+
.progress.success.striped .bar {
|
2976
|
+
background-color: #62c462;
|
2977
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
2978
|
+
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2979
|
+
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2980
|
+
background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2981
|
+
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2982
|
+
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
2983
|
+
}
|
2984
|
+
.progress.info .bar {
|
2985
|
+
background-color: #339bb9;
|
2986
|
+
background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
|
2987
|
+
background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
|
2988
|
+
background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
|
2989
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
|
2990
|
+
background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
|
2991
|
+
background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
|
2992
|
+
background-image: linear-gradient(top, #5bc0de, #339bb9);
|
2993
|
+
background-repeat: repeat-x;
|
2994
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
|
2995
|
+
}
|
2996
|
+
.progress.info.striped .bar {
|
2997
|
+
background-color: #5bc0de;
|
2998
|
+
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
2999
|
+
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3000
|
+
background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3001
|
+
background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3002
|
+
background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3003
|
+
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
3004
|
+
}
|
3005
|
+
.hidden {
|
3006
|
+
display: none;
|
3007
|
+
visibility: hidden;
|
3008
|
+
}
|
3009
|
+
@media (max-width: 480px) {
|
3010
|
+
.navbar .nav {
|
2705
3011
|
position: absolute;
|
2706
3012
|
top: 0;
|
2707
3013
|
left: 0;
|
@@ -2709,29 +3015,32 @@ a.thumbnail:hover {
|
|
2709
3015
|
padding-top: 40px;
|
2710
3016
|
list-style: none;
|
2711
3017
|
}
|
2712
|
-
.nav, .nav > li:last-child a {
|
3018
|
+
.navbar .nav, .navbar .nav > li:last-child a {
|
2713
3019
|
-webkit-border-radius: 0 0 4px 0;
|
2714
3020
|
-moz-border-radius: 0 0 4px 0;
|
2715
3021
|
border-radius: 0 0 4px 0;
|
2716
3022
|
}
|
2717
|
-
.nav > li {
|
3023
|
+
.navbar .nav > li {
|
2718
3024
|
float: none;
|
2719
3025
|
display: none;
|
2720
3026
|
}
|
2721
|
-
.nav > li > a {
|
3027
|
+
.navbar .nav > li > a {
|
2722
3028
|
float: none;
|
2723
3029
|
background-color: #222;
|
2724
3030
|
}
|
2725
|
-
.nav > .active {
|
3031
|
+
.navbar .nav > .active {
|
2726
3032
|
display: block;
|
2727
3033
|
position: absolute;
|
2728
3034
|
top: 0;
|
2729
3035
|
left: 0;
|
2730
3036
|
}
|
2731
|
-
.navbar
|
3037
|
+
.navbar .nav > .active > a {
|
2732
3038
|
background-color: transparent;
|
2733
3039
|
}
|
2734
|
-
.nav > .active a:
|
3040
|
+
.navbar .nav > .active > a:hover {
|
3041
|
+
background-color: #333;
|
3042
|
+
}
|
3043
|
+
.navbar .nav > .active > a:after {
|
2735
3044
|
display: inline-block;
|
2736
3045
|
width: 0;
|
2737
3046
|
height: 0;
|
@@ -2747,8 +3056,64 @@ a.thumbnail:hover {
|
|
2747
3056
|
opacity: 1;
|
2748
3057
|
content: "↓";
|
2749
3058
|
}
|
2750
|
-
.nav >
|
2751
|
-
|
3059
|
+
.navbar .nav:hover > li {
|
3060
|
+
display: block;
|
3061
|
+
}
|
3062
|
+
.navbar .nav:hover > li > a:hover {
|
3063
|
+
background-color: #333;
|
3064
|
+
}
|
3065
|
+
.modal {
|
3066
|
+
width: auto;
|
3067
|
+
margin: 0;
|
3068
|
+
}
|
3069
|
+
.modal.fade.in {
|
3070
|
+
top: auto;
|
3071
|
+
}
|
3072
|
+
.horizontal-form .control-group > label {
|
3073
|
+
float: none;
|
3074
|
+
width: auto;
|
3075
|
+
padding-top: 0;
|
3076
|
+
text-align: left;
|
3077
|
+
}
|
3078
|
+
.horizontal-form .controls {
|
3079
|
+
margin-left: 0;
|
3080
|
+
}
|
3081
|
+
.horizontal-form .control-list {
|
3082
|
+
padding-top: 0;
|
3083
|
+
}
|
3084
|
+
.horizontal-form .form-actions {
|
3085
|
+
padding-left: 0;
|
3086
|
+
}
|
3087
|
+
.modal {
|
3088
|
+
position: fixed;
|
3089
|
+
top: 20px;
|
3090
|
+
left: 20px;
|
3091
|
+
right: 20px;
|
3092
|
+
width: auto;
|
3093
|
+
}
|
3094
|
+
.modal .close {
|
3095
|
+
padding: 10px;
|
3096
|
+
}
|
3097
|
+
}
|
3098
|
+
@media (max-width: 768px) {
|
3099
|
+
.navbar-fixed {
|
3100
|
+
position: absolute;
|
3101
|
+
}
|
3102
|
+
.navbar-fixed .nav {
|
3103
|
+
float: none;
|
3104
|
+
}
|
3105
|
+
.container {
|
3106
|
+
width: auto;
|
3107
|
+
padding: 0 20px;
|
3108
|
+
}
|
3109
|
+
.row {
|
3110
|
+
margin-left: 0;
|
3111
|
+
}
|
3112
|
+
.row > [class*="span"] {
|
3113
|
+
float: none;
|
3114
|
+
display: block;
|
3115
|
+
width: auto;
|
3116
|
+
margin: 0;
|
2752
3117
|
}
|
2753
3118
|
}
|
2754
3119
|
@media (min-width: 768px) and (max-width: 940px) {
|
@@ -2848,6 +3213,9 @@ a.thumbnail:hover {
|
|
2848
3213
|
.container {
|
2849
3214
|
width: @siteWidth;
|
2850
3215
|
}
|
3216
|
+
.row {
|
3217
|
+
margin-left: @gridGutterWidth * -1;
|
3218
|
+
}
|
2851
3219
|
[class*="span"] {
|
2852
3220
|
margin-left: @gridGutterWidth;
|
2853
3221
|
}
|
@@ -2881,4 +3249,4 @@ a.thumbnail:hover {
|
|
2881
3249
|
.offset12 { .offset(12); }
|
2882
3250
|
|
2883
3251
|
}
|
2884
|
-
*/
|
3252
|
+
*/
|