jombo 1.0.8 → 1.0.9
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/_meta/README +1 -1
- data/lib/jombo/version.rb +1 -1
- data/vendor/assets/images/glyphicons-halflings.png +0 -0
- data/vendor/assets/javascripts/bootstrap/bootstrap-affix.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-alert.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-button.js +2 -2
- data/vendor/assets/javascripts/bootstrap/bootstrap-carousel.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-collapse.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-dropdown.js +3 -3
- data/vendor/assets/javascripts/bootstrap/bootstrap-modal.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-popover.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-scrollspy.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-tab.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-tooltip.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-transition.js +1 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js +2 -2
- data/vendor/assets/javascripts/bootstrap/index.js +1 -0
- data/vendor/assets/stylesheets/bootstrap.css +0 -1
- data/vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css +24 -6
- data/vendor/assets/stylesheets/bootstrap/bootstrap.css.erb +234 -84
- metadata +3 -4
- data/vendor/assets/javascripts/bootstrap.js +0 -1
- data/vendor/assets/javascripts/bootstrap/bootstrap.js +0 -2027
data/_meta/README
CHANGED
@@ -6,7 +6,7 @@ Git/Update Sequence
|
|
6
6
|
- Asset updates on "work"
|
7
7
|
- Switch to "build
|
8
8
|
- Merge "work with "build"
|
9
|
-
- Update version to
|
9
|
+
- Update version to a.b.<VERSION NUMBER + 1>.beta<NUMBER (starting from 1)> in version.rb
|
10
10
|
- rm -rf pkg/
|
11
11
|
- rake build
|
12
12
|
- Test using the Bootpolish Rails app
|
data/lib/jombo/version.rb
CHANGED
Binary file
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ==========================================================
|
2
|
-
* bootstrap-affix.js v2.1.
|
2
|
+
* bootstrap-affix.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#affix
|
4
4
|
* ==========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ==========================================================
|
2
|
-
* bootstrap-alert.js v2.1.
|
2
|
+
* bootstrap-alert.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#alerts
|
4
4
|
* ==========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ============================================================
|
2
|
-
* bootstrap-button.js v2.1.
|
2
|
+
* bootstrap-button.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#buttons
|
4
4
|
* ============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -51,7 +51,7 @@
|
|
51
51
|
}
|
52
52
|
|
53
53
|
Button.prototype.toggle = function () {
|
54
|
-
var $parent = this.$element.
|
54
|
+
var $parent = this.$element.closest('[data-toggle="buttons-radio"]')
|
55
55
|
|
56
56
|
$parent && $parent
|
57
57
|
.find('.active')
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ==========================================================
|
2
|
-
* bootstrap-carousel.js v2.1.
|
2
|
+
* bootstrap-carousel.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#carousel
|
4
4
|
* ==========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =============================================================
|
2
|
-
* bootstrap-collapse.js v2.1.
|
2
|
+
* bootstrap-collapse.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#collapse
|
4
4
|
* =============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ============================================================
|
2
|
-
* bootstrap-dropdown.js v2.1.
|
2
|
+
* bootstrap-dropdown.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#dropdowns
|
4
4
|
* ============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -110,7 +110,7 @@
|
|
110
110
|
|
111
111
|
if (!selector) {
|
112
112
|
selector = $this.attr('href')
|
113
|
-
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
113
|
+
selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
114
114
|
}
|
115
115
|
|
116
116
|
$parent = $(selector)
|
@@ -142,7 +142,7 @@
|
|
142
142
|
$('html')
|
143
143
|
.on('click.dropdown.data-api touchstart.dropdown.data-api', clearMenus)
|
144
144
|
$('body')
|
145
|
-
.on('click.dropdown touchstart.dropdown.data-api', '.dropdown', function (e) { e.stopPropagation() })
|
145
|
+
.on('click.dropdown touchstart.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
|
146
146
|
.on('click.dropdown.data-api touchstart.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
|
147
147
|
.on('keydown.dropdown.data-api touchstart.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
|
148
148
|
})
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =========================================================
|
2
|
-
* bootstrap-modal.js v2.1.
|
2
|
+
* bootstrap-modal.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#modals
|
4
4
|
* =========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===========================================================
|
2
|
-
* bootstrap-popover.js v2.1.
|
2
|
+
* bootstrap-popover.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#popovers
|
4
4
|
* ===========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =============================================================
|
2
|
-
* bootstrap-scrollspy.js v2.1.
|
2
|
+
* bootstrap-scrollspy.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#scrollspy
|
4
4
|
* =============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ========================================================
|
2
|
-
* bootstrap-tab.js v2.1.
|
2
|
+
* bootstrap-tab.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#tabs
|
4
4
|
* ========================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===========================================================
|
2
|
-
* bootstrap-tooltip.js v2.1.
|
2
|
+
* bootstrap-tooltip.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#tooltips
|
4
4
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
5
5
|
* ===========================================================
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* ===================================================
|
2
|
-
* bootstrap-transition.js v2.1.
|
2
|
+
* bootstrap-transition.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
4
4
|
* ===================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/* =============================================================
|
2
|
-
* bootstrap-typeahead.js v2.1.
|
2
|
+
* bootstrap-typeahead.js v2.1.1
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#typeahead
|
4
4
|
* =============================================================
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
@@ -174,7 +174,7 @@
|
|
174
174
|
.on('keypress', $.proxy(this.keypress, this))
|
175
175
|
.on('keyup', $.proxy(this.keyup, this))
|
176
176
|
|
177
|
-
if ($.browser.webkit || $.browser.msie) {
|
177
|
+
if ($.browser.chrome || $.browser.webkit || $.browser.msie) {
|
178
178
|
this.$element.on('keydown', $.proxy(this.keydown, this))
|
179
179
|
}
|
180
180
|
|
@@ -0,0 +1 @@
|
|
1
|
+
//= require_tree .
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap Responsive v2.1.
|
2
|
+
* Bootstrap Responsive v2.1.1
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -107,6 +107,7 @@
|
|
107
107
|
}
|
108
108
|
[class*="span"] {
|
109
109
|
float: left;
|
110
|
+
min-height: 1px;
|
110
111
|
margin-left: 30px;
|
111
112
|
}
|
112
113
|
.container,
|
@@ -453,6 +454,7 @@
|
|
453
454
|
}
|
454
455
|
[class*="span"] {
|
455
456
|
float: left;
|
457
|
+
min-height: 1px;
|
456
458
|
margin-left: 20px;
|
457
459
|
}
|
458
460
|
.container,
|
@@ -780,7 +782,8 @@
|
|
780
782
|
padding-left: 20px;
|
781
783
|
}
|
782
784
|
.navbar-fixed-top,
|
783
|
-
.navbar-fixed-bottom
|
785
|
+
.navbar-fixed-bottom,
|
786
|
+
.navbar-static-top {
|
784
787
|
margin-right: -20px;
|
785
788
|
margin-left: -20px;
|
786
789
|
}
|
@@ -814,8 +817,11 @@
|
|
814
817
|
.row-fluid [class*="span"] {
|
815
818
|
display: block;
|
816
819
|
float: none;
|
817
|
-
width:
|
820
|
+
width: 100%;
|
818
821
|
margin-left: 0;
|
822
|
+
-webkit-box-sizing: border-box;
|
823
|
+
-moz-box-sizing: border-box;
|
824
|
+
box-sizing: border-box;
|
819
825
|
}
|
820
826
|
.span12,
|
821
827
|
.row-fluid .span12 {
|
@@ -845,6 +851,9 @@
|
|
845
851
|
display: inline-block;
|
846
852
|
width: auto;
|
847
853
|
}
|
854
|
+
.controls-row [class*="span"] + [class*="span"] {
|
855
|
+
margin-left: 0;
|
856
|
+
}
|
848
857
|
.modal {
|
849
858
|
position: fixed;
|
850
859
|
top: 20px;
|
@@ -870,7 +879,7 @@
|
|
870
879
|
input[type="radio"] {
|
871
880
|
border: 1px solid #ccc;
|
872
881
|
}
|
873
|
-
.form-horizontal .control-
|
882
|
+
.form-horizontal .control-label {
|
874
883
|
float: none;
|
875
884
|
width: auto;
|
876
885
|
padding-top: 0;
|
@@ -944,14 +953,14 @@
|
|
944
953
|
display: none;
|
945
954
|
}
|
946
955
|
.nav-collapse .nav .nav-header {
|
947
|
-
color: #
|
956
|
+
color: #777777;
|
948
957
|
text-shadow: none;
|
949
958
|
}
|
950
959
|
.nav-collapse .nav > li > a,
|
951
960
|
.nav-collapse .dropdown-menu a {
|
952
961
|
padding: 9px 15px;
|
953
962
|
font-weight: bold;
|
954
|
-
color: #
|
963
|
+
color: #777777;
|
955
964
|
-webkit-border-radius: 3px;
|
956
965
|
-moz-border-radius: 3px;
|
957
966
|
border-radius: 3px;
|
@@ -1003,6 +1012,10 @@
|
|
1003
1012
|
.nav-collapse .dropdown-menu .divider {
|
1004
1013
|
display: none;
|
1005
1014
|
}
|
1015
|
+
.nav-collapse .nav > li > .dropdown-menu:before,
|
1016
|
+
.nav-collapse .nav > li > .dropdown-menu:after {
|
1017
|
+
display: none;
|
1018
|
+
}
|
1006
1019
|
.nav-collapse .navbar-form,
|
1007
1020
|
.nav-collapse .navbar-search {
|
1008
1021
|
float: none;
|
@@ -1014,6 +1027,11 @@
|
|
1014
1027
|
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
1015
1028
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
1016
1029
|
}
|
1030
|
+
.navbar-inverse .nav-collapse .navbar-form,
|
1031
|
+
.navbar-inverse .nav-collapse .navbar-search {
|
1032
|
+
border-top-color: #111111;
|
1033
|
+
border-bottom-color: #111111;
|
1034
|
+
}
|
1017
1035
|
.navbar .nav-collapse .nav.pull-right {
|
1018
1036
|
float: none;
|
1019
1037
|
margin-left: 0;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v2.1.
|
2
|
+
* Bootstrap v2.1.1
|
3
3
|
*
|
4
4
|
* Copyright 2012 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
@@ -67,6 +67,7 @@ sub {
|
|
67
67
|
}
|
68
68
|
|
69
69
|
img {
|
70
|
+
width: auto\9;
|
70
71
|
height: auto;
|
71
72
|
max-width: 100%;
|
72
73
|
vertical-align: middle;
|
@@ -215,6 +216,7 @@ a:hover {
|
|
215
216
|
|
216
217
|
[class*="span"] {
|
217
218
|
float: left;
|
219
|
+
min-height: 1px;
|
218
220
|
margin-left: 20px;
|
219
221
|
}
|
220
222
|
|
@@ -583,7 +585,7 @@ p {
|
|
583
585
|
|
584
586
|
.lead {
|
585
587
|
margin-bottom: 20px;
|
586
|
-
font-size:
|
588
|
+
font-size: 21px;
|
587
589
|
font-weight: 200;
|
588
590
|
line-height: 30px;
|
589
591
|
}
|
@@ -608,6 +610,22 @@ cite {
|
|
608
610
|
color: #999999;
|
609
611
|
}
|
610
612
|
|
613
|
+
.text-warning {
|
614
|
+
color: #c09853;
|
615
|
+
}
|
616
|
+
|
617
|
+
.text-error {
|
618
|
+
color: #b94a48;
|
619
|
+
}
|
620
|
+
|
621
|
+
.text-info {
|
622
|
+
color: #3a87ad;
|
623
|
+
}
|
624
|
+
|
625
|
+
.text-success {
|
626
|
+
color: #468847;
|
627
|
+
}
|
628
|
+
|
611
629
|
h1,
|
612
630
|
h2,
|
613
631
|
h3,
|
@@ -725,9 +743,24 @@ dd {
|
|
725
743
|
margin-left: 10px;
|
726
744
|
}
|
727
745
|
|
746
|
+
.dl-horizontal {
|
747
|
+
*zoom: 1;
|
748
|
+
}
|
749
|
+
|
750
|
+
.dl-horizontal:before,
|
751
|
+
.dl-horizontal:after {
|
752
|
+
display: table;
|
753
|
+
line-height: 0;
|
754
|
+
content: "";
|
755
|
+
}
|
756
|
+
|
757
|
+
.dl-horizontal:after {
|
758
|
+
clear: both;
|
759
|
+
}
|
760
|
+
|
728
761
|
.dl-horizontal dt {
|
729
762
|
float: left;
|
730
|
-
width:
|
763
|
+
width: 160px;
|
731
764
|
overflow: hidden;
|
732
765
|
clear: left;
|
733
766
|
text-align: right;
|
@@ -736,7 +769,7 @@ dd {
|
|
736
769
|
}
|
737
770
|
|
738
771
|
.dl-horizontal dd {
|
739
|
-
margin-left:
|
772
|
+
margin-left: 180px;
|
740
773
|
}
|
741
774
|
|
742
775
|
hr {
|
@@ -945,8 +978,9 @@ input[type="color"],
|
|
945
978
|
}
|
946
979
|
|
947
980
|
input,
|
948
|
-
textarea
|
949
|
-
|
981
|
+
textarea,
|
982
|
+
.uneditable-input {
|
983
|
+
width: 206px;
|
950
984
|
}
|
951
985
|
|
952
986
|
textarea {
|
@@ -1039,7 +1073,7 @@ input[type="file"] {
|
|
1039
1073
|
select {
|
1040
1074
|
width: 220px;
|
1041
1075
|
background-color: #ffffff;
|
1042
|
-
border: 1px solid #
|
1076
|
+
border: 1px solid #cccccc;
|
1043
1077
|
}
|
1044
1078
|
|
1045
1079
|
select[multiple],
|
@@ -1301,14 +1335,17 @@ input[type="checkbox"][readonly] {
|
|
1301
1335
|
.control-group.warning select,
|
1302
1336
|
.control-group.warning textarea {
|
1303
1337
|
color: #c09853;
|
1338
|
+
}
|
1339
|
+
|
1340
|
+
.control-group.warning input,
|
1341
|
+
.control-group.warning select,
|
1342
|
+
.control-group.warning textarea {
|
1304
1343
|
border-color: #c09853;
|
1305
1344
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1306
1345
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1307
1346
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1308
1347
|
}
|
1309
1348
|
|
1310
|
-
.control-group.warning .checkbox:focus,
|
1311
|
-
.control-group.warning .radio:focus,
|
1312
1349
|
.control-group.warning input:focus,
|
1313
1350
|
.control-group.warning select:focus,
|
1314
1351
|
.control-group.warning textarea:focus {
|
@@ -1337,14 +1374,17 @@ input[type="checkbox"][readonly] {
|
|
1337
1374
|
.control-group.error select,
|
1338
1375
|
.control-group.error textarea {
|
1339
1376
|
color: #b94a48;
|
1377
|
+
}
|
1378
|
+
|
1379
|
+
.control-group.error input,
|
1380
|
+
.control-group.error select,
|
1381
|
+
.control-group.error textarea {
|
1340
1382
|
border-color: #b94a48;
|
1341
1383
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1342
1384
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1343
1385
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1344
1386
|
}
|
1345
1387
|
|
1346
|
-
.control-group.error .checkbox:focus,
|
1347
|
-
.control-group.error .radio:focus,
|
1348
1388
|
.control-group.error input:focus,
|
1349
1389
|
.control-group.error select:focus,
|
1350
1390
|
.control-group.error textarea:focus {
|
@@ -1373,14 +1413,17 @@ input[type="checkbox"][readonly] {
|
|
1373
1413
|
.control-group.success select,
|
1374
1414
|
.control-group.success textarea {
|
1375
1415
|
color: #468847;
|
1416
|
+
}
|
1417
|
+
|
1418
|
+
.control-group.success input,
|
1419
|
+
.control-group.success select,
|
1420
|
+
.control-group.success textarea {
|
1376
1421
|
border-color: #468847;
|
1377
1422
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1378
1423
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1379
1424
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1380
1425
|
}
|
1381
1426
|
|
1382
|
-
.control-group.success .checkbox:focus,
|
1383
|
-
.control-group.success .radio:focus,
|
1384
1427
|
.control-group.success input:focus,
|
1385
1428
|
.control-group.success select:focus,
|
1386
1429
|
.control-group.success textarea:focus {
|
@@ -1397,6 +1440,45 @@ input[type="checkbox"][readonly] {
|
|
1397
1440
|
border-color: #468847;
|
1398
1441
|
}
|
1399
1442
|
|
1443
|
+
.control-group.info > label,
|
1444
|
+
.control-group.info .help-block,
|
1445
|
+
.control-group.info .help-inline {
|
1446
|
+
color: #3a87ad;
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
.control-group.info .checkbox,
|
1450
|
+
.control-group.info .radio,
|
1451
|
+
.control-group.info input,
|
1452
|
+
.control-group.info select,
|
1453
|
+
.control-group.info textarea {
|
1454
|
+
color: #3a87ad;
|
1455
|
+
}
|
1456
|
+
|
1457
|
+
.control-group.info input,
|
1458
|
+
.control-group.info select,
|
1459
|
+
.control-group.info textarea {
|
1460
|
+
border-color: #3a87ad;
|
1461
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1462
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1463
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1464
|
+
}
|
1465
|
+
|
1466
|
+
.control-group.info input:focus,
|
1467
|
+
.control-group.info select:focus,
|
1468
|
+
.control-group.info textarea:focus {
|
1469
|
+
border-color: #2d6987;
|
1470
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
1471
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
1472
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
|
1473
|
+
}
|
1474
|
+
|
1475
|
+
.control-group.info .input-prepend .add-on,
|
1476
|
+
.control-group.info .input-append .add-on {
|
1477
|
+
color: #3a87ad;
|
1478
|
+
background-color: #d9edf7;
|
1479
|
+
border-color: #3a87ad;
|
1480
|
+
}
|
1481
|
+
|
1400
1482
|
input:focus:required:invalid,
|
1401
1483
|
textarea:focus:required:invalid,
|
1402
1484
|
select:focus:required:invalid {
|
@@ -1503,7 +1585,6 @@ select:focus:required:invalid:focus {
|
|
1503
1585
|
.input-prepend .add-on,
|
1504
1586
|
.input-append .btn,
|
1505
1587
|
.input-prepend .btn {
|
1506
|
-
margin-left: -1px;
|
1507
1588
|
vertical-align: top;
|
1508
1589
|
-webkit-border-radius: 0;
|
1509
1590
|
-moz-border-radius: 0;
|
@@ -1536,6 +1617,11 @@ select:focus:required:invalid:focus {
|
|
1536
1617
|
border-radius: 3px 0 0 3px;
|
1537
1618
|
}
|
1538
1619
|
|
1620
|
+
.input-append .add-on,
|
1621
|
+
.input-append .btn {
|
1622
|
+
margin-left: -1px;
|
1623
|
+
}
|
1624
|
+
|
1539
1625
|
.input-append .add-on:last-child,
|
1540
1626
|
.input-append .btn:last-child {
|
1541
1627
|
-webkit-border-radius: 0 3px 3px 0;
|
@@ -1706,7 +1792,7 @@ legend + .control-group {
|
|
1706
1792
|
|
1707
1793
|
.form-horizontal .control-label {
|
1708
1794
|
float: left;
|
1709
|
-
width:
|
1795
|
+
width: 160px;
|
1710
1796
|
padding-top: 5px;
|
1711
1797
|
text-align: right;
|
1712
1798
|
}
|
@@ -1714,21 +1800,26 @@ legend + .control-group {
|
|
1714
1800
|
.form-horizontal .controls {
|
1715
1801
|
*display: inline-block;
|
1716
1802
|
*padding-left: 20px;
|
1717
|
-
margin-left:
|
1803
|
+
margin-left: 180px;
|
1718
1804
|
*margin-left: 0;
|
1719
1805
|
}
|
1720
1806
|
|
1721
1807
|
.form-horizontal .controls:first-child {
|
1722
|
-
*padding-left:
|
1808
|
+
*padding-left: 180px;
|
1723
1809
|
}
|
1724
1810
|
|
1725
1811
|
.form-horizontal .help-block {
|
1726
|
-
margin-top: 10px;
|
1727
1812
|
margin-bottom: 0;
|
1728
1813
|
}
|
1729
1814
|
|
1815
|
+
.form-horizontal input + .help-block,
|
1816
|
+
.form-horizontal select + .help-block,
|
1817
|
+
.form-horizontal textarea + .help-block {
|
1818
|
+
margin-top: 10px;
|
1819
|
+
}
|
1820
|
+
|
1730
1821
|
.form-horizontal .form-actions {
|
1731
|
-
padding-left:
|
1822
|
+
padding-left: 180px;
|
1732
1823
|
}
|
1733
1824
|
|
1734
1825
|
table {
|
@@ -1853,7 +1944,7 @@ table {
|
|
1853
1944
|
.table-bordered colgroup + tbody tr:first-child td:last-child {
|
1854
1945
|
-webkit-border-top-right-radius: 4px;
|
1855
1946
|
border-top-right-radius: 4px;
|
1856
|
-
-moz-border-
|
1947
|
+
-moz-border-radius-topleft: 4px;
|
1857
1948
|
}
|
1858
1949
|
|
1859
1950
|
.table-striped tbody tr:nth-child(odd) td,
|
@@ -1873,145 +1964,145 @@ table [class*=span],
|
|
1873
1964
|
margin-left: 0;
|
1874
1965
|
}
|
1875
1966
|
|
1876
|
-
table .span1 {
|
1967
|
+
.table .span1 {
|
1877
1968
|
float: none;
|
1878
1969
|
width: 44px;
|
1879
1970
|
margin-left: 0;
|
1880
1971
|
}
|
1881
1972
|
|
1882
|
-
table .span2 {
|
1973
|
+
.table .span2 {
|
1883
1974
|
float: none;
|
1884
1975
|
width: 124px;
|
1885
1976
|
margin-left: 0;
|
1886
1977
|
}
|
1887
1978
|
|
1888
|
-
table .span3 {
|
1979
|
+
.table .span3 {
|
1889
1980
|
float: none;
|
1890
1981
|
width: 204px;
|
1891
1982
|
margin-left: 0;
|
1892
1983
|
}
|
1893
1984
|
|
1894
|
-
table .span4 {
|
1985
|
+
.table .span4 {
|
1895
1986
|
float: none;
|
1896
1987
|
width: 284px;
|
1897
1988
|
margin-left: 0;
|
1898
1989
|
}
|
1899
1990
|
|
1900
|
-
table .span5 {
|
1991
|
+
.table .span5 {
|
1901
1992
|
float: none;
|
1902
1993
|
width: 364px;
|
1903
1994
|
margin-left: 0;
|
1904
1995
|
}
|
1905
1996
|
|
1906
|
-
table .span6 {
|
1997
|
+
.table .span6 {
|
1907
1998
|
float: none;
|
1908
1999
|
width: 444px;
|
1909
2000
|
margin-left: 0;
|
1910
2001
|
}
|
1911
2002
|
|
1912
|
-
table .span7 {
|
2003
|
+
.table .span7 {
|
1913
2004
|
float: none;
|
1914
2005
|
width: 524px;
|
1915
2006
|
margin-left: 0;
|
1916
2007
|
}
|
1917
2008
|
|
1918
|
-
table .span8 {
|
2009
|
+
.table .span8 {
|
1919
2010
|
float: none;
|
1920
2011
|
width: 604px;
|
1921
2012
|
margin-left: 0;
|
1922
2013
|
}
|
1923
2014
|
|
1924
|
-
table .span9 {
|
2015
|
+
.table .span9 {
|
1925
2016
|
float: none;
|
1926
2017
|
width: 684px;
|
1927
2018
|
margin-left: 0;
|
1928
2019
|
}
|
1929
2020
|
|
1930
|
-
table .span10 {
|
2021
|
+
.table .span10 {
|
1931
2022
|
float: none;
|
1932
2023
|
width: 764px;
|
1933
2024
|
margin-left: 0;
|
1934
2025
|
}
|
1935
2026
|
|
1936
|
-
table .span11 {
|
2027
|
+
.table .span11 {
|
1937
2028
|
float: none;
|
1938
2029
|
width: 844px;
|
1939
2030
|
margin-left: 0;
|
1940
2031
|
}
|
1941
2032
|
|
1942
|
-
table .span12 {
|
2033
|
+
.table .span12 {
|
1943
2034
|
float: none;
|
1944
2035
|
width: 924px;
|
1945
2036
|
margin-left: 0;
|
1946
2037
|
}
|
1947
2038
|
|
1948
|
-
table .span13 {
|
2039
|
+
.table .span13 {
|
1949
2040
|
float: none;
|
1950
2041
|
width: 1004px;
|
1951
2042
|
margin-left: 0;
|
1952
2043
|
}
|
1953
2044
|
|
1954
|
-
table .span14 {
|
2045
|
+
.table .span14 {
|
1955
2046
|
float: none;
|
1956
2047
|
width: 1084px;
|
1957
2048
|
margin-left: 0;
|
1958
2049
|
}
|
1959
2050
|
|
1960
|
-
table .span15 {
|
2051
|
+
.table .span15 {
|
1961
2052
|
float: none;
|
1962
2053
|
width: 1164px;
|
1963
2054
|
margin-left: 0;
|
1964
2055
|
}
|
1965
2056
|
|
1966
|
-
table .span16 {
|
2057
|
+
.table .span16 {
|
1967
2058
|
float: none;
|
1968
2059
|
width: 1244px;
|
1969
2060
|
margin-left: 0;
|
1970
2061
|
}
|
1971
2062
|
|
1972
|
-
table .span17 {
|
2063
|
+
.table .span17 {
|
1973
2064
|
float: none;
|
1974
2065
|
width: 1324px;
|
1975
2066
|
margin-left: 0;
|
1976
2067
|
}
|
1977
2068
|
|
1978
|
-
table .span18 {
|
2069
|
+
.table .span18 {
|
1979
2070
|
float: none;
|
1980
2071
|
width: 1404px;
|
1981
2072
|
margin-left: 0;
|
1982
2073
|
}
|
1983
2074
|
|
1984
|
-
table .span19 {
|
2075
|
+
.table .span19 {
|
1985
2076
|
float: none;
|
1986
2077
|
width: 1484px;
|
1987
2078
|
margin-left: 0;
|
1988
2079
|
}
|
1989
2080
|
|
1990
|
-
table .span20 {
|
2081
|
+
.table .span20 {
|
1991
2082
|
float: none;
|
1992
2083
|
width: 1564px;
|
1993
2084
|
margin-left: 0;
|
1994
2085
|
}
|
1995
2086
|
|
1996
|
-
table .span21 {
|
2087
|
+
.table .span21 {
|
1997
2088
|
float: none;
|
1998
2089
|
width: 1644px;
|
1999
2090
|
margin-left: 0;
|
2000
2091
|
}
|
2001
2092
|
|
2002
|
-
table .span22 {
|
2093
|
+
.table .span22 {
|
2003
2094
|
float: none;
|
2004
2095
|
width: 1724px;
|
2005
2096
|
margin-left: 0;
|
2006
2097
|
}
|
2007
2098
|
|
2008
|
-
table .span23 {
|
2099
|
+
.table .span23 {
|
2009
2100
|
float: none;
|
2010
2101
|
width: 1804px;
|
2011
2102
|
margin-left: 0;
|
2012
2103
|
}
|
2013
2104
|
|
2014
|
-
table .span24 {
|
2105
|
+
.table .span24 {
|
2015
2106
|
float: none;
|
2016
2107
|
width: 1884px;
|
2017
2108
|
margin-left: 0;
|
@@ -2025,10 +2116,30 @@ table .span24 {
|
|
2025
2116
|
background-color: #f2dede;
|
2026
2117
|
}
|
2027
2118
|
|
2119
|
+
.table tbody tr.warning td {
|
2120
|
+
background-color: #fcf8e3;
|
2121
|
+
}
|
2122
|
+
|
2028
2123
|
.table tbody tr.info td {
|
2029
2124
|
background-color: #d9edf7;
|
2030
2125
|
}
|
2031
2126
|
|
2127
|
+
.table-hover tbody tr.success:hover td {
|
2128
|
+
background-color: #d0e9c6;
|
2129
|
+
}
|
2130
|
+
|
2131
|
+
.table-hover tbody tr.error:hover td {
|
2132
|
+
background-color: #ebcccc;
|
2133
|
+
}
|
2134
|
+
|
2135
|
+
.table-hover tbody tr.warning:hover td {
|
2136
|
+
background-color: #faf2cc;
|
2137
|
+
}
|
2138
|
+
|
2139
|
+
.table-hover tbody tr.info:hover td {
|
2140
|
+
background-color: #c4e3f3;
|
2141
|
+
}
|
2142
|
+
|
2032
2143
|
[class^="icon-"],
|
2033
2144
|
[class*=" icon-"] {
|
2034
2145
|
display: inline-block;
|
@@ -2046,8 +2157,14 @@ table .span24 {
|
|
2046
2157
|
/* White icons with optional class, or on hover/active states of certain elements */
|
2047
2158
|
|
2048
2159
|
.icon-white,
|
2049
|
-
.nav > .active > a > [class^="icon-"],
|
2050
|
-
.nav > .active > a > [class*=" icon-"],
|
2160
|
+
.nav-tabs > .active > a > [class^="icon-"],
|
2161
|
+
.nav-tabs > .active > a > [class*=" icon-"],
|
2162
|
+
.nav-pills > .active > a > [class^="icon-"],
|
2163
|
+
.nav-pills > .active > a > [class*=" icon-"],
|
2164
|
+
.nav-list > .active > a > [class^="icon-"],
|
2165
|
+
.nav-list > .active > a > [class*=" icon-"],
|
2166
|
+
.navbar-inverse .nav > .active > a > [class^="icon-"],
|
2167
|
+
.navbar-inverse .nav > .active > a > [class*=" icon-"],
|
2051
2168
|
.dropdown-menu > li > a:hover > [class^="icon-"],
|
2052
2169
|
.dropdown-menu > li > a:hover > [class*=" icon-"],
|
2053
2170
|
.dropdown-menu > .active > a > [class^="icon-"],
|
@@ -2759,7 +2876,7 @@ table .span24 {
|
|
2759
2876
|
.navbar-fixed-bottom .dropdown .caret {
|
2760
2877
|
border-top: 0;
|
2761
2878
|
border-bottom: 4px solid #000000;
|
2762
|
-
content: "
|
2879
|
+
content: "";
|
2763
2880
|
}
|
2764
2881
|
|
2765
2882
|
.dropup .dropdown-menu,
|
@@ -2783,7 +2900,7 @@ table .span24 {
|
|
2783
2900
|
border-radius: 0 6px 6px 6px;
|
2784
2901
|
}
|
2785
2902
|
|
2786
|
-
.dropdown-submenu:hover .dropdown-menu {
|
2903
|
+
.dropdown-submenu:hover > .dropdown-menu {
|
2787
2904
|
display: block;
|
2788
2905
|
}
|
2789
2906
|
|
@@ -2866,7 +2983,6 @@ table .span24 {
|
|
2866
2983
|
position: relative;
|
2867
2984
|
height: 0;
|
2868
2985
|
overflow: hidden;
|
2869
|
-
overflow: visible \9;
|
2870
2986
|
-webkit-transition: height 0.35s ease;
|
2871
2987
|
-moz-transition: height 0.35s ease;
|
2872
2988
|
-o-transition: height 0.35s ease;
|
@@ -3030,7 +3146,7 @@ button.close {
|
|
3030
3146
|
.btn-mini {
|
3031
3147
|
padding: 2px 6px;
|
3032
3148
|
font-size: 11px;
|
3033
|
-
line-height:
|
3149
|
+
line-height: 17px;
|
3034
3150
|
}
|
3035
3151
|
|
3036
3152
|
.btn-block {
|
@@ -3047,6 +3163,12 @@ button.close {
|
|
3047
3163
|
margin-top: 5px;
|
3048
3164
|
}
|
3049
3165
|
|
3166
|
+
input[type="submit"].btn-block,
|
3167
|
+
input[type="reset"].btn-block,
|
3168
|
+
input[type="button"].btn-block {
|
3169
|
+
width: 100%;
|
3170
|
+
}
|
3171
|
+
|
3050
3172
|
.btn-primary.active,
|
3051
3173
|
.btn-warning.active,
|
3052
3174
|
.btn-danger.active,
|
@@ -3284,7 +3406,8 @@ input[type="submit"].btn.btn-mini {
|
|
3284
3406
|
}
|
3285
3407
|
|
3286
3408
|
.btn-link,
|
3287
|
-
.btn-link:active
|
3409
|
+
.btn-link:active,
|
3410
|
+
.btn-link[disabled] {
|
3288
3411
|
background-color: transparent;
|
3289
3412
|
background-image: none;
|
3290
3413
|
-webkit-box-shadow: none;
|
@@ -3307,11 +3430,17 @@ input[type="submit"].btn.btn-mini {
|
|
3307
3430
|
background-color: transparent;
|
3308
3431
|
}
|
3309
3432
|
|
3433
|
+
.btn-link[disabled]:hover {
|
3434
|
+
color: #333333;
|
3435
|
+
text-decoration: none;
|
3436
|
+
}
|
3437
|
+
|
3310
3438
|
.btn-group {
|
3311
3439
|
position: relative;
|
3312
3440
|
*margin-left: .3em;
|
3313
3441
|
font-size: 0;
|
3314
3442
|
white-space: nowrap;
|
3443
|
+
vertical-align: middle;
|
3315
3444
|
}
|
3316
3445
|
|
3317
3446
|
.btn-group:first-child {
|
@@ -4018,7 +4147,7 @@ input[type="submit"].btn.btn-mini {
|
|
4018
4147
|
*z-index: 2;
|
4019
4148
|
margin-bottom: 20px;
|
4020
4149
|
overflow: visible;
|
4021
|
-
color: #
|
4150
|
+
color: #777777;
|
4022
4151
|
}
|
4023
4152
|
|
4024
4153
|
.navbar-inner {
|
@@ -4037,11 +4166,23 @@ input[type="submit"].btn.btn-mini {
|
|
4037
4166
|
-moz-border-radius: 4px;
|
4038
4167
|
border-radius: 4px;
|
4039
4168
|
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
|
4169
|
+
*zoom: 1;
|
4040
4170
|
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
4041
4171
|
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
4042
4172
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
|
4043
4173
|
}
|
4044
4174
|
|
4175
|
+
.navbar-inner:before,
|
4176
|
+
.navbar-inner:after {
|
4177
|
+
display: table;
|
4178
|
+
line-height: 0;
|
4179
|
+
content: "";
|
4180
|
+
}
|
4181
|
+
|
4182
|
+
.navbar-inner:after {
|
4183
|
+
clear: both;
|
4184
|
+
}
|
4185
|
+
|
4045
4186
|
.navbar .container {
|
4046
4187
|
width: auto;
|
4047
4188
|
}
|
@@ -4057,7 +4198,7 @@ input[type="submit"].btn.btn-mini {
|
|
4057
4198
|
margin-left: -20px;
|
4058
4199
|
font-size: 20px;
|
4059
4200
|
font-weight: 200;
|
4060
|
-
color: #
|
4201
|
+
color: #777777;
|
4061
4202
|
text-shadow: 0 1px 0 #ffffff;
|
4062
4203
|
}
|
4063
4204
|
|
@@ -4071,7 +4212,7 @@ input[type="submit"].btn.btn-mini {
|
|
4071
4212
|
}
|
4072
4213
|
|
4073
4214
|
.navbar-link {
|
4074
|
-
color: #
|
4215
|
+
color: #777777;
|
4075
4216
|
}
|
4076
4217
|
|
4077
4218
|
.navbar-link:hover {
|
@@ -4087,11 +4228,13 @@ input[type="submit"].btn.btn-mini {
|
|
4087
4228
|
|
4088
4229
|
.navbar .btn,
|
4089
4230
|
.navbar .btn-group {
|
4090
|
-
margin-top:
|
4231
|
+
margin-top: 5px;
|
4091
4232
|
}
|
4092
4233
|
|
4093
|
-
.navbar .btn-group .btn
|
4094
|
-
|
4234
|
+
.navbar .btn-group .btn,
|
4235
|
+
.navbar .input-prepend .btn,
|
4236
|
+
.navbar .input-append .btn {
|
4237
|
+
margin-top: 0;
|
4095
4238
|
}
|
4096
4239
|
|
4097
4240
|
.navbar-form {
|
@@ -4182,9 +4325,12 @@ input[type="submit"].btn.btn-mini {
|
|
4182
4325
|
}
|
4183
4326
|
|
4184
4327
|
.navbar-fixed-top .navbar-inner,
|
4185
|
-
.navbar-fixed-bottom .navbar-inner,
|
4186
4328
|
.navbar-static-top .navbar-inner {
|
4187
|
-
border: 0;
|
4329
|
+
border-width: 0 0 1px;
|
4330
|
+
}
|
4331
|
+
|
4332
|
+
.navbar-fixed-bottom .navbar-inner {
|
4333
|
+
border-width: 1px 0 0;
|
4188
4334
|
}
|
4189
4335
|
|
4190
4336
|
.navbar-fixed-top .navbar-inner,
|
@@ -4233,6 +4379,7 @@ input[type="submit"].btn.btn-mini {
|
|
4233
4379
|
|
4234
4380
|
.navbar .nav.pull-right {
|
4235
4381
|
float: right;
|
4382
|
+
margin-right: 0;
|
4236
4383
|
}
|
4237
4384
|
|
4238
4385
|
.navbar .nav > li {
|
@@ -4242,7 +4389,7 @@ input[type="submit"].btn.btn-mini {
|
|
4242
4389
|
.navbar .nav > li > a {
|
4243
4390
|
float: none;
|
4244
4391
|
padding: 10px 15px 10px;
|
4245
|
-
color: #
|
4392
|
+
color: #777777;
|
4246
4393
|
text-decoration: none;
|
4247
4394
|
text-shadow: 0 1px 0 #ffffff;
|
4248
4395
|
}
|
@@ -4372,8 +4519,8 @@ input[type="submit"].btn.btn-mini {
|
|
4372
4519
|
}
|
4373
4520
|
|
4374
4521
|
.navbar .nav li.dropdown > .dropdown-toggle .caret {
|
4375
|
-
border-top-color: #
|
4376
|
-
border-bottom-color: #
|
4522
|
+
border-top-color: #777777;
|
4523
|
+
border-bottom-color: #777777;
|
4377
4524
|
}
|
4378
4525
|
|
4379
4526
|
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
|
@@ -4599,12 +4746,12 @@ input[type="submit"].btn.btn-mini {
|
|
4599
4746
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
|
4600
4747
|
}
|
4601
4748
|
|
4602
|
-
.pagination li {
|
4749
|
+
.pagination ul > li {
|
4603
4750
|
display: inline;
|
4604
4751
|
}
|
4605
4752
|
|
4606
|
-
.pagination a,
|
4607
|
-
.pagination span {
|
4753
|
+
.pagination ul > li > a,
|
4754
|
+
.pagination ul > li > span {
|
4608
4755
|
float: left;
|
4609
4756
|
padding: 0 14px;
|
4610
4757
|
line-height: 38px;
|
@@ -4614,36 +4761,36 @@ input[type="submit"].btn.btn-mini {
|
|
4614
4761
|
border-left-width: 0;
|
4615
4762
|
}
|
4616
4763
|
|
4617
|
-
.pagination a:hover,
|
4618
|
-
.pagination .active a,
|
4619
|
-
.pagination .active span {
|
4764
|
+
.pagination ul > li > a:hover,
|
4765
|
+
.pagination ul > .active > a,
|
4766
|
+
.pagination ul > .active > span {
|
4620
4767
|
background-color: #f5f5f5;
|
4621
4768
|
}
|
4622
4769
|
|
4623
|
-
.pagination .active a,
|
4624
|
-
.pagination .active span {
|
4770
|
+
.pagination ul > .active > a,
|
4771
|
+
.pagination ul > .active > span {
|
4625
4772
|
color: #999999;
|
4626
4773
|
cursor: default;
|
4627
4774
|
}
|
4628
4775
|
|
4629
|
-
.pagination .disabled span,
|
4630
|
-
.pagination .disabled a,
|
4631
|
-
.pagination .disabled a:hover {
|
4776
|
+
.pagination ul > .disabled > span,
|
4777
|
+
.pagination ul > .disabled > a,
|
4778
|
+
.pagination ul > .disabled > a:hover {
|
4632
4779
|
color: #999999;
|
4633
4780
|
cursor: default;
|
4634
4781
|
background-color: transparent;
|
4635
4782
|
}
|
4636
4783
|
|
4637
|
-
.pagination li:first-child a,
|
4638
|
-
.pagination li:first-child span {
|
4784
|
+
.pagination ul > li:first-child > a,
|
4785
|
+
.pagination ul > li:first-child > span {
|
4639
4786
|
border-left-width: 1px;
|
4640
4787
|
-webkit-border-radius: 3px 0 0 3px;
|
4641
4788
|
-moz-border-radius: 3px 0 0 3px;
|
4642
4789
|
border-radius: 3px 0 0 3px;
|
4643
4790
|
}
|
4644
4791
|
|
4645
|
-
.pagination li:last-child a,
|
4646
|
-
.pagination li:last-child span {
|
4792
|
+
.pagination ul > li:last-child > a,
|
4793
|
+
.pagination ul > li:last-child > span {
|
4647
4794
|
-webkit-border-radius: 0 3px 3px 0;
|
4648
4795
|
-moz-border-radius: 0 3px 3px 0;
|
4649
4796
|
border-radius: 0 3px 3px 0;
|
@@ -4679,7 +4826,8 @@ input[type="submit"].btn.btn-mini {
|
|
4679
4826
|
display: inline;
|
4680
4827
|
}
|
4681
4828
|
|
4682
|
-
.pager a
|
4829
|
+
.pager a,
|
4830
|
+
.pager span {
|
4683
4831
|
display: inline-block;
|
4684
4832
|
padding: 5px 14px;
|
4685
4833
|
background-color: #fff;
|
@@ -4694,7 +4842,8 @@ input[type="submit"].btn.btn-mini {
|
|
4694
4842
|
background-color: #f5f5f5;
|
4695
4843
|
}
|
4696
4844
|
|
4697
|
-
.pager .next a
|
4845
|
+
.pager .next a,
|
4846
|
+
.pager .next span {
|
4698
4847
|
float: right;
|
4699
4848
|
}
|
4700
4849
|
|
@@ -4703,25 +4852,26 @@ input[type="submit"].btn.btn-mini {
|
|
4703
4852
|
}
|
4704
4853
|
|
4705
4854
|
.pager .disabled a,
|
4706
|
-
.pager .disabled a:hover
|
4855
|
+
.pager .disabled a:hover,
|
4856
|
+
.pager .disabled span {
|
4707
4857
|
color: #999999;
|
4708
4858
|
cursor: default;
|
4709
4859
|
background-color: #fff;
|
4710
4860
|
}
|
4711
4861
|
|
4712
|
-
.modal-open .dropdown-menu {
|
4862
|
+
.modal-open .modal .dropdown-menu {
|
4713
4863
|
z-index: 2050;
|
4714
4864
|
}
|
4715
4865
|
|
4716
|
-
.modal-open .dropdown.open {
|
4866
|
+
.modal-open .modal .dropdown.open {
|
4717
4867
|
*z-index: 2050;
|
4718
4868
|
}
|
4719
4869
|
|
4720
|
-
.modal-open .popover {
|
4870
|
+
.modal-open .modal .popover {
|
4721
4871
|
z-index: 2060;
|
4722
4872
|
}
|
4723
4873
|
|
4724
|
-
.modal-open .tooltip {
|
4874
|
+
.modal-open .modal .tooltip {
|
4725
4875
|
z-index: 2080;
|
4726
4876
|
}
|
4727
4877
|
|