bootstrap-generators 1.0.1 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +11 -3
- data/bootstrap-generators.gemspec +4 -4
- data/lib/bootstrap/generators/version.rb +1 -1
- data/lib/generators/bootstrap/install/install_generator.rb +1 -1
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/container-app.css +3 -4
- data/lib/generators/bootstrap/install/templates/assets/stylesheets/container-app.css.scss +3 -4
- data/vendor/assets/javascripts/bootstrap-alerts.js +6 -4
- data/vendor/assets/javascripts/bootstrap-buttons.js +62 -0
- data/vendor/assets/javascripts/bootstrap-dropdown.js +3 -1
- data/vendor/assets/javascripts/bootstrap-modal.js +36 -20
- data/vendor/assets/javascripts/bootstrap-popover.js +17 -4
- data/vendor/assets/javascripts/bootstrap-scrollspy.js +3 -1
- data/vendor/assets/javascripts/bootstrap-tabs.js +4 -1
- data/vendor/assets/javascripts/bootstrap-twipsy.js +25 -7
- data/vendor/assets/javascripts/bootstrap.js +1 -0
- data/vendor/assets/stylesheets/bootstrap.css +232 -127
- data/vendor/assets/stylesheets/bootstrap.min.css +106 -80
- metadata +16 -18
@@ -1,12 +1,12 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v1.
|
2
|
+
* Bootstrap v1.4.0
|
3
3
|
*
|
4
4
|
* Copyright 2011 Twitter, Inc
|
5
5
|
* Licensed under the Apache License v2.0
|
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: Wed Dec 7 20:14:59 EST 2011
|
10
10
|
*/
|
11
11
|
/* Reset.less
|
12
12
|
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
|
@@ -180,10 +180,8 @@ textarea {
|
|
180
180
|
* Scaffolding
|
181
181
|
* Basic and global styles for generating a grid system, structural layout, and page templates
|
182
182
|
* ------------------------------------------------------------------------------------------- */
|
183
|
-
html, body {
|
184
|
-
background-color: #ffffff;
|
185
|
-
}
|
186
183
|
body {
|
184
|
+
background-color: #ffffff;
|
187
185
|
margin: 0;
|
188
186
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
189
187
|
font-size: 13px;
|
@@ -201,7 +199,6 @@ body {
|
|
201
199
|
display: table;
|
202
200
|
content: "";
|
203
201
|
zoom: 1;
|
204
|
-
*display: inline;
|
205
202
|
}
|
206
203
|
.container:after {
|
207
204
|
clear: both;
|
@@ -217,13 +214,14 @@ body {
|
|
217
214
|
display: table;
|
218
215
|
content: "";
|
219
216
|
zoom: 1;
|
220
|
-
*display: inline;
|
221
217
|
}
|
222
218
|
.container-fluid:after {
|
223
219
|
clear: both;
|
224
220
|
}
|
225
221
|
.container-fluid > .sidebar {
|
226
|
-
|
222
|
+
position: absolute;
|
223
|
+
top: 0;
|
224
|
+
left: 20px;
|
227
225
|
width: 220px;
|
228
226
|
}
|
229
227
|
.container-fluid > .content {
|
@@ -259,12 +257,11 @@ a:hover {
|
|
259
257
|
display: table;
|
260
258
|
content: "";
|
261
259
|
zoom: 1;
|
262
|
-
*display: inline;
|
263
260
|
}
|
264
261
|
.row:after {
|
265
262
|
clear: both;
|
266
263
|
}
|
267
|
-
[class*="span"] {
|
264
|
+
.row > [class*="span"] {
|
268
265
|
display: inline;
|
269
266
|
float: left;
|
270
267
|
margin-left: 20px;
|
@@ -341,40 +338,40 @@ a:hover {
|
|
341
338
|
.span24 {
|
342
339
|
width: 1420px;
|
343
340
|
}
|
344
|
-
.offset1 {
|
341
|
+
.row > .offset1 {
|
345
342
|
margin-left: 80px;
|
346
343
|
}
|
347
|
-
.offset2 {
|
344
|
+
.row > .offset2 {
|
348
345
|
margin-left: 140px;
|
349
346
|
}
|
350
|
-
.offset3 {
|
347
|
+
.row > .offset3 {
|
351
348
|
margin-left: 200px;
|
352
349
|
}
|
353
|
-
.offset4 {
|
350
|
+
.row > .offset4 {
|
354
351
|
margin-left: 260px;
|
355
352
|
}
|
356
|
-
.offset5 {
|
353
|
+
.row > .offset5 {
|
357
354
|
margin-left: 320px;
|
358
355
|
}
|
359
|
-
.offset6 {
|
356
|
+
.row > .offset6 {
|
360
357
|
margin-left: 380px;
|
361
358
|
}
|
362
|
-
.offset7 {
|
359
|
+
.row > .offset7 {
|
363
360
|
margin-left: 440px;
|
364
361
|
}
|
365
|
-
.offset8 {
|
362
|
+
.row > .offset8 {
|
366
363
|
margin-left: 500px;
|
367
364
|
}
|
368
|
-
.offset9 {
|
365
|
+
.row > .offset9 {
|
369
366
|
margin-left: 560px;
|
370
367
|
}
|
371
|
-
.offset10 {
|
368
|
+
.row > .offset10 {
|
372
369
|
margin-left: 620px;
|
373
370
|
}
|
374
|
-
.offset11 {
|
371
|
+
.row > .offset11 {
|
375
372
|
margin-left: 680px;
|
376
373
|
}
|
377
|
-
.offset12 {
|
374
|
+
.row > .offset12 {
|
378
375
|
margin-left: 740px;
|
379
376
|
}
|
380
377
|
.span-one-third {
|
@@ -383,10 +380,10 @@ a:hover {
|
|
383
380
|
.span-two-thirds {
|
384
381
|
width: 620px;
|
385
382
|
}
|
386
|
-
.offset-one-third {
|
383
|
+
.row > .offset-one-third {
|
387
384
|
margin-left: 340px;
|
388
385
|
}
|
389
|
-
.offset-two-thirds {
|
386
|
+
.row > .offset-two-thirds {
|
390
387
|
margin-left: 660px;
|
391
388
|
}
|
392
389
|
/* Typography.less
|
@@ -598,7 +595,6 @@ form .clearfix:before, form .clearfix:after {
|
|
598
595
|
display: table;
|
599
596
|
content: "";
|
600
597
|
zoom: 1;
|
601
|
-
*display: inline;
|
602
598
|
}
|
603
599
|
form .clearfix:after {
|
604
600
|
clear: both;
|
@@ -643,7 +639,9 @@ select,
|
|
643
639
|
-moz-border-radius: 3px;
|
644
640
|
border-radius: 3px;
|
645
641
|
}
|
646
|
-
|
642
|
+
select {
|
643
|
+
padding: initial;
|
644
|
+
}
|
647
645
|
input[type=checkbox], input[type=radio] {
|
648
646
|
width: auto;
|
649
647
|
height: auto;
|
@@ -670,6 +668,7 @@ input[type=button], input[type=reset], input[type=submit] {
|
|
670
668
|
}
|
671
669
|
select, input[type=file] {
|
672
670
|
height: 27px;
|
671
|
+
*height: auto;
|
673
672
|
line-height: 27px;
|
674
673
|
*margin-top: 4px;
|
675
674
|
/* For IE7, add top margin to align select with labels */
|
@@ -677,6 +676,7 @@ select, input[type=file] {
|
|
677
676
|
}
|
678
677
|
select[multiple] {
|
679
678
|
height: inherit;
|
679
|
+
background-color: #ffffff;
|
680
680
|
}
|
681
681
|
textarea {
|
682
682
|
height: auto;
|
@@ -719,33 +719,59 @@ input[type=file]:focus, input[type=checkbox]:focus, select:focus {
|
|
719
719
|
box-shadow: none;
|
720
720
|
outline: 1px dotted #666;
|
721
721
|
}
|
722
|
-
form
|
723
|
-
|
724
|
-
padding: 10px 0;
|
725
|
-
margin: -10px 0 10px;
|
726
|
-
-webkit-border-radius: 4px;
|
727
|
-
-moz-border-radius: 4px;
|
728
|
-
border-radius: 4px;
|
722
|
+
form .clearfix.error > label, form .clearfix.error .help-block, form .clearfix.error .help-inline {
|
723
|
+
color: #b94a48;
|
729
724
|
}
|
730
|
-
form
|
731
|
-
color: #
|
725
|
+
form .clearfix.error input, form .clearfix.error textarea {
|
726
|
+
color: #b94a48;
|
727
|
+
border-color: #ee5f5b;
|
728
|
+
}
|
729
|
+
form .clearfix.error input:focus, form .clearfix.error textarea:focus {
|
730
|
+
border-color: #e9322d;
|
731
|
+
-webkit-box-shadow: 0 0 6px #f8b9b7;
|
732
|
+
-moz-box-shadow: 0 0 6px #f8b9b7;
|
733
|
+
box-shadow: 0 0 6px #f8b9b7;
|
734
|
+
}
|
735
|
+
form .clearfix.error .input-prepend .add-on, form .clearfix.error .input-append .add-on {
|
736
|
+
color: #b94a48;
|
737
|
+
background-color: #fce6e6;
|
738
|
+
border-color: #b94a48;
|
739
|
+
}
|
740
|
+
form .clearfix.warning > label, form .clearfix.warning .help-block, form .clearfix.warning .help-inline {
|
741
|
+
color: #c09853;
|
742
|
+
}
|
743
|
+
form .clearfix.warning input, form .clearfix.warning textarea {
|
744
|
+
color: #c09853;
|
745
|
+
border-color: #ccae64;
|
746
|
+
}
|
747
|
+
form .clearfix.warning input:focus, form .clearfix.warning textarea:focus {
|
748
|
+
border-color: #be9a3f;
|
749
|
+
-webkit-box-shadow: 0 0 6px #e5d6b1;
|
750
|
+
-moz-box-shadow: 0 0 6px #e5d6b1;
|
751
|
+
box-shadow: 0 0 6px #e5d6b1;
|
752
|
+
}
|
753
|
+
form .clearfix.warning .input-prepend .add-on, form .clearfix.warning .input-append .add-on {
|
754
|
+
color: #c09853;
|
755
|
+
background-color: #d2b877;
|
756
|
+
border-color: #c09853;
|
732
757
|
}
|
733
|
-
form
|
734
|
-
|
735
|
-
-webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
|
736
|
-
-moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
|
737
|
-
box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
|
758
|
+
form .clearfix.success > label, form .clearfix.success .help-block, form .clearfix.success .help-inline {
|
759
|
+
color: #468847;
|
738
760
|
}
|
739
|
-
form
|
740
|
-
|
741
|
-
-
|
742
|
-
-moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
|
743
|
-
box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
|
761
|
+
form .clearfix.success input, form .clearfix.success textarea {
|
762
|
+
color: #468847;
|
763
|
+
border-color: #57a957;
|
744
764
|
}
|
745
|
-
form
|
746
|
-
|
747
|
-
|
748
|
-
|
765
|
+
form .clearfix.success input:focus, form .clearfix.success textarea:focus {
|
766
|
+
border-color: #458845;
|
767
|
+
-webkit-box-shadow: 0 0 6px #9acc9a;
|
768
|
+
-moz-box-shadow: 0 0 6px #9acc9a;
|
769
|
+
box-shadow: 0 0 6px #9acc9a;
|
770
|
+
}
|
771
|
+
form .clearfix.success .input-prepend .add-on, form .clearfix.success .input-append .add-on {
|
772
|
+
color: #468847;
|
773
|
+
background-color: #bcddbc;
|
774
|
+
border-color: #468847;
|
749
775
|
}
|
750
776
|
.input-mini,
|
751
777
|
input.mini,
|
@@ -786,97 +812,97 @@ select.xxlarge {
|
|
786
812
|
textarea.xxlarge {
|
787
813
|
overflow-y: auto;
|
788
814
|
}
|
789
|
-
input.span1, textarea.span1
|
815
|
+
input.span1, textarea.span1 {
|
790
816
|
display: inline-block;
|
791
817
|
float: none;
|
792
818
|
width: 30px;
|
793
819
|
margin-left: 0;
|
794
820
|
}
|
795
|
-
input.span2, textarea.span2
|
821
|
+
input.span2, textarea.span2 {
|
796
822
|
display: inline-block;
|
797
823
|
float: none;
|
798
824
|
width: 90px;
|
799
825
|
margin-left: 0;
|
800
826
|
}
|
801
|
-
input.span3, textarea.span3
|
827
|
+
input.span3, textarea.span3 {
|
802
828
|
display: inline-block;
|
803
829
|
float: none;
|
804
830
|
width: 150px;
|
805
831
|
margin-left: 0;
|
806
832
|
}
|
807
|
-
input.span4, textarea.span4
|
833
|
+
input.span4, textarea.span4 {
|
808
834
|
display: inline-block;
|
809
835
|
float: none;
|
810
836
|
width: 210px;
|
811
837
|
margin-left: 0;
|
812
838
|
}
|
813
|
-
input.span5, textarea.span5
|
839
|
+
input.span5, textarea.span5 {
|
814
840
|
display: inline-block;
|
815
841
|
float: none;
|
816
842
|
width: 270px;
|
817
843
|
margin-left: 0;
|
818
844
|
}
|
819
|
-
input.span6, textarea.span6
|
845
|
+
input.span6, textarea.span6 {
|
820
846
|
display: inline-block;
|
821
847
|
float: none;
|
822
848
|
width: 330px;
|
823
849
|
margin-left: 0;
|
824
850
|
}
|
825
|
-
input.span7, textarea.span7
|
851
|
+
input.span7, textarea.span7 {
|
826
852
|
display: inline-block;
|
827
853
|
float: none;
|
828
854
|
width: 390px;
|
829
855
|
margin-left: 0;
|
830
856
|
}
|
831
|
-
input.span8, textarea.span8
|
857
|
+
input.span8, textarea.span8 {
|
832
858
|
display: inline-block;
|
833
859
|
float: none;
|
834
860
|
width: 450px;
|
835
861
|
margin-left: 0;
|
836
862
|
}
|
837
|
-
input.span9, textarea.span9
|
863
|
+
input.span9, textarea.span9 {
|
838
864
|
display: inline-block;
|
839
865
|
float: none;
|
840
866
|
width: 510px;
|
841
867
|
margin-left: 0;
|
842
868
|
}
|
843
|
-
input.span10, textarea.span10
|
869
|
+
input.span10, textarea.span10 {
|
844
870
|
display: inline-block;
|
845
871
|
float: none;
|
846
872
|
width: 570px;
|
847
873
|
margin-left: 0;
|
848
874
|
}
|
849
|
-
input.span11, textarea.span11
|
875
|
+
input.span11, textarea.span11 {
|
850
876
|
display: inline-block;
|
851
877
|
float: none;
|
852
878
|
width: 630px;
|
853
879
|
margin-left: 0;
|
854
880
|
}
|
855
|
-
input.span12, textarea.span12
|
881
|
+
input.span12, textarea.span12 {
|
856
882
|
display: inline-block;
|
857
883
|
float: none;
|
858
884
|
width: 690px;
|
859
885
|
margin-left: 0;
|
860
886
|
}
|
861
|
-
input.span13, textarea.span13
|
887
|
+
input.span13, textarea.span13 {
|
862
888
|
display: inline-block;
|
863
889
|
float: none;
|
864
890
|
width: 750px;
|
865
891
|
margin-left: 0;
|
866
892
|
}
|
867
|
-
input.span14, textarea.span14
|
893
|
+
input.span14, textarea.span14 {
|
868
894
|
display: inline-block;
|
869
895
|
float: none;
|
870
896
|
width: 810px;
|
871
897
|
margin-left: 0;
|
872
898
|
}
|
873
|
-
input.span15, textarea.span15
|
899
|
+
input.span15, textarea.span15 {
|
874
900
|
display: inline-block;
|
875
901
|
float: none;
|
876
902
|
width: 870px;
|
877
903
|
margin-left: 0;
|
878
904
|
}
|
879
|
-
input.span16, textarea.span16
|
905
|
+
input.span16, textarea.span16 {
|
880
906
|
display: inline-block;
|
881
907
|
float: none;
|
882
908
|
width: 930px;
|
@@ -912,7 +938,7 @@ textarea[readonly] {
|
|
912
938
|
text-decoration: underline;
|
913
939
|
}
|
914
940
|
.help-inline, .help-block {
|
915
|
-
font-size:
|
941
|
+
font-size: 13px;
|
916
942
|
line-height: 18px;
|
917
943
|
color: #bfbfbf;
|
918
944
|
}
|
@@ -932,15 +958,6 @@ textarea[readonly] {
|
|
932
958
|
.inline-inputs {
|
933
959
|
color: #808080;
|
934
960
|
}
|
935
|
-
.inline-inputs span, .inline-inputs input {
|
936
|
-
display: inline-block;
|
937
|
-
}
|
938
|
-
.inline-inputs input.mini {
|
939
|
-
width: 60px;
|
940
|
-
}
|
941
|
-
.inline-inputs input.small {
|
942
|
-
width: 90px;
|
943
|
-
}
|
944
961
|
.inline-inputs span {
|
945
962
|
padding: 0 2px 0 1px;
|
946
963
|
}
|
@@ -1006,6 +1023,7 @@ textarea[readonly] {
|
|
1006
1023
|
float: none;
|
1007
1024
|
width: auto;
|
1008
1025
|
padding: 0;
|
1026
|
+
margin-left: 20px;
|
1009
1027
|
line-height: 18px;
|
1010
1028
|
text-align: left;
|
1011
1029
|
white-space: normal;
|
@@ -1030,6 +1048,8 @@ textarea[readonly] {
|
|
1030
1048
|
}
|
1031
1049
|
.inputs-list input[type=radio], .inputs-list input[type=checkbox] {
|
1032
1050
|
margin-bottom: 0;
|
1051
|
+
margin-left: -20px;
|
1052
|
+
float: left;
|
1033
1053
|
}
|
1034
1054
|
.form-stacked {
|
1035
1055
|
padding-left: 20px;
|
@@ -1084,15 +1104,8 @@ table {
|
|
1084
1104
|
width: 100%;
|
1085
1105
|
margin-bottom: 18px;
|
1086
1106
|
padding: 0;
|
1087
|
-
border-collapse: separate;
|
1088
|
-
*border-collapse: collapse;
|
1089
|
-
/* IE7, collapse table to remove spacing */
|
1090
|
-
|
1091
1107
|
font-size: 13px;
|
1092
|
-
border:
|
1093
|
-
-webkit-border-radius: 4px;
|
1094
|
-
-moz-border-radius: 4px;
|
1095
|
-
border-radius: 4px;
|
1108
|
+
border-collapse: collapse;
|
1096
1109
|
}
|
1097
1110
|
table th, table td {
|
1098
1111
|
padding: 10px 10px 9px;
|
@@ -1103,41 +1116,103 @@ table th {
|
|
1103
1116
|
padding-top: 9px;
|
1104
1117
|
font-weight: bold;
|
1105
1118
|
vertical-align: middle;
|
1106
|
-
border-bottom: 1px solid #ddd;
|
1107
1119
|
}
|
1108
1120
|
table td {
|
1109
1121
|
vertical-align: top;
|
1122
|
+
border-top: 1px solid #ddd;
|
1110
1123
|
}
|
1111
|
-
table
|
1112
|
-
border-left: 1px solid #ddd;
|
1113
|
-
}
|
1114
|
-
table tr + tr td {
|
1124
|
+
table tbody th {
|
1115
1125
|
border-top: 1px solid #ddd;
|
1126
|
+
vertical-align: top;
|
1127
|
+
}
|
1128
|
+
.condensed-table th, .condensed-table td {
|
1129
|
+
padding: 5px 5px 4px;
|
1130
|
+
}
|
1131
|
+
.bordered-table {
|
1132
|
+
border: 1px solid #ddd;
|
1133
|
+
border-collapse: separate;
|
1134
|
+
*border-collapse: collapse;
|
1135
|
+
/* IE7, collapse table to remove spacing */
|
1136
|
+
|
1137
|
+
-webkit-border-radius: 4px;
|
1138
|
+
-moz-border-radius: 4px;
|
1139
|
+
border-radius: 4px;
|
1140
|
+
}
|
1141
|
+
.bordered-table th + th, .bordered-table td + td, .bordered-table th + td {
|
1142
|
+
border-left: 1px solid #ddd;
|
1116
1143
|
}
|
1117
|
-
table tbody tr:first-child td:first-child {
|
1144
|
+
.bordered-table thead tr:first-child th:first-child, .bordered-table tbody tr:first-child td:first-child {
|
1118
1145
|
-webkit-border-radius: 4px 0 0 0;
|
1119
1146
|
-moz-border-radius: 4px 0 0 0;
|
1120
1147
|
border-radius: 4px 0 0 0;
|
1121
1148
|
}
|
1122
|
-
table tbody tr:first-child td:last-child {
|
1149
|
+
.bordered-table thead tr:first-child th:last-child, .bordered-table tbody tr:first-child td:last-child {
|
1123
1150
|
-webkit-border-radius: 0 4px 0 0;
|
1124
1151
|
-moz-border-radius: 0 4px 0 0;
|
1125
1152
|
border-radius: 0 4px 0 0;
|
1126
1153
|
}
|
1127
|
-
table tbody tr:last-child td:first-child {
|
1154
|
+
.bordered-table tbody tr:last-child td:first-child {
|
1128
1155
|
-webkit-border-radius: 0 0 0 4px;
|
1129
1156
|
-moz-border-radius: 0 0 0 4px;
|
1130
1157
|
border-radius: 0 0 0 4px;
|
1131
1158
|
}
|
1132
|
-
table tbody tr:last-child td:last-child {
|
1159
|
+
.bordered-table tbody tr:last-child td:last-child {
|
1133
1160
|
-webkit-border-radius: 0 0 4px 0;
|
1134
1161
|
-moz-border-radius: 0 0 4px 0;
|
1135
1162
|
border-radius: 0 0 4px 0;
|
1136
1163
|
}
|
1137
|
-
.
|
1164
|
+
table .span1 {
|
1165
|
+
width: 20px;
|
1166
|
+
}
|
1167
|
+
table .span2 {
|
1168
|
+
width: 60px;
|
1169
|
+
}
|
1170
|
+
table .span3 {
|
1171
|
+
width: 100px;
|
1172
|
+
}
|
1173
|
+
table .span4 {
|
1174
|
+
width: 140px;
|
1175
|
+
}
|
1176
|
+
table .span5 {
|
1177
|
+
width: 180px;
|
1178
|
+
}
|
1179
|
+
table .span6 {
|
1180
|
+
width: 220px;
|
1181
|
+
}
|
1182
|
+
table .span7 {
|
1183
|
+
width: 260px;
|
1184
|
+
}
|
1185
|
+
table .span8 {
|
1186
|
+
width: 300px;
|
1187
|
+
}
|
1188
|
+
table .span9 {
|
1189
|
+
width: 340px;
|
1190
|
+
}
|
1191
|
+
table .span10 {
|
1192
|
+
width: 380px;
|
1193
|
+
}
|
1194
|
+
table .span11 {
|
1195
|
+
width: 420px;
|
1196
|
+
}
|
1197
|
+
table .span12 {
|
1198
|
+
width: 460px;
|
1199
|
+
}
|
1200
|
+
table .span13 {
|
1201
|
+
width: 500px;
|
1202
|
+
}
|
1203
|
+
table .span14 {
|
1204
|
+
width: 540px;
|
1205
|
+
}
|
1206
|
+
table .span15 {
|
1207
|
+
width: 580px;
|
1208
|
+
}
|
1209
|
+
table .span16 {
|
1210
|
+
width: 620px;
|
1211
|
+
}
|
1212
|
+
.zebra-striped tbody tr:nth-child(odd) td, .zebra-striped tbody tr:nth-child(odd) th {
|
1138
1213
|
background-color: #f9f9f9;
|
1139
1214
|
}
|
1140
|
-
.zebra-striped tbody tr:hover td {
|
1215
|
+
.zebra-striped tbody tr:hover td, .zebra-striped tbody tr:hover th {
|
1141
1216
|
background-color: #f5f5f5;
|
1142
1217
|
}
|
1143
1218
|
table .header {
|
@@ -1238,7 +1313,7 @@ table .headerSortUp.purple, table .headerSortDown.purple {
|
|
1238
1313
|
color: #bfbfbf;
|
1239
1314
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1240
1315
|
}
|
1241
|
-
.topbar h3 a:hover, .topbar .brand
|
1316
|
+
.topbar h3 a:hover, .topbar .brand:hover, .topbar ul .active > a {
|
1242
1317
|
background-color: #333;
|
1243
1318
|
background-color: rgba(255, 255, 255, 0.05);
|
1244
1319
|
color: #ffffff;
|
@@ -1522,7 +1597,10 @@ a.menu:after, .dropdown-toggle:after {
|
|
1522
1597
|
color: #808080;
|
1523
1598
|
text-shadow: 0 1px 0 #ffffff;
|
1524
1599
|
}
|
1525
|
-
.topbar .dropdown-menu a:hover,
|
1600
|
+
.topbar .dropdown-menu a:hover,
|
1601
|
+
.dropdown-menu a:hover,
|
1602
|
+
.topbar .dropdown-menu a.hover,
|
1603
|
+
.dropdown-menu a.hover {
|
1526
1604
|
background-color: #dddddd;
|
1527
1605
|
background-repeat: repeat-x;
|
1528
1606
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
|
@@ -1554,7 +1632,7 @@ a.menu:after, .dropdown-toggle:after {
|
|
1554
1632
|
display: block;
|
1555
1633
|
}
|
1556
1634
|
.tabs, .pills {
|
1557
|
-
margin: 0 0
|
1635
|
+
margin: 0 0 18px;
|
1558
1636
|
padding: 0;
|
1559
1637
|
list-style: none;
|
1560
1638
|
zoom: 1;
|
@@ -1566,7 +1644,6 @@ a.menu:after, .dropdown-toggle:after {
|
|
1566
1644
|
display: table;
|
1567
1645
|
content: "";
|
1568
1646
|
zoom: 1;
|
1569
|
-
*display: inline;
|
1570
1647
|
}
|
1571
1648
|
.tabs:after, .pills:after {
|
1572
1649
|
clear: both;
|
@@ -1578,18 +1655,18 @@ a.menu:after, .dropdown-toggle:after {
|
|
1578
1655
|
display: block;
|
1579
1656
|
}
|
1580
1657
|
.tabs {
|
1581
|
-
|
1582
|
-
|
1583
|
-
border-
|
1658
|
+
border-color: #ddd;
|
1659
|
+
border-style: solid;
|
1660
|
+
border-width: 0 0 1px;
|
1584
1661
|
}
|
1585
1662
|
.tabs > li {
|
1586
1663
|
position: relative;
|
1587
|
-
|
1664
|
+
margin-bottom: -1px;
|
1588
1665
|
}
|
1589
1666
|
.tabs > li > a {
|
1590
1667
|
padding: 0 15px;
|
1591
1668
|
margin-right: 2px;
|
1592
|
-
line-height:
|
1669
|
+
line-height: 34px;
|
1593
1670
|
border: 1px solid transparent;
|
1594
1671
|
-webkit-border-radius: 4px 4px 0 0;
|
1595
1672
|
-moz-border-radius: 4px 4px 0 0;
|
@@ -1600,11 +1677,12 @@ a.menu:after, .dropdown-toggle:after {
|
|
1600
1677
|
background-color: #eee;
|
1601
1678
|
border-color: #eee #eee #ddd;
|
1602
1679
|
}
|
1603
|
-
.tabs >
|
1680
|
+
.tabs .active > a, .tabs .active > a:hover {
|
1604
1681
|
color: #808080;
|
1605
1682
|
background-color: #ffffff;
|
1606
1683
|
border: 1px solid #ddd;
|
1607
1684
|
border-bottom-color: transparent;
|
1685
|
+
cursor: default;
|
1608
1686
|
}
|
1609
1687
|
.tabs .menu-dropdown, .tabs .dropdown-menu {
|
1610
1688
|
top: 35px;
|
@@ -1624,38 +1702,41 @@ a.menu:after, .dropdown-toggle:after {
|
|
1624
1702
|
.tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
|
1625
1703
|
border-top-color: #555;
|
1626
1704
|
}
|
1627
|
-
.tab-content {
|
1628
|
-
clear: both;
|
1629
|
-
}
|
1630
1705
|
.pills a {
|
1631
1706
|
margin: 5px 3px 5px 0;
|
1632
1707
|
padding: 0 15px;
|
1633
|
-
text-shadow: 0 1px 1px #ffffff;
|
1634
1708
|
line-height: 30px;
|
1709
|
+
text-shadow: 0 1px 1px #ffffff;
|
1635
1710
|
-webkit-border-radius: 15px;
|
1636
1711
|
-moz-border-radius: 15px;
|
1637
1712
|
border-radius: 15px;
|
1638
1713
|
}
|
1639
1714
|
.pills a:hover {
|
1640
|
-
background: #00438a;
|
1641
1715
|
color: #ffffff;
|
1642
1716
|
text-decoration: none;
|
1643
1717
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
|
1718
|
+
background-color: #00438a;
|
1644
1719
|
}
|
1645
1720
|
.pills .active a {
|
1646
|
-
background: #0069d6;
|
1647
1721
|
color: #ffffff;
|
1648
1722
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
|
1723
|
+
background-color: #0069d6;
|
1649
1724
|
}
|
1650
|
-
.
|
1725
|
+
.pills-vertical > li {
|
1726
|
+
float: none;
|
1727
|
+
}
|
1728
|
+
.tab-content > .tab-pane,
|
1729
|
+
.pill-content > .pill-pane,
|
1730
|
+
.tab-content > div,
|
1731
|
+
.pill-content > div {
|
1651
1732
|
display: none;
|
1652
1733
|
}
|
1653
1734
|
.tab-content > .active, .pill-content > .active {
|
1654
1735
|
display: block;
|
1655
1736
|
}
|
1656
1737
|
.breadcrumb {
|
1657
|
-
margin: 0 0 18px;
|
1658
1738
|
padding: 7px 14px;
|
1739
|
+
margin: 0 0 18px;
|
1659
1740
|
background-color: #f5f5f5;
|
1660
1741
|
background-repeat: repeat-x;
|
1661
1742
|
background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
|
@@ -1737,6 +1818,10 @@ footer {
|
|
1737
1818
|
.alert-message.info:hover {
|
1738
1819
|
color: #ffffff;
|
1739
1820
|
}
|
1821
|
+
.btn .close, .alert-message .close {
|
1822
|
+
font-family: Arial, sans-serif;
|
1823
|
+
line-height: 18px;
|
1824
|
+
}
|
1740
1825
|
.btn.danger,
|
1741
1826
|
.alert-message.danger,
|
1742
1827
|
.btn.error,
|
@@ -1840,7 +1925,7 @@ footer {
|
|
1840
1925
|
border-color: #0064cd #0064cd #003f81;
|
1841
1926
|
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
1842
1927
|
}
|
1843
|
-
.btn:active {
|
1928
|
+
.btn.active, .btn:active {
|
1844
1929
|
-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1845
1930
|
-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
1846
1931
|
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
@@ -1895,10 +1980,10 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
1895
1980
|
font-weight: bold;
|
1896
1981
|
line-height: 13.5px;
|
1897
1982
|
text-shadow: 0 1px 0 #ffffff;
|
1898
|
-
filter: alpha(opacity=
|
1899
|
-
-khtml-opacity: 0.
|
1900
|
-
-moz-opacity: 0.
|
1901
|
-
opacity: 0.
|
1983
|
+
filter: alpha(opacity=25);
|
1984
|
+
-khtml-opacity: 0.25;
|
1985
|
+
-moz-opacity: 0.25;
|
1986
|
+
opacity: 0.25;
|
1902
1987
|
}
|
1903
1988
|
.close:hover {
|
1904
1989
|
color: #000000;
|
@@ -1937,9 +2022,18 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
1937
2022
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1938
2023
|
}
|
1939
2024
|
.alert-message .close {
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
2025
|
+
margin-top: 1px;
|
2026
|
+
*margin-top: 0;
|
2027
|
+
}
|
2028
|
+
.alert-message a {
|
2029
|
+
font-weight: bold;
|
2030
|
+
color: #404040;
|
2031
|
+
}
|
2032
|
+
.alert-message.danger p a,
|
2033
|
+
.alert-message.error p a,
|
2034
|
+
.alert-message.success p a,
|
2035
|
+
.alert-message.info p a {
|
2036
|
+
color: #ffffff;
|
1943
2037
|
}
|
1944
2038
|
.alert-message h5 {
|
1945
2039
|
line-height: 18px;
|
@@ -1995,6 +2089,12 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
1995
2089
|
background-color: #ddf4fb;
|
1996
2090
|
border-color: #c6edf9;
|
1997
2091
|
}
|
2092
|
+
.alert-message.block-message.danger p a,
|
2093
|
+
.alert-message.block-message.error p a,
|
2094
|
+
.alert-message.block-message.success p a,
|
2095
|
+
.alert-message.block-message.info p a {
|
2096
|
+
color: #404040;
|
2097
|
+
}
|
1998
2098
|
.pagination {
|
1999
2099
|
height: 36px;
|
2000
2100
|
margin: 18px 0;
|
@@ -2078,7 +2178,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2078
2178
|
left: 50%;
|
2079
2179
|
z-index: 11000;
|
2080
2180
|
width: 560px;
|
2081
|
-
margin: -250px 0 0 -
|
2181
|
+
margin: -250px 0 0 -280px;
|
2082
2182
|
background-color: #ffffff;
|
2083
2183
|
border: 1px solid #999;
|
2084
2184
|
border: 1px solid rgba(0, 0, 0, 0.3);
|
@@ -2116,6 +2216,9 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2116
2216
|
.modal-body {
|
2117
2217
|
padding: 15px;
|
2118
2218
|
}
|
2219
|
+
.modal-body form {
|
2220
|
+
margin-bottom: 0;
|
2221
|
+
}
|
2119
2222
|
.modal-footer {
|
2120
2223
|
background-color: #f5f5f5;
|
2121
2224
|
padding: 14px 15px 15px;
|
@@ -2133,7 +2236,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2133
2236
|
display: table;
|
2134
2237
|
content: "";
|
2135
2238
|
zoom: 1;
|
2136
|
-
*display: inline;
|
2137
2239
|
}
|
2138
2240
|
.modal-footer:after {
|
2139
2241
|
clear: both;
|
@@ -2142,6 +2244,9 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2142
2244
|
float: right;
|
2143
2245
|
margin-left: 5px;
|
2144
2246
|
}
|
2247
|
+
.modal .popover, .modal .twipsy {
|
2248
|
+
z-index: 12000;
|
2249
|
+
}
|
2145
2250
|
.twipsy {
|
2146
2251
|
display: block;
|
2147
2252
|
position: absolute;
|
@@ -2254,8 +2359,8 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2254
2359
|
height: 0;
|
2255
2360
|
}
|
2256
2361
|
.popover .inner {
|
2257
|
-
background
|
2258
|
-
background
|
2362
|
+
background: #000000;
|
2363
|
+
background: rgba(0, 0, 0, 0.8);
|
2259
2364
|
padding: 3px;
|
2260
2365
|
overflow: hidden;
|
2261
2366
|
width: 280px;
|
@@ -2301,15 +2406,16 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2301
2406
|
}
|
2302
2407
|
.label {
|
2303
2408
|
padding: 1px 3px 2px;
|
2304
|
-
background-color: #bfbfbf;
|
2305
2409
|
font-size: 9.75px;
|
2306
2410
|
font-weight: bold;
|
2307
2411
|
color: #ffffff;
|
2308
2412
|
text-transform: uppercase;
|
2309
2413
|
white-space: nowrap;
|
2414
|
+
background-color: #bfbfbf;
|
2310
2415
|
-webkit-border-radius: 3px;
|
2311
2416
|
-moz-border-radius: 3px;
|
2312
2417
|
border-radius: 3px;
|
2418
|
+
text-shadow: none;
|
2313
2419
|
}
|
2314
2420
|
.label.important {
|
2315
2421
|
background-color: #c43c35;
|
@@ -2332,7 +2438,6 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2332
2438
|
display: table;
|
2333
2439
|
content: "";
|
2334
2440
|
zoom: 1;
|
2335
|
-
*display: inline;
|
2336
2441
|
}
|
2337
2442
|
.media-grid:after {
|
2338
2443
|
clear: both;
|
@@ -2343,7 +2448,7 @@ button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
|
2343
2448
|
.media-grid a {
|
2344
2449
|
float: left;
|
2345
2450
|
padding: 4px;
|
2346
|
-
margin: 0 0
|
2451
|
+
margin: 0 0 18px 20px;
|
2347
2452
|
border: 1px solid #ddd;
|
2348
2453
|
-webkit-border-radius: 4px;
|
2349
2454
|
-moz-border-radius: 4px;
|