contour 2.1.0.beta10 → 2.1.0.beta11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -2
- data/app/assets/javascripts/bootstrap/{v3.0.0-rc1 → v3.0.0-rc2}/bootstrap.js +77 -50
- data/app/assets/javascripts/contour.js +1 -1
- data/app/assets/stylesheets/bootstrap-overrides.css +6 -42
- data/app/assets/stylesheets/bootstrap/{v3.0.0-rc1 → v3.0.0-rc2}/bootstrap.css +1442 -552
- data/app/assets/stylesheets/contour.css +1 -1
- data/app/assets/stylesheets/typeahead.js-bootstrap.css +13 -8
- data/app/helpers/contour_helper.rb +1 -1
- data/app/views/contour/_links.html.erb +6 -6
- data/app/views/contour/layouts/_latest_news.html.erb +1 -1
- data/app/views/contour/layouts/_menu.html.erb +12 -10
- data/app/views/contour/layouts/application.html.erb +2 -2
- data/contour.gemspec +1 -1
- data/lib/contour/version.rb +1 -1
- data/lib/generators/contour/scaffold/templates/_paginate.html.erb +2 -2
- data/lib/generators/contour/scaffold/templates/index.html.erb +1 -1
- data/lib/generators/contour/scaffold/templates/show.html.erb +2 -2
- metadata +6 -6
@@ -286,7 +286,9 @@ table {
|
|
286
286
|
}
|
287
287
|
}
|
288
288
|
|
289
|
-
|
289
|
+
*,
|
290
|
+
*:before,
|
291
|
+
*:after {
|
290
292
|
-webkit-box-sizing: border-box;
|
291
293
|
-moz-box-sizing: border-box;
|
292
294
|
box-sizing: border-box;
|
@@ -346,7 +348,7 @@ img {
|
|
346
348
|
}
|
347
349
|
|
348
350
|
.img-circle {
|
349
|
-
border-radius:
|
351
|
+
border-radius: 50%;
|
350
352
|
}
|
351
353
|
|
352
354
|
hr {
|
@@ -356,6 +358,17 @@ hr {
|
|
356
358
|
border-top: 1px solid #eeeeee;
|
357
359
|
}
|
358
360
|
|
361
|
+
.sr-only {
|
362
|
+
position: absolute;
|
363
|
+
width: 1px;
|
364
|
+
height: 1px;
|
365
|
+
padding: 0;
|
366
|
+
margin: -1px;
|
367
|
+
overflow: hidden;
|
368
|
+
clip: rect(0 0 0 0);
|
369
|
+
border: 0;
|
370
|
+
}
|
371
|
+
|
359
372
|
p {
|
360
373
|
margin: 0 0 10px;
|
361
374
|
}
|
@@ -564,38 +577,35 @@ dd {
|
|
564
577
|
margin-left: 0;
|
565
578
|
}
|
566
579
|
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
.dl-horizontal dd {
|
578
|
-
|
579
|
-
}
|
580
|
-
|
581
|
-
.dl-horizontal dd:
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
}
|
596
|
-
|
597
|
-
.dl-horizontal dd:after {
|
598
|
-
clear: both;
|
580
|
+
@media (min-width: 768px) {
|
581
|
+
.dl-horizontal dt {
|
582
|
+
float: left;
|
583
|
+
width: 160px;
|
584
|
+
overflow: hidden;
|
585
|
+
clear: left;
|
586
|
+
text-align: right;
|
587
|
+
text-overflow: ellipsis;
|
588
|
+
white-space: nowrap;
|
589
|
+
}
|
590
|
+
.dl-horizontal dd {
|
591
|
+
margin-left: 180px;
|
592
|
+
}
|
593
|
+
.dl-horizontal dd:before,
|
594
|
+
.dl-horizontal dd:after {
|
595
|
+
display: table;
|
596
|
+
content: " ";
|
597
|
+
}
|
598
|
+
.dl-horizontal dd:after {
|
599
|
+
clear: both;
|
600
|
+
}
|
601
|
+
.dl-horizontal dd:before,
|
602
|
+
.dl-horizontal dd:after {
|
603
|
+
display: table;
|
604
|
+
content: " ";
|
605
|
+
}
|
606
|
+
.dl-horizontal dd:after {
|
607
|
+
clear: both;
|
608
|
+
}
|
599
609
|
}
|
600
610
|
|
601
611
|
abbr[title],
|
@@ -636,7 +646,6 @@ blockquote small:before {
|
|
636
646
|
}
|
637
647
|
|
638
648
|
blockquote.pull-right {
|
639
|
-
float: right;
|
640
649
|
padding-right: 15px;
|
641
650
|
padding-left: 0;
|
642
651
|
border-right: 5px solid #eeeeee;
|
@@ -704,6 +713,7 @@ pre.prettyprint {
|
|
704
713
|
|
705
714
|
pre code {
|
706
715
|
padding: 0;
|
716
|
+
font-size: inherit;
|
707
717
|
color: inherit;
|
708
718
|
white-space: pre-wrap;
|
709
719
|
background-color: transparent;
|
@@ -761,7 +771,7 @@ pre code {
|
|
761
771
|
}
|
762
772
|
|
763
773
|
@media (min-width: 768px) {
|
764
|
-
.row {
|
774
|
+
.container .row {
|
765
775
|
margin-right: -15px;
|
766
776
|
margin-left: -15px;
|
767
777
|
}
|
@@ -772,18 +782,18 @@ pre code {
|
|
772
782
|
margin-left: -15px;
|
773
783
|
}
|
774
784
|
|
775
|
-
.col-1,
|
776
|
-
.col-2,
|
777
|
-
.col-3,
|
778
|
-
.col-4,
|
779
|
-
.col-5,
|
780
|
-
.col-6,
|
781
|
-
.col-7,
|
782
|
-
.col-8,
|
783
|
-
.col-9,
|
784
|
-
.col-10,
|
785
|
-
.col-11,
|
786
|
-
.col-12,
|
785
|
+
.col-xs-1,
|
786
|
+
.col-xs-2,
|
787
|
+
.col-xs-3,
|
788
|
+
.col-xs-4,
|
789
|
+
.col-xs-5,
|
790
|
+
.col-xs-6,
|
791
|
+
.col-xs-7,
|
792
|
+
.col-xs-8,
|
793
|
+
.col-xs-9,
|
794
|
+
.col-xs-10,
|
795
|
+
.col-xs-11,
|
796
|
+
.col-xs-12,
|
787
797
|
.col-sm-1,
|
788
798
|
.col-sm-2,
|
789
799
|
.col-sm-3,
|
@@ -796,6 +806,18 @@ pre code {
|
|
796
806
|
.col-sm-10,
|
797
807
|
.col-sm-11,
|
798
808
|
.col-sm-12,
|
809
|
+
.col-md-1,
|
810
|
+
.col-md-2,
|
811
|
+
.col-md-3,
|
812
|
+
.col-md-4,
|
813
|
+
.col-md-5,
|
814
|
+
.col-md-6,
|
815
|
+
.col-md-7,
|
816
|
+
.col-md-8,
|
817
|
+
.col-md-9,
|
818
|
+
.col-md-10,
|
819
|
+
.col-md-11,
|
820
|
+
.col-md-12,
|
799
821
|
.col-lg-1,
|
800
822
|
.col-lg-2,
|
801
823
|
.col-lg-3,
|
@@ -814,72 +836,71 @@ pre code {
|
|
814
836
|
padding-left: 15px;
|
815
837
|
}
|
816
838
|
|
817
|
-
.col-1,
|
818
|
-
.col-2,
|
819
|
-
.col-3,
|
820
|
-
.col-4,
|
821
|
-
.col-5,
|
822
|
-
.col-6,
|
823
|
-
.col-7,
|
824
|
-
.col-8,
|
825
|
-
.col-9,
|
826
|
-
.col-10,
|
827
|
-
.col-11
|
828
|
-
.col-12 {
|
839
|
+
.col-xs-1,
|
840
|
+
.col-xs-2,
|
841
|
+
.col-xs-3,
|
842
|
+
.col-xs-4,
|
843
|
+
.col-xs-5,
|
844
|
+
.col-xs-6,
|
845
|
+
.col-xs-7,
|
846
|
+
.col-xs-8,
|
847
|
+
.col-xs-9,
|
848
|
+
.col-xs-10,
|
849
|
+
.col-xs-11 {
|
829
850
|
float: left;
|
830
851
|
}
|
831
852
|
|
832
|
-
.col-1 {
|
853
|
+
.col-xs-1 {
|
833
854
|
width: 8.333333333333332%;
|
834
855
|
}
|
835
856
|
|
836
|
-
.col-2 {
|
857
|
+
.col-xs-2 {
|
837
858
|
width: 16.666666666666664%;
|
838
859
|
}
|
839
860
|
|
840
|
-
.col-3 {
|
861
|
+
.col-xs-3 {
|
841
862
|
width: 25%;
|
842
863
|
}
|
843
864
|
|
844
|
-
.col-4 {
|
865
|
+
.col-xs-4 {
|
845
866
|
width: 33.33333333333333%;
|
846
867
|
}
|
847
868
|
|
848
|
-
.col-5 {
|
869
|
+
.col-xs-5 {
|
849
870
|
width: 41.66666666666667%;
|
850
871
|
}
|
851
872
|
|
852
|
-
.col-6 {
|
873
|
+
.col-xs-6 {
|
853
874
|
width: 50%;
|
854
875
|
}
|
855
876
|
|
856
|
-
.col-7 {
|
877
|
+
.col-xs-7 {
|
857
878
|
width: 58.333333333333336%;
|
858
879
|
}
|
859
880
|
|
860
|
-
.col-8 {
|
881
|
+
.col-xs-8 {
|
861
882
|
width: 66.66666666666666%;
|
862
883
|
}
|
863
884
|
|
864
|
-
.col-9 {
|
885
|
+
.col-xs-9 {
|
865
886
|
width: 75%;
|
866
887
|
}
|
867
888
|
|
868
|
-
.col-10 {
|
889
|
+
.col-xs-10 {
|
869
890
|
width: 83.33333333333334%;
|
870
891
|
}
|
871
892
|
|
872
|
-
.col-11 {
|
893
|
+
.col-xs-11 {
|
873
894
|
width: 91.66666666666666%;
|
874
895
|
}
|
875
896
|
|
876
|
-
.col-12 {
|
897
|
+
.col-xs-12 {
|
877
898
|
width: 100%;
|
878
899
|
}
|
879
900
|
|
880
901
|
@media (min-width: 768px) {
|
881
902
|
.container {
|
882
|
-
max-width:
|
903
|
+
max-width: 720px;
|
883
904
|
}
|
884
905
|
.col-sm-1,
|
885
906
|
.col-sm-2,
|
@@ -891,8 +912,7 @@ pre code {
|
|
891
912
|
.col-sm-8,
|
892
913
|
.col-sm-9,
|
893
914
|
.col-sm-10,
|
894
|
-
.col-sm-11
|
895
|
-
.col-sm-12 {
|
915
|
+
.col-sm-11 {
|
896
916
|
float: left;
|
897
917
|
}
|
898
918
|
.col-sm-1 {
|
@@ -931,78 +951,265 @@ pre code {
|
|
931
951
|
.col-sm-12 {
|
932
952
|
width: 100%;
|
933
953
|
}
|
934
|
-
.col-push-1 {
|
954
|
+
.col-sm-push-1 {
|
935
955
|
left: 8.333333333333332%;
|
936
956
|
}
|
937
|
-
.col-push-2 {
|
957
|
+
.col-sm-push-2 {
|
938
958
|
left: 16.666666666666664%;
|
939
959
|
}
|
940
|
-
.col-push-3 {
|
960
|
+
.col-sm-push-3 {
|
941
961
|
left: 25%;
|
942
962
|
}
|
943
|
-
.col-push-4 {
|
963
|
+
.col-sm-push-4 {
|
944
964
|
left: 33.33333333333333%;
|
945
965
|
}
|
946
|
-
.col-push-5 {
|
966
|
+
.col-sm-push-5 {
|
947
967
|
left: 41.66666666666667%;
|
948
968
|
}
|
949
|
-
.col-push-6 {
|
969
|
+
.col-sm-push-6 {
|
950
970
|
left: 50%;
|
951
971
|
}
|
952
|
-
.col-push-7 {
|
972
|
+
.col-sm-push-7 {
|
953
973
|
left: 58.333333333333336%;
|
954
974
|
}
|
955
|
-
.col-push-8 {
|
975
|
+
.col-sm-push-8 {
|
956
976
|
left: 66.66666666666666%;
|
957
977
|
}
|
958
|
-
.col-push-9 {
|
978
|
+
.col-sm-push-9 {
|
959
979
|
left: 75%;
|
960
980
|
}
|
961
|
-
.col-push-10 {
|
981
|
+
.col-sm-push-10 {
|
962
982
|
left: 83.33333333333334%;
|
963
983
|
}
|
964
|
-
.col-push-11 {
|
984
|
+
.col-sm-push-11 {
|
965
985
|
left: 91.66666666666666%;
|
966
986
|
}
|
967
|
-
.col-pull-1 {
|
987
|
+
.col-sm-pull-1 {
|
968
988
|
right: 8.333333333333332%;
|
969
989
|
}
|
970
|
-
.col-pull-2 {
|
990
|
+
.col-sm-pull-2 {
|
971
991
|
right: 16.666666666666664%;
|
972
992
|
}
|
973
|
-
.col-pull-3 {
|
993
|
+
.col-sm-pull-3 {
|
974
994
|
right: 25%;
|
975
995
|
}
|
976
|
-
.col-pull-4 {
|
996
|
+
.col-sm-pull-4 {
|
977
997
|
right: 33.33333333333333%;
|
978
998
|
}
|
979
|
-
.col-pull-5 {
|
999
|
+
.col-sm-pull-5 {
|
980
1000
|
right: 41.66666666666667%;
|
981
1001
|
}
|
982
|
-
.col-pull-6 {
|
1002
|
+
.col-sm-pull-6 {
|
983
1003
|
right: 50%;
|
984
1004
|
}
|
985
|
-
.col-pull-7 {
|
1005
|
+
.col-sm-pull-7 {
|
986
1006
|
right: 58.333333333333336%;
|
987
1007
|
}
|
988
|
-
.col-pull-8 {
|
1008
|
+
.col-sm-pull-8 {
|
989
1009
|
right: 66.66666666666666%;
|
990
1010
|
}
|
991
|
-
.col-pull-9 {
|
1011
|
+
.col-sm-pull-9 {
|
992
1012
|
right: 75%;
|
993
1013
|
}
|
994
|
-
.col-pull-10 {
|
1014
|
+
.col-sm-pull-10 {
|
995
1015
|
right: 83.33333333333334%;
|
996
1016
|
}
|
997
|
-
.col-pull-11 {
|
1017
|
+
.col-sm-pull-11 {
|
998
1018
|
right: 91.66666666666666%;
|
999
1019
|
}
|
1020
|
+
.col-sm-offset-1 {
|
1021
|
+
margin-left: 8.333333333333332%;
|
1022
|
+
}
|
1023
|
+
.col-sm-offset-2 {
|
1024
|
+
margin-left: 16.666666666666664%;
|
1025
|
+
}
|
1026
|
+
.col-sm-offset-3 {
|
1027
|
+
margin-left: 25%;
|
1028
|
+
}
|
1029
|
+
.col-sm-offset-4 {
|
1030
|
+
margin-left: 33.33333333333333%;
|
1031
|
+
}
|
1032
|
+
.col-sm-offset-5 {
|
1033
|
+
margin-left: 41.66666666666667%;
|
1034
|
+
}
|
1035
|
+
.col-sm-offset-6 {
|
1036
|
+
margin-left: 50%;
|
1037
|
+
}
|
1038
|
+
.col-sm-offset-7 {
|
1039
|
+
margin-left: 58.333333333333336%;
|
1040
|
+
}
|
1041
|
+
.col-sm-offset-8 {
|
1042
|
+
margin-left: 66.66666666666666%;
|
1043
|
+
}
|
1044
|
+
.col-sm-offset-9 {
|
1045
|
+
margin-left: 75%;
|
1046
|
+
}
|
1047
|
+
.col-sm-offset-10 {
|
1048
|
+
margin-left: 83.33333333333334%;
|
1049
|
+
}
|
1050
|
+
.col-sm-offset-11 {
|
1051
|
+
margin-left: 91.66666666666666%;
|
1052
|
+
}
|
1000
1053
|
}
|
1001
1054
|
|
1002
1055
|
@media (min-width: 992px) {
|
1003
1056
|
.container {
|
1004
1057
|
max-width: 940px;
|
1005
1058
|
}
|
1059
|
+
.col-md-1,
|
1060
|
+
.col-md-2,
|
1061
|
+
.col-md-3,
|
1062
|
+
.col-md-4,
|
1063
|
+
.col-md-5,
|
1064
|
+
.col-md-6,
|
1065
|
+
.col-md-7,
|
1066
|
+
.col-md-8,
|
1067
|
+
.col-md-9,
|
1068
|
+
.col-md-10,
|
1069
|
+
.col-md-11 {
|
1070
|
+
float: left;
|
1071
|
+
}
|
1072
|
+
.col-md-1 {
|
1073
|
+
width: 8.333333333333332%;
|
1074
|
+
}
|
1075
|
+
.col-md-2 {
|
1076
|
+
width: 16.666666666666664%;
|
1077
|
+
}
|
1078
|
+
.col-md-3 {
|
1079
|
+
width: 25%;
|
1080
|
+
}
|
1081
|
+
.col-md-4 {
|
1082
|
+
width: 33.33333333333333%;
|
1083
|
+
}
|
1084
|
+
.col-md-5 {
|
1085
|
+
width: 41.66666666666667%;
|
1086
|
+
}
|
1087
|
+
.col-md-6 {
|
1088
|
+
width: 50%;
|
1089
|
+
}
|
1090
|
+
.col-md-7 {
|
1091
|
+
width: 58.333333333333336%;
|
1092
|
+
}
|
1093
|
+
.col-md-8 {
|
1094
|
+
width: 66.66666666666666%;
|
1095
|
+
}
|
1096
|
+
.col-md-9 {
|
1097
|
+
width: 75%;
|
1098
|
+
}
|
1099
|
+
.col-md-10 {
|
1100
|
+
width: 83.33333333333334%;
|
1101
|
+
}
|
1102
|
+
.col-md-11 {
|
1103
|
+
width: 91.66666666666666%;
|
1104
|
+
}
|
1105
|
+
.col-md-12 {
|
1106
|
+
width: 100%;
|
1107
|
+
}
|
1108
|
+
.col-md-push-1 {
|
1109
|
+
left: 8.333333333333332%;
|
1110
|
+
}
|
1111
|
+
.col-md-push-2 {
|
1112
|
+
left: 16.666666666666664%;
|
1113
|
+
}
|
1114
|
+
.col-md-push-3 {
|
1115
|
+
left: 25%;
|
1116
|
+
}
|
1117
|
+
.col-md-push-4 {
|
1118
|
+
left: 33.33333333333333%;
|
1119
|
+
}
|
1120
|
+
.col-md-push-5 {
|
1121
|
+
left: 41.66666666666667%;
|
1122
|
+
}
|
1123
|
+
.col-md-push-6 {
|
1124
|
+
left: 50%;
|
1125
|
+
}
|
1126
|
+
.col-md-push-7 {
|
1127
|
+
left: 58.333333333333336%;
|
1128
|
+
}
|
1129
|
+
.col-md-push-8 {
|
1130
|
+
left: 66.66666666666666%;
|
1131
|
+
}
|
1132
|
+
.col-md-push-9 {
|
1133
|
+
left: 75%;
|
1134
|
+
}
|
1135
|
+
.col-md-push-10 {
|
1136
|
+
left: 83.33333333333334%;
|
1137
|
+
}
|
1138
|
+
.col-md-push-11 {
|
1139
|
+
left: 91.66666666666666%;
|
1140
|
+
}
|
1141
|
+
.col-md-pull-1 {
|
1142
|
+
right: 8.333333333333332%;
|
1143
|
+
}
|
1144
|
+
.col-md-pull-2 {
|
1145
|
+
right: 16.666666666666664%;
|
1146
|
+
}
|
1147
|
+
.col-md-pull-3 {
|
1148
|
+
right: 25%;
|
1149
|
+
}
|
1150
|
+
.col-md-pull-4 {
|
1151
|
+
right: 33.33333333333333%;
|
1152
|
+
}
|
1153
|
+
.col-md-pull-5 {
|
1154
|
+
right: 41.66666666666667%;
|
1155
|
+
}
|
1156
|
+
.col-md-pull-6 {
|
1157
|
+
right: 50%;
|
1158
|
+
}
|
1159
|
+
.col-md-pull-7 {
|
1160
|
+
right: 58.333333333333336%;
|
1161
|
+
}
|
1162
|
+
.col-md-pull-8 {
|
1163
|
+
right: 66.66666666666666%;
|
1164
|
+
}
|
1165
|
+
.col-md-pull-9 {
|
1166
|
+
right: 75%;
|
1167
|
+
}
|
1168
|
+
.col-md-pull-10 {
|
1169
|
+
right: 83.33333333333334%;
|
1170
|
+
}
|
1171
|
+
.col-md-pull-11 {
|
1172
|
+
right: 91.66666666666666%;
|
1173
|
+
}
|
1174
|
+
.col-md-offset-1 {
|
1175
|
+
margin-left: 8.333333333333332%;
|
1176
|
+
}
|
1177
|
+
.col-md-offset-2 {
|
1178
|
+
margin-left: 16.666666666666664%;
|
1179
|
+
}
|
1180
|
+
.col-md-offset-3 {
|
1181
|
+
margin-left: 25%;
|
1182
|
+
}
|
1183
|
+
.col-md-offset-4 {
|
1184
|
+
margin-left: 33.33333333333333%;
|
1185
|
+
}
|
1186
|
+
.col-md-offset-5 {
|
1187
|
+
margin-left: 41.66666666666667%;
|
1188
|
+
}
|
1189
|
+
.col-md-offset-6 {
|
1190
|
+
margin-left: 50%;
|
1191
|
+
}
|
1192
|
+
.col-md-offset-7 {
|
1193
|
+
margin-left: 58.333333333333336%;
|
1194
|
+
}
|
1195
|
+
.col-md-offset-8 {
|
1196
|
+
margin-left: 66.66666666666666%;
|
1197
|
+
}
|
1198
|
+
.col-md-offset-9 {
|
1199
|
+
margin-left: 75%;
|
1200
|
+
}
|
1201
|
+
.col-md-offset-10 {
|
1202
|
+
margin-left: 83.33333333333334%;
|
1203
|
+
}
|
1204
|
+
.col-md-offset-11 {
|
1205
|
+
margin-left: 91.66666666666666%;
|
1206
|
+
}
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
@media (min-width: 1200px) {
|
1210
|
+
.container {
|
1211
|
+
max-width: 1140px;
|
1212
|
+
}
|
1006
1213
|
.col-lg-1,
|
1007
1214
|
.col-lg-2,
|
1008
1215
|
.col-lg-3,
|
@@ -1013,8 +1220,7 @@ pre code {
|
|
1013
1220
|
.col-lg-8,
|
1014
1221
|
.col-lg-9,
|
1015
1222
|
.col-lg-10,
|
1016
|
-
.col-lg-11
|
1017
|
-
.col-lg-12 {
|
1223
|
+
.col-lg-11 {
|
1018
1224
|
float: left;
|
1019
1225
|
}
|
1020
1226
|
.col-lg-1 {
|
@@ -1053,47 +1259,107 @@ pre code {
|
|
1053
1259
|
.col-lg-12 {
|
1054
1260
|
width: 100%;
|
1055
1261
|
}
|
1056
|
-
.col-
|
1262
|
+
.col-lg-push-1 {
|
1263
|
+
left: 8.333333333333332%;
|
1264
|
+
}
|
1265
|
+
.col-lg-push-2 {
|
1266
|
+
left: 16.666666666666664%;
|
1267
|
+
}
|
1268
|
+
.col-lg-push-3 {
|
1269
|
+
left: 25%;
|
1270
|
+
}
|
1271
|
+
.col-lg-push-4 {
|
1272
|
+
left: 33.33333333333333%;
|
1273
|
+
}
|
1274
|
+
.col-lg-push-5 {
|
1275
|
+
left: 41.66666666666667%;
|
1276
|
+
}
|
1277
|
+
.col-lg-push-6 {
|
1278
|
+
left: 50%;
|
1279
|
+
}
|
1280
|
+
.col-lg-push-7 {
|
1281
|
+
left: 58.333333333333336%;
|
1282
|
+
}
|
1283
|
+
.col-lg-push-8 {
|
1284
|
+
left: 66.66666666666666%;
|
1285
|
+
}
|
1286
|
+
.col-lg-push-9 {
|
1287
|
+
left: 75%;
|
1288
|
+
}
|
1289
|
+
.col-lg-push-10 {
|
1290
|
+
left: 83.33333333333334%;
|
1291
|
+
}
|
1292
|
+
.col-lg-push-11 {
|
1293
|
+
left: 91.66666666666666%;
|
1294
|
+
}
|
1295
|
+
.col-lg-pull-1 {
|
1296
|
+
right: 8.333333333333332%;
|
1297
|
+
}
|
1298
|
+
.col-lg-pull-2 {
|
1299
|
+
right: 16.666666666666664%;
|
1300
|
+
}
|
1301
|
+
.col-lg-pull-3 {
|
1302
|
+
right: 25%;
|
1303
|
+
}
|
1304
|
+
.col-lg-pull-4 {
|
1305
|
+
right: 33.33333333333333%;
|
1306
|
+
}
|
1307
|
+
.col-lg-pull-5 {
|
1308
|
+
right: 41.66666666666667%;
|
1309
|
+
}
|
1310
|
+
.col-lg-pull-6 {
|
1311
|
+
right: 50%;
|
1312
|
+
}
|
1313
|
+
.col-lg-pull-7 {
|
1314
|
+
right: 58.333333333333336%;
|
1315
|
+
}
|
1316
|
+
.col-lg-pull-8 {
|
1317
|
+
right: 66.66666666666666%;
|
1318
|
+
}
|
1319
|
+
.col-lg-pull-9 {
|
1320
|
+
right: 75%;
|
1321
|
+
}
|
1322
|
+
.col-lg-pull-10 {
|
1323
|
+
right: 83.33333333333334%;
|
1324
|
+
}
|
1325
|
+
.col-lg-pull-11 {
|
1326
|
+
right: 91.66666666666666%;
|
1327
|
+
}
|
1328
|
+
.col-lg-offset-1 {
|
1057
1329
|
margin-left: 8.333333333333332%;
|
1058
1330
|
}
|
1059
|
-
.col-offset-2 {
|
1331
|
+
.col-lg-offset-2 {
|
1060
1332
|
margin-left: 16.666666666666664%;
|
1061
1333
|
}
|
1062
|
-
.col-offset-3 {
|
1334
|
+
.col-lg-offset-3 {
|
1063
1335
|
margin-left: 25%;
|
1064
1336
|
}
|
1065
|
-
.col-offset-4 {
|
1337
|
+
.col-lg-offset-4 {
|
1066
1338
|
margin-left: 33.33333333333333%;
|
1067
1339
|
}
|
1068
|
-
.col-offset-5 {
|
1340
|
+
.col-lg-offset-5 {
|
1069
1341
|
margin-left: 41.66666666666667%;
|
1070
1342
|
}
|
1071
|
-
.col-offset-6 {
|
1343
|
+
.col-lg-offset-6 {
|
1072
1344
|
margin-left: 50%;
|
1073
1345
|
}
|
1074
|
-
.col-offset-7 {
|
1346
|
+
.col-lg-offset-7 {
|
1075
1347
|
margin-left: 58.333333333333336%;
|
1076
1348
|
}
|
1077
|
-
.col-offset-8 {
|
1349
|
+
.col-lg-offset-8 {
|
1078
1350
|
margin-left: 66.66666666666666%;
|
1079
1351
|
}
|
1080
|
-
.col-offset-9 {
|
1352
|
+
.col-lg-offset-9 {
|
1081
1353
|
margin-left: 75%;
|
1082
1354
|
}
|
1083
|
-
.col-offset-10 {
|
1355
|
+
.col-lg-offset-10 {
|
1084
1356
|
margin-left: 83.33333333333334%;
|
1085
1357
|
}
|
1086
|
-
.col-offset-11 {
|
1358
|
+
.col-lg-offset-11 {
|
1087
1359
|
margin-left: 91.66666666666666%;
|
1088
1360
|
}
|
1089
1361
|
}
|
1090
1362
|
|
1091
|
-
@media (min-width: 1200px) {
|
1092
|
-
.container {
|
1093
|
-
max-width: 1170px;
|
1094
|
-
}
|
1095
|
-
}
|
1096
|
-
|
1097
1363
|
table {
|
1098
1364
|
max-width: 100%;
|
1099
1365
|
background-color: transparent;
|
@@ -1354,8 +1620,8 @@ input[type="number"]::-webkit-inner-spin-button {
|
|
1354
1620
|
.form-control {
|
1355
1621
|
display: block;
|
1356
1622
|
width: 100%;
|
1357
|
-
height:
|
1358
|
-
padding:
|
1623
|
+
height: 34px;
|
1624
|
+
padding: 6px 12px;
|
1359
1625
|
font-size: 14px;
|
1360
1626
|
line-height: 1.428571429;
|
1361
1627
|
color: #555555;
|
@@ -1370,10 +1636,10 @@ input[type="number"]::-webkit-inner-spin-button {
|
|
1370
1636
|
}
|
1371
1637
|
|
1372
1638
|
.form-control:focus {
|
1373
|
-
border-color:
|
1639
|
+
border-color: #66afe9;
|
1374
1640
|
outline: 0;
|
1375
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(
|
1376
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(
|
1641
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
1642
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
1377
1643
|
}
|
1378
1644
|
|
1379
1645
|
.form-control[disabled],
|
@@ -1438,32 +1704,37 @@ textarea.form-control {
|
|
1438
1704
|
margin-left: 10px;
|
1439
1705
|
}
|
1440
1706
|
|
1441
|
-
.input-
|
1442
|
-
height: 56px;
|
1443
|
-
padding: 14px 16px;
|
1444
|
-
font-size: 18px;
|
1445
|
-
border-radius: 6px;
|
1446
|
-
}
|
1447
|
-
|
1448
|
-
.input-small {
|
1707
|
+
.input-sm {
|
1449
1708
|
height: 30px;
|
1450
1709
|
padding: 5px 10px;
|
1451
1710
|
font-size: 12px;
|
1711
|
+
line-height: 1.5;
|
1452
1712
|
border-radius: 3px;
|
1453
1713
|
}
|
1454
1714
|
|
1455
|
-
select.input-
|
1456
|
-
height: 56px;
|
1457
|
-
line-height: 56px;
|
1458
|
-
}
|
1459
|
-
|
1460
|
-
select.input-small {
|
1715
|
+
select.input-sm {
|
1461
1716
|
height: 30px;
|
1462
1717
|
line-height: 30px;
|
1463
1718
|
}
|
1464
1719
|
|
1465
|
-
textarea.input-
|
1466
|
-
|
1720
|
+
textarea.input-sm {
|
1721
|
+
height: auto;
|
1722
|
+
}
|
1723
|
+
|
1724
|
+
.input-lg {
|
1725
|
+
height: 45px;
|
1726
|
+
padding: 10px 16px;
|
1727
|
+
font-size: 18px;
|
1728
|
+
line-height: 1.33;
|
1729
|
+
border-radius: 6px;
|
1730
|
+
}
|
1731
|
+
|
1732
|
+
select.input-lg {
|
1733
|
+
height: 45px;
|
1734
|
+
line-height: 45px;
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
textarea.input-lg {
|
1467
1738
|
height: auto;
|
1468
1739
|
}
|
1469
1740
|
|
@@ -1473,7 +1744,6 @@ textarea.input-small {
|
|
1473
1744
|
}
|
1474
1745
|
|
1475
1746
|
.has-warning .form-control {
|
1476
|
-
padding-right: 32px;
|
1477
1747
|
border-color: #c09853;
|
1478
1748
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1479
1749
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
@@ -1497,7 +1767,6 @@ textarea.input-small {
|
|
1497
1767
|
}
|
1498
1768
|
|
1499
1769
|
.has-error .form-control {
|
1500
|
-
padding-right: 32px;
|
1501
1770
|
border-color: #b94a48;
|
1502
1771
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1503
1772
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
@@ -1521,7 +1790,6 @@ textarea.input-small {
|
|
1521
1790
|
}
|
1522
1791
|
|
1523
1792
|
.has-success .form-control {
|
1524
|
-
padding-right: 32px;
|
1525
1793
|
border-color: #468847;
|
1526
1794
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1527
1795
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
@@ -1539,6 +1807,11 @@ textarea.input-small {
|
|
1539
1807
|
border-color: #468847;
|
1540
1808
|
}
|
1541
1809
|
|
1810
|
+
.form-control-static {
|
1811
|
+
padding-top: 6px;
|
1812
|
+
margin-bottom: 0;
|
1813
|
+
}
|
1814
|
+
|
1542
1815
|
.help-block {
|
1543
1816
|
display: block;
|
1544
1817
|
margin-top: 5px;
|
@@ -1546,35 +1819,102 @@ textarea.input-small {
|
|
1546
1819
|
color: #737373;
|
1547
1820
|
}
|
1548
1821
|
|
1549
|
-
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1560
|
-
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1822
|
+
@media (min-width: 768px) {
|
1823
|
+
.form-inline .form-group {
|
1824
|
+
display: inline-block;
|
1825
|
+
margin-bottom: 0;
|
1826
|
+
vertical-align: middle;
|
1827
|
+
}
|
1828
|
+
.form-inline .form-control {
|
1829
|
+
display: inline-block;
|
1830
|
+
}
|
1831
|
+
.form-inline .radio,
|
1832
|
+
.form-inline .checkbox {
|
1833
|
+
display: inline-block;
|
1834
|
+
padding-left: 0;
|
1835
|
+
margin-top: 0;
|
1836
|
+
margin-bottom: 0;
|
1837
|
+
}
|
1838
|
+
.form-inline .radio input[type="radio"],
|
1839
|
+
.form-inline .checkbox input[type="checkbox"] {
|
1840
|
+
float: none;
|
1841
|
+
margin-left: 0;
|
1842
|
+
}
|
1567
1843
|
}
|
1568
1844
|
|
1569
|
-
.
|
1570
|
-
|
1845
|
+
.form-horizontal .control-label,
|
1846
|
+
.form-horizontal .radio-inline,
|
1847
|
+
.form-horizontal .checkbox-inline {
|
1848
|
+
padding-top: 6px;
|
1849
|
+
}
|
1850
|
+
|
1851
|
+
.form-horizontal .form-group:before,
|
1852
|
+
.form-horizontal .form-group:after {
|
1853
|
+
display: table;
|
1854
|
+
content: " ";
|
1855
|
+
}
|
1856
|
+
|
1857
|
+
.form-horizontal .form-group:after {
|
1858
|
+
clear: both;
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
.form-horizontal .form-group:before,
|
1862
|
+
.form-horizontal .form-group:after {
|
1863
|
+
display: table;
|
1864
|
+
content: " ";
|
1865
|
+
}
|
1866
|
+
|
1867
|
+
.form-horizontal .form-group:after {
|
1868
|
+
clear: both;
|
1869
|
+
}
|
1870
|
+
|
1871
|
+
@media (min-width: 768px) {
|
1872
|
+
.container .form-horizontal .form-group {
|
1873
|
+
margin-right: -15px;
|
1874
|
+
margin-left: -15px;
|
1875
|
+
}
|
1876
|
+
}
|
1877
|
+
|
1878
|
+
.form-horizontal .form-group .row {
|
1879
|
+
margin-right: -15px;
|
1880
|
+
margin-left: -15px;
|
1881
|
+
}
|
1882
|
+
|
1883
|
+
@media (min-width: 768px) {
|
1884
|
+
.form-horizontal .control-label {
|
1885
|
+
text-align: right;
|
1886
|
+
}
|
1887
|
+
}
|
1888
|
+
|
1889
|
+
.btn {
|
1890
|
+
display: inline-block;
|
1891
|
+
padding: 6px 12px;
|
1892
|
+
margin-bottom: 0;
|
1893
|
+
font-size: 14px;
|
1894
|
+
font-weight: bold;
|
1895
|
+
line-height: 1.428571429;
|
1896
|
+
text-align: center;
|
1897
|
+
white-space: nowrap;
|
1898
|
+
vertical-align: middle;
|
1899
|
+
cursor: pointer;
|
1900
|
+
border: 1px solid transparent;
|
1901
|
+
border-radius: 4px;
|
1902
|
+
-webkit-user-select: none;
|
1903
|
+
-moz-user-select: none;
|
1904
|
+
-ms-user-select: none;
|
1905
|
+
-o-user-select: none;
|
1906
|
+
user-select: none;
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
.btn:focus {
|
1910
|
+
outline: thin dotted #333;
|
1571
1911
|
outline: 5px auto -webkit-focus-ring-color;
|
1572
1912
|
outline-offset: -2px;
|
1573
1913
|
}
|
1574
1914
|
|
1575
1915
|
.btn:hover,
|
1576
1916
|
.btn:focus {
|
1577
|
-
color: #
|
1917
|
+
color: #333333;
|
1578
1918
|
text-decoration: none;
|
1579
1919
|
}
|
1580
1920
|
|
@@ -1597,17 +1937,18 @@ fieldset[disabled] .btn {
|
|
1597
1937
|
}
|
1598
1938
|
|
1599
1939
|
.btn-default {
|
1600
|
-
color: #
|
1601
|
-
background-color: #
|
1602
|
-
border-color: #
|
1940
|
+
color: #333333;
|
1941
|
+
background-color: #ffffff;
|
1942
|
+
border-color: #cccccc;
|
1603
1943
|
}
|
1604
1944
|
|
1605
1945
|
.btn-default:hover,
|
1606
1946
|
.btn-default:focus,
|
1607
1947
|
.btn-default:active,
|
1608
1948
|
.btn-default.active {
|
1609
|
-
|
1610
|
-
|
1949
|
+
color: #333333;
|
1950
|
+
background-color: #ebebeb;
|
1951
|
+
border-color: #adadad;
|
1611
1952
|
}
|
1612
1953
|
|
1613
1954
|
.btn-default.disabled,
|
@@ -1625,22 +1966,23 @@ fieldset[disabled] .btn-default:active,
|
|
1625
1966
|
.btn-default.disabled.active,
|
1626
1967
|
.btn-default[disabled].active,
|
1627
1968
|
fieldset[disabled] .btn-default.active {
|
1628
|
-
background-color: #
|
1629
|
-
border-color: #
|
1969
|
+
background-color: #ffffff;
|
1970
|
+
border-color: #cccccc;
|
1630
1971
|
}
|
1631
1972
|
|
1632
1973
|
.btn-primary {
|
1633
1974
|
color: #ffffff;
|
1634
1975
|
background-color: #428bca;
|
1635
|
-
border-color: #
|
1976
|
+
border-color: #357ebd;
|
1636
1977
|
}
|
1637
1978
|
|
1638
1979
|
.btn-primary:hover,
|
1639
1980
|
.btn-primary:focus,
|
1640
1981
|
.btn-primary:active,
|
1641
1982
|
.btn-primary.active {
|
1642
|
-
|
1643
|
-
|
1983
|
+
color: #ffffff;
|
1984
|
+
background-color: #3276b1;
|
1985
|
+
border-color: #285e8e;
|
1644
1986
|
}
|
1645
1987
|
|
1646
1988
|
.btn-primary.disabled,
|
@@ -1659,21 +2001,22 @@ fieldset[disabled] .btn-primary:active,
|
|
1659
2001
|
.btn-primary[disabled].active,
|
1660
2002
|
fieldset[disabled] .btn-primary.active {
|
1661
2003
|
background-color: #428bca;
|
1662
|
-
border-color: #
|
2004
|
+
border-color: #357ebd;
|
1663
2005
|
}
|
1664
2006
|
|
1665
2007
|
.btn-warning {
|
1666
2008
|
color: #ffffff;
|
1667
2009
|
background-color: #f0ad4e;
|
1668
|
-
border-color: #
|
2010
|
+
border-color: #eea236;
|
1669
2011
|
}
|
1670
2012
|
|
1671
2013
|
.btn-warning:hover,
|
1672
2014
|
.btn-warning:focus,
|
1673
2015
|
.btn-warning:active,
|
1674
2016
|
.btn-warning.active {
|
1675
|
-
|
1676
|
-
|
2017
|
+
color: #ffffff;
|
2018
|
+
background-color: #ed9c28;
|
2019
|
+
border-color: #d58512;
|
1677
2020
|
}
|
1678
2021
|
|
1679
2022
|
.btn-warning.disabled,
|
@@ -1692,21 +2035,22 @@ fieldset[disabled] .btn-warning:active,
|
|
1692
2035
|
.btn-warning[disabled].active,
|
1693
2036
|
fieldset[disabled] .btn-warning.active {
|
1694
2037
|
background-color: #f0ad4e;
|
1695
|
-
border-color: #
|
2038
|
+
border-color: #eea236;
|
1696
2039
|
}
|
1697
2040
|
|
1698
2041
|
.btn-danger {
|
1699
2042
|
color: #ffffff;
|
1700
2043
|
background-color: #d9534f;
|
1701
|
-
border-color: #
|
2044
|
+
border-color: #d43f3a;
|
1702
2045
|
}
|
1703
2046
|
|
1704
2047
|
.btn-danger:hover,
|
1705
2048
|
.btn-danger:focus,
|
1706
2049
|
.btn-danger:active,
|
1707
2050
|
.btn-danger.active {
|
1708
|
-
|
1709
|
-
|
2051
|
+
color: #ffffff;
|
2052
|
+
background-color: #d2322d;
|
2053
|
+
border-color: #ac2925;
|
1710
2054
|
}
|
1711
2055
|
|
1712
2056
|
.btn-danger.disabled,
|
@@ -1725,21 +2069,22 @@ fieldset[disabled] .btn-danger:active,
|
|
1725
2069
|
.btn-danger[disabled].active,
|
1726
2070
|
fieldset[disabled] .btn-danger.active {
|
1727
2071
|
background-color: #d9534f;
|
1728
|
-
border-color: #
|
2072
|
+
border-color: #d43f3a;
|
1729
2073
|
}
|
1730
2074
|
|
1731
2075
|
.btn-success {
|
1732
2076
|
color: #ffffff;
|
1733
2077
|
background-color: #5cb85c;
|
1734
|
-
border-color: #
|
2078
|
+
border-color: #4cae4c;
|
1735
2079
|
}
|
1736
2080
|
|
1737
2081
|
.btn-success:hover,
|
1738
2082
|
.btn-success:focus,
|
1739
2083
|
.btn-success:active,
|
1740
2084
|
.btn-success.active {
|
1741
|
-
|
1742
|
-
|
2085
|
+
color: #ffffff;
|
2086
|
+
background-color: #47a447;
|
2087
|
+
border-color: #398439;
|
1743
2088
|
}
|
1744
2089
|
|
1745
2090
|
.btn-success.disabled,
|
@@ -1758,21 +2103,22 @@ fieldset[disabled] .btn-success:active,
|
|
1758
2103
|
.btn-success[disabled].active,
|
1759
2104
|
fieldset[disabled] .btn-success.active {
|
1760
2105
|
background-color: #5cb85c;
|
1761
|
-
border-color: #
|
2106
|
+
border-color: #4cae4c;
|
1762
2107
|
}
|
1763
2108
|
|
1764
2109
|
.btn-info {
|
1765
2110
|
color: #ffffff;
|
1766
2111
|
background-color: #5bc0de;
|
1767
|
-
border-color: #
|
2112
|
+
border-color: #46b8da;
|
1768
2113
|
}
|
1769
2114
|
|
1770
2115
|
.btn-info:hover,
|
1771
2116
|
.btn-info:focus,
|
1772
2117
|
.btn-info:active,
|
1773
2118
|
.btn-info.active {
|
1774
|
-
|
1775
|
-
|
2119
|
+
color: #ffffff;
|
2120
|
+
background-color: #39b3d7;
|
2121
|
+
border-color: #269abc;
|
1776
2122
|
}
|
1777
2123
|
|
1778
2124
|
.btn-info.disabled,
|
@@ -1791,7 +2137,7 @@ fieldset[disabled] .btn-info:active,
|
|
1791
2137
|
.btn-info[disabled].active,
|
1792
2138
|
fieldset[disabled] .btn-info.active {
|
1793
2139
|
background-color: #5bc0de;
|
1794
|
-
border-color: #
|
2140
|
+
border-color: #46b8da;
|
1795
2141
|
}
|
1796
2142
|
|
1797
2143
|
.btn-link {
|
@@ -1828,25 +2174,26 @@ fieldset[disabled] .btn-link {
|
|
1828
2174
|
fieldset[disabled] .btn-link:hover,
|
1829
2175
|
.btn-link[disabled]:focus,
|
1830
2176
|
fieldset[disabled] .btn-link:focus {
|
1831
|
-
color: #
|
2177
|
+
color: #999999;
|
1832
2178
|
text-decoration: none;
|
1833
2179
|
}
|
1834
2180
|
|
1835
|
-
.btn-
|
1836
|
-
padding:
|
2181
|
+
.btn-lg {
|
2182
|
+
padding: 10px 16px;
|
1837
2183
|
font-size: 18px;
|
2184
|
+
line-height: 1.33;
|
1838
2185
|
border-radius: 6px;
|
1839
2186
|
}
|
1840
2187
|
|
1841
|
-
.btn-
|
1842
|
-
.btn-
|
2188
|
+
.btn-sm,
|
2189
|
+
.btn-xs {
|
1843
2190
|
padding: 5px 10px;
|
1844
2191
|
font-size: 12px;
|
1845
2192
|
line-height: 1.5;
|
1846
2193
|
border-radius: 3px;
|
1847
2194
|
}
|
1848
2195
|
|
1849
|
-
.btn-
|
2196
|
+
.btn-xs {
|
1850
2197
|
padding: 3px 5px;
|
1851
2198
|
}
|
1852
2199
|
|
@@ -1894,6 +2241,7 @@ input[type="button"].btn-block {
|
|
1894
2241
|
}
|
1895
2242
|
|
1896
2243
|
.input-group {
|
2244
|
+
position: relative;
|
1897
2245
|
display: table;
|
1898
2246
|
border-collapse: separate;
|
1899
2247
|
}
|
@@ -1909,6 +2257,52 @@ input[type="button"].btn-block {
|
|
1909
2257
|
margin-bottom: 0;
|
1910
2258
|
}
|
1911
2259
|
|
2260
|
+
.input-group-lg > .form-control,
|
2261
|
+
.input-group-lg > .input-group-addon,
|
2262
|
+
.input-group-lg > .input-group-btn > .btn {
|
2263
|
+
height: 45px;
|
2264
|
+
padding: 10px 16px;
|
2265
|
+
font-size: 18px;
|
2266
|
+
line-height: 1.33;
|
2267
|
+
border-radius: 6px;
|
2268
|
+
}
|
2269
|
+
|
2270
|
+
select.input-group-lg > .form-control,
|
2271
|
+
select.input-group-lg > .input-group-addon,
|
2272
|
+
select.input-group-lg > .input-group-btn > .btn {
|
2273
|
+
height: 45px;
|
2274
|
+
line-height: 45px;
|
2275
|
+
}
|
2276
|
+
|
2277
|
+
textarea.input-group-lg > .form-control,
|
2278
|
+
textarea.input-group-lg > .input-group-addon,
|
2279
|
+
textarea.input-group-lg > .input-group-btn > .btn {
|
2280
|
+
height: auto;
|
2281
|
+
}
|
2282
|
+
|
2283
|
+
.input-group-sm > .form-control,
|
2284
|
+
.input-group-sm > .input-group-addon,
|
2285
|
+
.input-group-lg > .input-group-btn > .btn {
|
2286
|
+
height: 30px;
|
2287
|
+
padding: 5px 10px;
|
2288
|
+
font-size: 12px;
|
2289
|
+
line-height: 1.5;
|
2290
|
+
border-radius: 3px;
|
2291
|
+
}
|
2292
|
+
|
2293
|
+
select.input-group-sm > .form-control,
|
2294
|
+
select.input-group-sm > .input-group-addon,
|
2295
|
+
select.input-group-lg > .input-group-btn > .btn {
|
2296
|
+
height: 30px;
|
2297
|
+
line-height: 30px;
|
2298
|
+
}
|
2299
|
+
|
2300
|
+
textarea.input-group-sm > .form-control,
|
2301
|
+
textarea.input-group-sm > .input-group-addon,
|
2302
|
+
textarea.input-group-lg > .input-group-btn > .btn {
|
2303
|
+
height: auto;
|
2304
|
+
}
|
2305
|
+
|
1912
2306
|
.input-group-addon,
|
1913
2307
|
.input-group-btn,
|
1914
2308
|
.input-group .form-control {
|
@@ -1929,27 +2323,24 @@ input[type="button"].btn-block {
|
|
1929
2323
|
}
|
1930
2324
|
|
1931
2325
|
.input-group-addon {
|
1932
|
-
padding:
|
2326
|
+
padding: 6px 12px;
|
1933
2327
|
font-size: 14px;
|
1934
2328
|
font-weight: normal;
|
1935
|
-
line-height: 1
|
2329
|
+
line-height: 1;
|
1936
2330
|
text-align: center;
|
1937
2331
|
background-color: #eeeeee;
|
1938
2332
|
border: 1px solid #cccccc;
|
1939
2333
|
border-radius: 4px;
|
1940
|
-
-webkit-box-sizing: border-box;
|
1941
|
-
-moz-box-sizing: border-box;
|
1942
|
-
box-sizing: border-box;
|
1943
2334
|
}
|
1944
2335
|
|
1945
|
-
.input-group-addon.input-
|
2336
|
+
.input-group-addon.input-sm {
|
1946
2337
|
padding: 5px 10px;
|
1947
2338
|
font-size: 12px;
|
1948
2339
|
border-radius: 3px;
|
1949
2340
|
}
|
1950
2341
|
|
1951
|
-
.input-group-addon.input-
|
1952
|
-
padding:
|
2342
|
+
.input-group-addon.input-lg {
|
2343
|
+
padding: 10px 16px;
|
1953
2344
|
font-size: 18px;
|
1954
2345
|
border-radius: 6px;
|
1955
2346
|
}
|
@@ -2003,60 +2394,6 @@ input[type="button"].btn-block {
|
|
2003
2394
|
z-index: 2;
|
2004
2395
|
}
|
2005
2396
|
|
2006
|
-
.form-inline .form-control,
|
2007
|
-
.form-inline .radio,
|
2008
|
-
.form-inline .checkbox {
|
2009
|
-
display: inline-block;
|
2010
|
-
}
|
2011
|
-
|
2012
|
-
.form-inline .radio,
|
2013
|
-
.form-inline .checkbox {
|
2014
|
-
margin-top: 0;
|
2015
|
-
margin-bottom: 0;
|
2016
|
-
}
|
2017
|
-
|
2018
|
-
.form-horizontal .control-label {
|
2019
|
-
padding-top: 9px;
|
2020
|
-
}
|
2021
|
-
|
2022
|
-
.form-horizontal .form-group:before,
|
2023
|
-
.form-horizontal .form-group:after {
|
2024
|
-
display: table;
|
2025
|
-
content: " ";
|
2026
|
-
}
|
2027
|
-
|
2028
|
-
.form-horizontal .form-group:after {
|
2029
|
-
clear: both;
|
2030
|
-
}
|
2031
|
-
|
2032
|
-
.form-horizontal .form-group:before,
|
2033
|
-
.form-horizontal .form-group:after {
|
2034
|
-
display: table;
|
2035
|
-
content: " ";
|
2036
|
-
}
|
2037
|
-
|
2038
|
-
.form-horizontal .form-group:after {
|
2039
|
-
clear: both;
|
2040
|
-
}
|
2041
|
-
|
2042
|
-
@media (min-width: 768px) {
|
2043
|
-
.form-horizontal .form-group {
|
2044
|
-
margin-right: -15px;
|
2045
|
-
margin-left: -15px;
|
2046
|
-
}
|
2047
|
-
}
|
2048
|
-
|
2049
|
-
.form-horizontal .form-group .row {
|
2050
|
-
margin-right: -15px;
|
2051
|
-
margin-left: -15px;
|
2052
|
-
}
|
2053
|
-
|
2054
|
-
@media (min-width: 768px) {
|
2055
|
-
.form-horizontal .control-label {
|
2056
|
-
text-align: right;
|
2057
|
-
}
|
2058
|
-
}
|
2059
|
-
|
2060
2397
|
.caret {
|
2061
2398
|
display: inline-block;
|
2062
2399
|
width: 0;
|
@@ -2069,6 +2406,14 @@ input[type="button"].btn-block {
|
|
2069
2406
|
content: "";
|
2070
2407
|
}
|
2071
2408
|
|
2409
|
+
.dropdown {
|
2410
|
+
position: relative;
|
2411
|
+
}
|
2412
|
+
|
2413
|
+
.dropdown-toggle:focus {
|
2414
|
+
outline: 0;
|
2415
|
+
}
|
2416
|
+
|
2072
2417
|
.dropdown-menu {
|
2073
2418
|
position: absolute;
|
2074
2419
|
top: 100%;
|
@@ -2079,6 +2424,7 @@ input[type="button"].btn-block {
|
|
2079
2424
|
min-width: 160px;
|
2080
2425
|
padding: 5px 0;
|
2081
2426
|
margin: 2px 0 0;
|
2427
|
+
font-size: 14px;
|
2082
2428
|
list-style: none;
|
2083
2429
|
background-color: #ffffff;
|
2084
2430
|
border: 1px solid #cccccc;
|
@@ -2206,7 +2552,7 @@ input[type="button"].btn-block {
|
|
2206
2552
|
.list-group-item {
|
2207
2553
|
position: relative;
|
2208
2554
|
display: block;
|
2209
|
-
padding: 10px
|
2555
|
+
padding: 10px 15px;
|
2210
2556
|
margin-bottom: -1px;
|
2211
2557
|
background-color: #ffffff;
|
2212
2558
|
border: 1px solid #dddddd;
|
@@ -2225,50 +2571,58 @@ input[type="button"].btn-block {
|
|
2225
2571
|
|
2226
2572
|
.list-group-item > .badge {
|
2227
2573
|
float: right;
|
2228
|
-
margin-right: -15px;
|
2229
2574
|
}
|
2230
2575
|
|
2231
|
-
.list-group-item
|
2232
|
-
margin-
|
2233
|
-
margin-bottom: 5px;
|
2576
|
+
.list-group-item > .badge + .badge {
|
2577
|
+
margin-right: 5px;
|
2234
2578
|
}
|
2235
2579
|
|
2236
|
-
.list-group-item
|
2237
|
-
|
2238
|
-
line-height: 1.3;
|
2580
|
+
a.list-group-item {
|
2581
|
+
color: #555555;
|
2239
2582
|
}
|
2240
2583
|
|
2241
2584
|
a.list-group-item .list-group-item-heading {
|
2242
2585
|
color: #333333;
|
2243
2586
|
}
|
2244
2587
|
|
2245
|
-
a.list-group-item .list-group-item-text {
|
2246
|
-
color: #555555;
|
2247
|
-
}
|
2248
|
-
|
2249
2588
|
a.list-group-item:hover,
|
2250
2589
|
a.list-group-item:focus {
|
2251
2590
|
text-decoration: none;
|
2252
2591
|
background-color: #f5f5f5;
|
2253
2592
|
}
|
2254
2593
|
|
2255
|
-
|
2594
|
+
.list-group-item.active,
|
2595
|
+
.list-group-item.active:hover,
|
2596
|
+
.list-group-item.active:focus {
|
2256
2597
|
z-index: 2;
|
2257
2598
|
color: #ffffff;
|
2258
2599
|
background-color: #428bca;
|
2259
2600
|
border-color: #428bca;
|
2260
2601
|
}
|
2261
2602
|
|
2262
|
-
|
2603
|
+
.list-group-item.active .list-group-item-heading,
|
2604
|
+
.list-group-item.active:hover .list-group-item-heading,
|
2605
|
+
.list-group-item.active:focus .list-group-item-heading {
|
2263
2606
|
color: inherit;
|
2264
2607
|
}
|
2265
2608
|
|
2266
|
-
|
2609
|
+
.list-group-item.active .list-group-item-text,
|
2610
|
+
.list-group-item.active:hover .list-group-item-text,
|
2611
|
+
.list-group-item.active:focus .list-group-item-text {
|
2267
2612
|
color: #e1edf7;
|
2268
2613
|
}
|
2269
2614
|
|
2615
|
+
.list-group-item-heading {
|
2616
|
+
margin-top: 0;
|
2617
|
+
margin-bottom: 5px;
|
2618
|
+
}
|
2619
|
+
|
2620
|
+
.list-group-item-text {
|
2621
|
+
margin-bottom: 0;
|
2622
|
+
line-height: 1.3;
|
2623
|
+
}
|
2624
|
+
|
2270
2625
|
.panel {
|
2271
|
-
padding: 15px;
|
2272
2626
|
margin-bottom: 20px;
|
2273
2627
|
background-color: #ffffff;
|
2274
2628
|
border: 1px solid #dddddd;
|
@@ -2277,9 +2631,33 @@ a.list-group-item.active .list-group-item-text {
|
|
2277
2631
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
2278
2632
|
}
|
2279
2633
|
|
2634
|
+
.panel-body {
|
2635
|
+
padding: 15px;
|
2636
|
+
}
|
2637
|
+
|
2638
|
+
.panel .list-group {
|
2639
|
+
margin-bottom: 0;
|
2640
|
+
}
|
2641
|
+
|
2642
|
+
.panel .list-group .list-group-item {
|
2643
|
+
border-width: 1px 0;
|
2644
|
+
}
|
2645
|
+
|
2646
|
+
.panel .list-group .list-group-item:first-child {
|
2647
|
+
border-top-right-radius: 0;
|
2648
|
+
border-top-left-radius: 0;
|
2649
|
+
}
|
2650
|
+
|
2651
|
+
.panel .list-group .list-group-item:last-child {
|
2652
|
+
border-bottom: 0;
|
2653
|
+
}
|
2654
|
+
|
2655
|
+
.panel-heading + .list-group .list-group-item:first-child {
|
2656
|
+
border-top-width: 0;
|
2657
|
+
}
|
2658
|
+
|
2280
2659
|
.panel-heading {
|
2281
2660
|
padding: 10px 15px;
|
2282
|
-
margin: -15px -15px 15px;
|
2283
2661
|
background-color: #f5f5f5;
|
2284
2662
|
border-bottom: 1px solid #dddddd;
|
2285
2663
|
border-top-right-radius: 3px;
|
@@ -2290,18 +2668,46 @@ a.list-group-item.active .list-group-item-text {
|
|
2290
2668
|
margin-top: 0;
|
2291
2669
|
margin-bottom: 0;
|
2292
2670
|
font-size: 17.5px;
|
2293
|
-
|
2671
|
+
}
|
2672
|
+
|
2673
|
+
.panel-title > a {
|
2674
|
+
color: inherit;
|
2294
2675
|
}
|
2295
2676
|
|
2296
2677
|
.panel-footer {
|
2297
2678
|
padding: 10px 15px;
|
2298
|
-
margin: 15px -15px -15px;
|
2299
2679
|
background-color: #f5f5f5;
|
2300
2680
|
border-top: 1px solid #dddddd;
|
2301
2681
|
border-bottom-right-radius: 3px;
|
2302
2682
|
border-bottom-left-radius: 3px;
|
2303
2683
|
}
|
2304
2684
|
|
2685
|
+
.panel-group .panel {
|
2686
|
+
margin-bottom: 0;
|
2687
|
+
overflow: hidden;
|
2688
|
+
border-radius: 4px;
|
2689
|
+
}
|
2690
|
+
|
2691
|
+
.panel-group .panel + .panel {
|
2692
|
+
margin-top: 5px;
|
2693
|
+
}
|
2694
|
+
|
2695
|
+
.panel-group .panel-heading {
|
2696
|
+
border-bottom: 0;
|
2697
|
+
}
|
2698
|
+
|
2699
|
+
.panel-group .panel-heading + .panel-collapse .panel-body {
|
2700
|
+
border-top: 1px solid #dddddd;
|
2701
|
+
}
|
2702
|
+
|
2703
|
+
.panel-group .panel-footer {
|
2704
|
+
border-top: 0;
|
2705
|
+
}
|
2706
|
+
|
2707
|
+
.panel-group .panel-footer + .panel-collapse .panel-body {
|
2708
|
+
border-bottom: 1px solid #dddddd;
|
2709
|
+
}
|
2710
|
+
|
2305
2711
|
.panel-primary {
|
2306
2712
|
border-color: #428bca;
|
2307
2713
|
}
|
@@ -2312,6 +2718,14 @@ a.list-group-item.active .list-group-item-text {
|
|
2312
2718
|
border-color: #428bca;
|
2313
2719
|
}
|
2314
2720
|
|
2721
|
+
.panel-primary .panel-heading + .panel-collapse .panel-body {
|
2722
|
+
border-top-color: #428bca;
|
2723
|
+
}
|
2724
|
+
|
2725
|
+
.panel-primary .panel-footer + .panel-collapse .panel-body {
|
2726
|
+
border-bottom-color: #428bca;
|
2727
|
+
}
|
2728
|
+
|
2315
2729
|
.panel-success {
|
2316
2730
|
border-color: #d6e9c6;
|
2317
2731
|
}
|
@@ -2322,6 +2736,14 @@ a.list-group-item.active .list-group-item-text {
|
|
2322
2736
|
border-color: #d6e9c6;
|
2323
2737
|
}
|
2324
2738
|
|
2739
|
+
.panel-success .panel-heading + .panel-collapse .panel-body {
|
2740
|
+
border-top-color: #d6e9c6;
|
2741
|
+
}
|
2742
|
+
|
2743
|
+
.panel-success .panel-footer + .panel-collapse .panel-body {
|
2744
|
+
border-bottom-color: #d6e9c6;
|
2745
|
+
}
|
2746
|
+
|
2325
2747
|
.panel-warning {
|
2326
2748
|
border-color: #fbeed5;
|
2327
2749
|
}
|
@@ -2332,6 +2754,14 @@ a.list-group-item.active .list-group-item-text {
|
|
2332
2754
|
border-color: #fbeed5;
|
2333
2755
|
}
|
2334
2756
|
|
2757
|
+
.panel-warning .panel-heading + .panel-collapse .panel-body {
|
2758
|
+
border-top-color: #fbeed5;
|
2759
|
+
}
|
2760
|
+
|
2761
|
+
.panel-warning .panel-footer + .panel-collapse .panel-body {
|
2762
|
+
border-bottom-color: #fbeed5;
|
2763
|
+
}
|
2764
|
+
|
2335
2765
|
.panel-danger {
|
2336
2766
|
border-color: #eed3d7;
|
2337
2767
|
}
|
@@ -2342,6 +2772,14 @@ a.list-group-item.active .list-group-item-text {
|
|
2342
2772
|
border-color: #eed3d7;
|
2343
2773
|
}
|
2344
2774
|
|
2775
|
+
.panel-danger .panel-heading + .panel-collapse .panel-body {
|
2776
|
+
border-top-color: #eed3d7;
|
2777
|
+
}
|
2778
|
+
|
2779
|
+
.panel-danger .panel-footer + .panel-collapse .panel-body {
|
2780
|
+
border-bottom-color: #eed3d7;
|
2781
|
+
}
|
2782
|
+
|
2345
2783
|
.panel-info {
|
2346
2784
|
border-color: #bce8f1;
|
2347
2785
|
}
|
@@ -2352,21 +2790,12 @@ a.list-group-item.active .list-group-item-text {
|
|
2352
2790
|
border-color: #bce8f1;
|
2353
2791
|
}
|
2354
2792
|
|
2355
|
-
.
|
2356
|
-
|
2357
|
-
}
|
2358
|
-
|
2359
|
-
.list-group-flush .list-group-item {
|
2360
|
-
border-width: 1px 0;
|
2361
|
-
}
|
2362
|
-
|
2363
|
-
.list-group-flush .list-group-item:first-child {
|
2364
|
-
border-top-right-radius: 0;
|
2365
|
-
border-top-left-radius: 0;
|
2793
|
+
.panel-info .panel-heading + .panel-collapse .panel-body {
|
2794
|
+
border-top-color: #bce8f1;
|
2366
2795
|
}
|
2367
2796
|
|
2368
|
-
.
|
2369
|
-
border-bottom:
|
2797
|
+
.panel-info .panel-footer + .panel-collapse .panel-body {
|
2798
|
+
border-bottom-color: #bce8f1;
|
2370
2799
|
}
|
2371
2800
|
|
2372
2801
|
.well {
|
@@ -2385,12 +2814,12 @@ a.list-group-item.active .list-group-item-text {
|
|
2385
2814
|
border-color: rgba(0, 0, 0, 0.15);
|
2386
2815
|
}
|
2387
2816
|
|
2388
|
-
.well-
|
2817
|
+
.well-lg {
|
2389
2818
|
padding: 24px;
|
2390
2819
|
border-radius: 6px;
|
2391
2820
|
}
|
2392
2821
|
|
2393
|
-
.well-
|
2822
|
+
.well-sm {
|
2394
2823
|
padding: 9px;
|
2395
2824
|
border-radius: 3px;
|
2396
2825
|
}
|
@@ -2493,10 +2922,6 @@ button.close {
|
|
2493
2922
|
border-bottom-color: #ffffff;
|
2494
2923
|
}
|
2495
2924
|
|
2496
|
-
.nav > .pull-right {
|
2497
|
-
float: right;
|
2498
|
-
}
|
2499
|
-
|
2500
2925
|
.nav .nav-divider {
|
2501
2926
|
height: 1px;
|
2502
2927
|
margin: 9px 0;
|
@@ -2504,6 +2929,10 @@ button.close {
|
|
2504
2929
|
background-color: #e5e5e5;
|
2505
2930
|
}
|
2506
2931
|
|
2932
|
+
.nav > li > a > img {
|
2933
|
+
max-width: none;
|
2934
|
+
}
|
2935
|
+
|
2507
2936
|
.nav-tabs {
|
2508
2937
|
border-bottom: 1px solid #dddddd;
|
2509
2938
|
}
|
@@ -2662,11 +3091,9 @@ button.close {
|
|
2662
3091
|
.navbar {
|
2663
3092
|
position: relative;
|
2664
3093
|
min-height: 50px;
|
2665
|
-
padding-right: 15px;
|
2666
|
-
padding-left: 15px;
|
2667
3094
|
margin-bottom: 20px;
|
2668
|
-
background-color: #
|
2669
|
-
border
|
3095
|
+
background-color: #f8f8f8;
|
3096
|
+
border: 1px solid #e7e7e7;
|
2670
3097
|
}
|
2671
3098
|
|
2672
3099
|
.navbar:before,
|
@@ -2689,45 +3116,87 @@ button.close {
|
|
2689
3116
|
clear: both;
|
2690
3117
|
}
|
2691
3118
|
|
2692
|
-
|
2693
|
-
|
2694
|
-
|
3119
|
+
@media (min-width: 768px) {
|
3120
|
+
.navbar {
|
3121
|
+
border-radius: 4px;
|
3122
|
+
}
|
2695
3123
|
}
|
2696
3124
|
|
2697
|
-
.navbar-
|
2698
|
-
padding-
|
2699
|
-
padding-
|
2700
|
-
line-height: 20px;
|
2701
|
-
color: #777777;
|
2702
|
-
border-radius: 4px;
|
3125
|
+
.navbar-header {
|
3126
|
+
padding-right: 15px;
|
3127
|
+
padding-left: 15px;
|
2703
3128
|
}
|
2704
3129
|
|
2705
|
-
.navbar-
|
2706
|
-
.navbar-
|
2707
|
-
|
2708
|
-
|
3130
|
+
.navbar-header:before,
|
3131
|
+
.navbar-header:after {
|
3132
|
+
display: table;
|
3133
|
+
content: " ";
|
2709
3134
|
}
|
2710
3135
|
|
2711
|
-
.navbar-
|
2712
|
-
|
2713
|
-
.navbar-nav > .active > a:focus {
|
2714
|
-
color: #555555;
|
2715
|
-
background-color: #d5d5d5;
|
3136
|
+
.navbar-header:after {
|
3137
|
+
clear: both;
|
2716
3138
|
}
|
2717
3139
|
|
2718
|
-
.navbar-
|
2719
|
-
.navbar-
|
2720
|
-
|
2721
|
-
|
2722
|
-
background-color: transparent;
|
3140
|
+
.navbar-header:before,
|
3141
|
+
.navbar-header:after {
|
3142
|
+
display: table;
|
3143
|
+
content: " ";
|
2723
3144
|
}
|
2724
3145
|
|
2725
|
-
.navbar-
|
2726
|
-
|
3146
|
+
.navbar-header:after {
|
3147
|
+
clear: both;
|
2727
3148
|
}
|
2728
3149
|
|
2729
|
-
|
2730
|
-
|
3150
|
+
@media (min-width: 768px) {
|
3151
|
+
.navbar-header {
|
3152
|
+
float: left;
|
3153
|
+
}
|
3154
|
+
}
|
3155
|
+
|
3156
|
+
.navbar-collapse {
|
3157
|
+
max-height: 340px;
|
3158
|
+
padding: 5px 15px;
|
3159
|
+
overflow-x: visible;
|
3160
|
+
overflow-y: auto;
|
3161
|
+
border-top: 1px solid #e6e6e6;
|
3162
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3163
|
+
-webkit-overflow-scrolling: touch;
|
3164
|
+
}
|
3165
|
+
|
3166
|
+
.navbar-collapse:before,
|
3167
|
+
.navbar-collapse:after {
|
3168
|
+
display: table;
|
3169
|
+
content: " ";
|
3170
|
+
}
|
3171
|
+
|
3172
|
+
.navbar-collapse:after {
|
3173
|
+
clear: both;
|
3174
|
+
}
|
3175
|
+
|
3176
|
+
.navbar-collapse:before,
|
3177
|
+
.navbar-collapse:after {
|
3178
|
+
display: table;
|
3179
|
+
content: " ";
|
3180
|
+
}
|
3181
|
+
|
3182
|
+
.navbar-collapse:after {
|
3183
|
+
clear: both;
|
3184
|
+
}
|
3185
|
+
|
3186
|
+
@media (min-width: 768px) {
|
3187
|
+
.navbar-collapse {
|
3188
|
+
width: auto;
|
3189
|
+
padding: 0;
|
3190
|
+
border-top: 0;
|
3191
|
+
box-shadow: none;
|
3192
|
+
}
|
3193
|
+
}
|
3194
|
+
|
3195
|
+
@media (min-width: 768px) {
|
3196
|
+
.navbar-static-top {
|
3197
|
+
border-width: 0 0 1px;
|
3198
|
+
border-radius: 0;
|
3199
|
+
}
|
2731
3200
|
}
|
2732
3201
|
|
2733
3202
|
.navbar-fixed-top,
|
@@ -2736,7 +3205,14 @@ button.close {
|
|
2736
3205
|
right: 0;
|
2737
3206
|
left: 0;
|
2738
3207
|
z-index: 1030;
|
2739
|
-
border-
|
3208
|
+
border-width: 0 0 1px;
|
3209
|
+
}
|
3210
|
+
|
3211
|
+
@media (min-width: 768px) {
|
3212
|
+
.navbar-fixed-top,
|
3213
|
+
.navbar-fixed-bottom {
|
3214
|
+
border-radius: 0;
|
3215
|
+
}
|
2740
3216
|
}
|
2741
3217
|
|
2742
3218
|
.navbar-fixed-top {
|
@@ -2749,16 +3225,13 @@ button.close {
|
|
2749
3225
|
}
|
2750
3226
|
|
2751
3227
|
.navbar-brand {
|
2752
|
-
|
2753
|
-
|
2754
|
-
padding: 15px
|
2755
|
-
margin-right:
|
2756
|
-
margin-left: auto;
|
3228
|
+
float: left;
|
3229
|
+
padding-top: 15px;
|
3230
|
+
padding-bottom: 15px;
|
3231
|
+
margin-right: 7.5px;
|
2757
3232
|
font-size: 18px;
|
2758
|
-
font-weight: 500;
|
2759
3233
|
line-height: 20px;
|
2760
3234
|
color: #777777;
|
2761
|
-
text-align: center;
|
2762
3235
|
}
|
2763
3236
|
|
2764
3237
|
.navbar-brand:hover,
|
@@ -2769,12 +3242,11 @@ button.close {
|
|
2769
3242
|
}
|
2770
3243
|
|
2771
3244
|
.navbar-toggle {
|
2772
|
-
position:
|
2773
|
-
|
2774
|
-
|
2775
|
-
|
2776
|
-
|
2777
|
-
padding: 8px 12px;
|
3245
|
+
position: relative;
|
3246
|
+
float: right;
|
3247
|
+
padding: 9px 10px;
|
3248
|
+
margin-top: 8px;
|
3249
|
+
margin-bottom: 8px;
|
2778
3250
|
background-color: transparent;
|
2779
3251
|
border: 1px solid #dddddd;
|
2780
3252
|
border-radius: 4px;
|
@@ -2797,21 +3269,144 @@ button.close {
|
|
2797
3269
|
margin-top: 4px;
|
2798
3270
|
}
|
2799
3271
|
|
3272
|
+
.navbar-nav {
|
3273
|
+
margin-right: -15px;
|
3274
|
+
margin-left: -15px;
|
3275
|
+
}
|
3276
|
+
|
3277
|
+
@media (min-width: 768px) {
|
3278
|
+
.navbar-nav {
|
3279
|
+
margin-right: 0;
|
3280
|
+
margin-left: 0;
|
3281
|
+
}
|
3282
|
+
}
|
3283
|
+
|
3284
|
+
.navbar-nav > li > a {
|
3285
|
+
padding-top: 10px;
|
3286
|
+
padding-bottom: 10px;
|
3287
|
+
line-height: 20px;
|
3288
|
+
color: #777777;
|
3289
|
+
}
|
3290
|
+
|
3291
|
+
.navbar-nav > li > a:hover,
|
3292
|
+
.navbar-nav > li > a:focus {
|
3293
|
+
color: #333333;
|
3294
|
+
background-color: transparent;
|
3295
|
+
}
|
3296
|
+
|
3297
|
+
.navbar-nav > .active > a,
|
3298
|
+
.navbar-nav > .active > a:hover,
|
3299
|
+
.navbar-nav > .active > a:focus {
|
3300
|
+
color: #555555;
|
3301
|
+
background-color: #e7e7e7;
|
3302
|
+
}
|
3303
|
+
|
3304
|
+
.navbar-nav > .disabled > a,
|
3305
|
+
.navbar-nav > .disabled > a:hover,
|
3306
|
+
.navbar-nav > .disabled > a:focus {
|
3307
|
+
color: #cccccc;
|
3308
|
+
background-color: transparent;
|
3309
|
+
}
|
3310
|
+
|
3311
|
+
@media (max-width: 767px) {
|
3312
|
+
.navbar-nav .open .dropdown-menu {
|
3313
|
+
position: static;
|
3314
|
+
float: none;
|
3315
|
+
width: auto;
|
3316
|
+
margin-top: 0;
|
3317
|
+
background-color: transparent;
|
3318
|
+
border: 0;
|
3319
|
+
box-shadow: none;
|
3320
|
+
}
|
3321
|
+
.navbar-nav .open .dropdown-menu > li > a,
|
3322
|
+
.navbar-nav .open .dropdown-menu .dropdown-header {
|
3323
|
+
padding: 5px 15px 5px 25px;
|
3324
|
+
}
|
3325
|
+
.navbar-nav .open .dropdown-menu > li > a {
|
3326
|
+
line-height: 20px;
|
3327
|
+
color: #777777;
|
3328
|
+
}
|
3329
|
+
.navbar-nav .open .dropdown-menu > li > a:hover,
|
3330
|
+
.navbar-nav .open .dropdown-menu > li > a:focus {
|
3331
|
+
color: #333333;
|
3332
|
+
background-color: transparent;
|
3333
|
+
background-image: none;
|
3334
|
+
}
|
3335
|
+
.navbar-nav .open .dropdown-menu > .active > a,
|
3336
|
+
.navbar-nav .open .dropdown-menu > .active > a:hover,
|
3337
|
+
.navbar-nav .open .dropdown-menu > .active > a:focus {
|
3338
|
+
color: #555555;
|
3339
|
+
background-color: #e7e7e7;
|
3340
|
+
}
|
3341
|
+
.navbar-nav .open .dropdown-menu > .disabled > a,
|
3342
|
+
.navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
3343
|
+
.navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
3344
|
+
color: #cccccc;
|
3345
|
+
background-color: transparent;
|
3346
|
+
}
|
3347
|
+
}
|
3348
|
+
|
3349
|
+
@media (min-width: 768px) {
|
3350
|
+
.navbar-left {
|
3351
|
+
float: left !important;
|
3352
|
+
}
|
3353
|
+
.navbar-right {
|
3354
|
+
float: right !important;
|
3355
|
+
}
|
3356
|
+
.navbar-right .dropdown-menu {
|
3357
|
+
right: 0;
|
3358
|
+
left: auto;
|
3359
|
+
}
|
3360
|
+
}
|
3361
|
+
|
2800
3362
|
.navbar-form {
|
2801
|
-
|
2802
|
-
margin-
|
3363
|
+
padding: 10px 15px;
|
3364
|
+
margin-top: 8px;
|
3365
|
+
margin-right: -15px;
|
3366
|
+
margin-bottom: 8px;
|
3367
|
+
margin-left: -15px;
|
3368
|
+
border-top: 1px solid #e6e6e6;
|
3369
|
+
border-bottom: 1px solid #e6e6e6;
|
2803
3370
|
}
|
2804
3371
|
|
2805
|
-
|
2806
|
-
.navbar-form .
|
2807
|
-
|
2808
|
-
|
3372
|
+
@media (min-width: 768px) {
|
3373
|
+
.navbar-form .form-group {
|
3374
|
+
display: inline-block;
|
3375
|
+
margin-bottom: 0;
|
3376
|
+
vertical-align: middle;
|
3377
|
+
}
|
3378
|
+
.navbar-form .form-control {
|
3379
|
+
display: inline-block;
|
3380
|
+
}
|
3381
|
+
.navbar-form .radio,
|
3382
|
+
.navbar-form .checkbox {
|
3383
|
+
display: inline-block;
|
3384
|
+
padding-left: 0;
|
3385
|
+
margin-top: 0;
|
3386
|
+
margin-bottom: 0;
|
3387
|
+
}
|
3388
|
+
.navbar-form .radio input[type="radio"],
|
3389
|
+
.navbar-form .checkbox input[type="checkbox"] {
|
3390
|
+
float: none;
|
3391
|
+
margin-left: 0;
|
3392
|
+
}
|
2809
3393
|
}
|
2810
3394
|
|
2811
|
-
|
2812
|
-
.navbar-form .
|
2813
|
-
|
2814
|
-
|
3395
|
+
@media (max-width: 767px) {
|
3396
|
+
.navbar-form .form-group {
|
3397
|
+
margin-bottom: 5px;
|
3398
|
+
}
|
3399
|
+
}
|
3400
|
+
|
3401
|
+
@media (min-width: 768px) {
|
3402
|
+
.navbar-form {
|
3403
|
+
width: auto;
|
3404
|
+
padding-top: 0;
|
3405
|
+
padding-bottom: 0;
|
3406
|
+
margin-right: 0;
|
3407
|
+
margin-left: 0;
|
3408
|
+
border: 0;
|
3409
|
+
}
|
2815
3410
|
}
|
2816
3411
|
|
2817
3412
|
.navbar-nav > li > .dropdown-menu {
|
@@ -2835,7 +3430,7 @@ button.close {
|
|
2835
3430
|
.navbar-nav > .open > a:hover,
|
2836
3431
|
.navbar-nav > .open > a:focus {
|
2837
3432
|
color: #555555;
|
2838
|
-
background-color: #
|
3433
|
+
background-color: #e7e7e7;
|
2839
3434
|
}
|
2840
3435
|
|
2841
3436
|
.navbar-nav > .open > a .caret,
|
@@ -2858,6 +3453,7 @@ button.close {
|
|
2858
3453
|
|
2859
3454
|
.navbar-inverse {
|
2860
3455
|
background-color: #222222;
|
3456
|
+
border-color: #080808;
|
2861
3457
|
}
|
2862
3458
|
|
2863
3459
|
.navbar-inverse .navbar-brand {
|
@@ -2911,6 +3507,10 @@ button.close {
|
|
2911
3507
|
background-color: #ffffff;
|
2912
3508
|
}
|
2913
3509
|
|
3510
|
+
.navbar-inverse .navbar-collapse {
|
3511
|
+
border-top-color: #101010;
|
3512
|
+
}
|
3513
|
+
|
2914
3514
|
.navbar-inverse .navbar-nav > .open > a,
|
2915
3515
|
.navbar-inverse .navbar-nav > .open > a:hover,
|
2916
3516
|
.navbar-inverse .navbar-nav > .open > a:focus {
|
@@ -2935,12 +3535,33 @@ button.close {
|
|
2935
3535
|
border-bottom-color: #ffffff;
|
2936
3536
|
}
|
2937
3537
|
|
2938
|
-
@media
|
2939
|
-
.navbar-
|
2940
|
-
|
2941
|
-
|
2942
|
-
|
3538
|
+
@media (max-width: 767px) {
|
3539
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
|
3540
|
+
border-color: #080808;
|
3541
|
+
}
|
3542
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
|
3543
|
+
color: #999999;
|
2943
3544
|
}
|
3545
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
|
3546
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
|
3547
|
+
color: #ffffff;
|
3548
|
+
background-color: transparent;
|
3549
|
+
}
|
3550
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
|
3551
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
|
3552
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
|
3553
|
+
color: #ffffff;
|
3554
|
+
background-color: #080808;
|
3555
|
+
}
|
3556
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
|
3557
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
3558
|
+
.navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
3559
|
+
color: #444444;
|
3560
|
+
background-color: transparent;
|
3561
|
+
}
|
3562
|
+
}
|
3563
|
+
|
3564
|
+
@media screen and (min-width: 768px) {
|
2944
3565
|
.navbar-nav {
|
2945
3566
|
float: left;
|
2946
3567
|
margin-top: 0;
|
@@ -2950,11 +3571,8 @@ button.close {
|
|
2950
3571
|
float: left;
|
2951
3572
|
}
|
2952
3573
|
.navbar-nav > li > a {
|
2953
|
-
|
2954
|
-
|
2955
|
-
.navbar-nav.pull-right {
|
2956
|
-
float: right;
|
2957
|
-
width: auto;
|
3574
|
+
padding-top: 15px;
|
3575
|
+
padding-bottom: 15px;
|
2958
3576
|
}
|
2959
3577
|
.navbar-toggle {
|
2960
3578
|
position: relative;
|
@@ -2962,18 +3580,20 @@ button.close {
|
|
2962
3580
|
left: auto;
|
2963
3581
|
display: none;
|
2964
3582
|
}
|
2965
|
-
.
|
3583
|
+
.navbar-collapse.collapse {
|
2966
3584
|
display: block !important;
|
2967
3585
|
height: auto !important;
|
3586
|
+
padding-bottom: 0;
|
2968
3587
|
overflow: visible !important;
|
2969
3588
|
}
|
2970
3589
|
}
|
2971
3590
|
|
2972
3591
|
.navbar-btn {
|
2973
|
-
margin-top:
|
3592
|
+
margin-top: 8px;
|
2974
3593
|
}
|
2975
3594
|
|
2976
3595
|
.navbar-text {
|
3596
|
+
float: left;
|
2977
3597
|
margin-top: 15px;
|
2978
3598
|
margin-bottom: 15px;
|
2979
3599
|
}
|
@@ -2994,12 +3614,28 @@ button.close {
|
|
2994
3614
|
color: #ffffff;
|
2995
3615
|
}
|
2996
3616
|
|
2997
|
-
.btn .caret {
|
2998
|
-
border-top-color: #
|
3617
|
+
.btn-default .caret {
|
3618
|
+
border-top-color: #333333;
|
2999
3619
|
}
|
3000
3620
|
|
3001
|
-
.
|
3002
|
-
|
3621
|
+
.btn-primary .caret,
|
3622
|
+
.btn-success .caret,
|
3623
|
+
.btn-warning .caret,
|
3624
|
+
.btn-danger .caret,
|
3625
|
+
.btn-info .caret {
|
3626
|
+
border-top-color: #fff;
|
3627
|
+
}
|
3628
|
+
|
3629
|
+
.btn-default .dropup .caret {
|
3630
|
+
border-bottom-color: #333333;
|
3631
|
+
}
|
3632
|
+
|
3633
|
+
.btn-primary .dropup .caret,
|
3634
|
+
.btn-success .dropup .caret,
|
3635
|
+
.btn-warning .dropup .caret,
|
3636
|
+
.btn-danger .dropup .caret,
|
3637
|
+
.btn-info .dropup .caret {
|
3638
|
+
border-bottom-color: #fff;
|
3003
3639
|
}
|
3004
3640
|
|
3005
3641
|
.btn-group,
|
@@ -3020,11 +3656,21 @@ button.close {
|
|
3020
3656
|
.btn-group > .btn:focus,
|
3021
3657
|
.btn-group-vertical > .btn:focus,
|
3022
3658
|
.btn-group > .btn:active,
|
3023
|
-
.btn-group-vertical > .btn:active
|
3659
|
+
.btn-group-vertical > .btn:active,
|
3660
|
+
.btn-group > .btn.active,
|
3661
|
+
.btn-group-vertical > .btn.active {
|
3024
3662
|
z-index: 2;
|
3025
3663
|
}
|
3026
3664
|
|
3027
|
-
.btn-group
|
3665
|
+
.btn-group > .btn:focus,
|
3666
|
+
.btn-group-vertical > .btn:focus {
|
3667
|
+
outline: none;
|
3668
|
+
}
|
3669
|
+
|
3670
|
+
.btn-group .btn + .btn,
|
3671
|
+
.btn-group .btn + .btn-group,
|
3672
|
+
.btn-group .btn-group + .btn,
|
3673
|
+
.btn-group .btn-group + .btn-group {
|
3028
3674
|
margin-left: -1px;
|
3029
3675
|
}
|
3030
3676
|
|
@@ -3102,12 +3748,34 @@ button.close {
|
|
3102
3748
|
outline: 0;
|
3103
3749
|
}
|
3104
3750
|
|
3751
|
+
.btn-group-xs > .btn {
|
3752
|
+
padding: 5px 10px;
|
3753
|
+
padding: 3px 5px;
|
3754
|
+
font-size: 12px;
|
3755
|
+
line-height: 1.5;
|
3756
|
+
border-radius: 3px;
|
3757
|
+
}
|
3758
|
+
|
3759
|
+
.btn-group-sm > .btn {
|
3760
|
+
padding: 5px 10px;
|
3761
|
+
font-size: 12px;
|
3762
|
+
line-height: 1.5;
|
3763
|
+
border-radius: 3px;
|
3764
|
+
}
|
3765
|
+
|
3766
|
+
.btn-group-lg > .btn {
|
3767
|
+
padding: 10px 16px;
|
3768
|
+
font-size: 18px;
|
3769
|
+
line-height: 1.33;
|
3770
|
+
border-radius: 6px;
|
3771
|
+
}
|
3772
|
+
|
3105
3773
|
.btn-group > .btn + .dropdown-toggle {
|
3106
3774
|
padding-right: 8px;
|
3107
3775
|
padding-left: 8px;
|
3108
3776
|
}
|
3109
3777
|
|
3110
|
-
.btn-group > .btn-
|
3778
|
+
.btn-group > .btn-lg + .dropdown-toggle {
|
3111
3779
|
padding-right: 12px;
|
3112
3780
|
padding-left: 12px;
|
3113
3781
|
}
|
@@ -3121,35 +3789,81 @@ button.close {
|
|
3121
3789
|
margin-left: 0;
|
3122
3790
|
}
|
3123
3791
|
|
3124
|
-
.btn-
|
3792
|
+
.btn-lg .caret {
|
3125
3793
|
border-width: 5px;
|
3126
3794
|
}
|
3127
3795
|
|
3128
|
-
.dropup .btn-
|
3796
|
+
.dropup .btn-lg .caret {
|
3129
3797
|
border-bottom-width: 5px;
|
3130
3798
|
}
|
3131
3799
|
|
3132
|
-
.btn-group-vertical > .btn
|
3800
|
+
.btn-group-vertical > .btn,
|
3801
|
+
.btn-group-vertical > .btn-group {
|
3133
3802
|
display: block;
|
3134
3803
|
float: none;
|
3135
3804
|
width: 100%;
|
3136
3805
|
max-width: 100%;
|
3137
3806
|
}
|
3138
3807
|
|
3139
|
-
.btn-group-vertical > .btn
|
3808
|
+
.btn-group-vertical > .btn-group:before,
|
3809
|
+
.btn-group-vertical > .btn-group:after {
|
3810
|
+
display: table;
|
3811
|
+
content: " ";
|
3812
|
+
}
|
3813
|
+
|
3814
|
+
.btn-group-vertical > .btn-group:after {
|
3815
|
+
clear: both;
|
3816
|
+
}
|
3817
|
+
|
3818
|
+
.btn-group-vertical > .btn-group:before,
|
3819
|
+
.btn-group-vertical > .btn-group:after {
|
3820
|
+
display: table;
|
3821
|
+
content: " ";
|
3822
|
+
}
|
3823
|
+
|
3824
|
+
.btn-group-vertical > .btn-group:after {
|
3825
|
+
clear: both;
|
3826
|
+
}
|
3827
|
+
|
3828
|
+
.btn-group-vertical > .btn-group > .btn {
|
3829
|
+
float: none;
|
3830
|
+
}
|
3831
|
+
|
3832
|
+
.btn-group-vertical > .btn + .btn,
|
3833
|
+
.btn-group-vertical > .btn + .btn-group,
|
3834
|
+
.btn-group-vertical > .btn-group + .btn,
|
3835
|
+
.btn-group-vertical > .btn-group + .btn-group {
|
3140
3836
|
margin-top: -1px;
|
3837
|
+
margin-left: 0;
|
3838
|
+
}
|
3839
|
+
|
3840
|
+
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
3841
|
+
border-radius: 0;
|
3842
|
+
}
|
3843
|
+
|
3844
|
+
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
3845
|
+
border-top-right-radius: 4px;
|
3846
|
+
border-bottom-right-radius: 0;
|
3847
|
+
border-bottom-left-radius: 0;
|
3848
|
+
}
|
3849
|
+
|
3850
|
+
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
3851
|
+
border-top-right-radius: 0;
|
3852
|
+
border-bottom-left-radius: 4px;
|
3853
|
+
border-top-left-radius: 0;
|
3141
3854
|
}
|
3142
3855
|
|
3143
|
-
.btn-group-vertical .btn:not(:first-child):not(:last-child) {
|
3856
|
+
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
3144
3857
|
border-radius: 0;
|
3145
3858
|
}
|
3146
3859
|
|
3147
|
-
.btn-group-vertical .btn:first-child
|
3860
|
+
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
|
3861
|
+
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
|
3148
3862
|
border-bottom-right-radius: 0;
|
3149
3863
|
border-bottom-left-radius: 0;
|
3150
3864
|
}
|
3151
3865
|
|
3152
|
-
.btn-group-vertical .btn:last-child {
|
3866
|
+
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
|
3153
3867
|
border-top-right-radius: 0;
|
3154
3868
|
border-top-left-radius: 0;
|
3155
3869
|
}
|
@@ -3157,6 +3871,7 @@ button.close {
|
|
3157
3871
|
.btn-group-justified {
|
3158
3872
|
display: table;
|
3159
3873
|
width: 100%;
|
3874
|
+
table-layout: fixed;
|
3160
3875
|
}
|
3161
3876
|
|
3162
3877
|
.btn-group-justified .btn {
|
@@ -3165,8 +3880,8 @@ button.close {
|
|
3165
3880
|
width: 1%;
|
3166
3881
|
}
|
3167
3882
|
|
3168
|
-
|
3169
|
-
|
3883
|
+
[data-toggle="buttons"] > .btn > input[type="radio"],
|
3884
|
+
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
3170
3885
|
display: none;
|
3171
3886
|
}
|
3172
3887
|
|
@@ -3206,7 +3921,7 @@ button.close {
|
|
3206
3921
|
.pagination > li > a,
|
3207
3922
|
.pagination > li > span {
|
3208
3923
|
float: left;
|
3209
|
-
padding:
|
3924
|
+
padding: 6px 12px;
|
3210
3925
|
line-height: 1.428571429;
|
3211
3926
|
text-decoration: none;
|
3212
3927
|
background-color: #ffffff;
|
@@ -3249,38 +3964,38 @@ button.close {
|
|
3249
3964
|
background-color: #ffffff;
|
3250
3965
|
}
|
3251
3966
|
|
3252
|
-
.pagination-
|
3253
|
-
.pagination-
|
3254
|
-
padding:
|
3967
|
+
.pagination-lg > li > a,
|
3968
|
+
.pagination-lg > li > span {
|
3969
|
+
padding: 10px 16px;
|
3255
3970
|
font-size: 18px;
|
3256
3971
|
}
|
3257
3972
|
|
3258
|
-
.pagination-
|
3259
|
-
.pagination-
|
3973
|
+
.pagination-lg > li:first-child > a,
|
3974
|
+
.pagination-lg > li:first-child > span {
|
3260
3975
|
border-bottom-left-radius: 6px;
|
3261
3976
|
border-top-left-radius: 6px;
|
3262
3977
|
}
|
3263
3978
|
|
3264
|
-
.pagination-
|
3265
|
-
.pagination-
|
3979
|
+
.pagination-lg > li:last-child > a,
|
3980
|
+
.pagination-lg > li:last-child > span {
|
3266
3981
|
border-top-right-radius: 6px;
|
3267
3982
|
border-bottom-right-radius: 6px;
|
3268
3983
|
}
|
3269
3984
|
|
3270
|
-
.pagination-
|
3271
|
-
.pagination-
|
3985
|
+
.pagination-sm > li > a,
|
3986
|
+
.pagination-sm > li > span {
|
3272
3987
|
padding: 5px 10px;
|
3273
3988
|
font-size: 12px;
|
3274
3989
|
}
|
3275
3990
|
|
3276
|
-
.pagination-
|
3277
|
-
.pagination-
|
3991
|
+
.pagination-sm > li:first-child > a,
|
3992
|
+
.pagination-sm > li:first-child > span {
|
3278
3993
|
border-bottom-left-radius: 3px;
|
3279
3994
|
border-top-left-radius: 3px;
|
3280
3995
|
}
|
3281
3996
|
|
3282
|
-
.pagination-
|
3283
|
-
.pagination-
|
3997
|
+
.pagination-sm > li:last-child > a,
|
3998
|
+
.pagination-sm > li:last-child > span {
|
3284
3999
|
border-top-right-radius: 3px;
|
3285
4000
|
border-bottom-right-radius: 3px;
|
3286
4001
|
}
|
@@ -3376,7 +4091,7 @@ button.close {
|
|
3376
4091
|
transition: transform 0.3s ease-out;
|
3377
4092
|
}
|
3378
4093
|
|
3379
|
-
.modal.
|
4094
|
+
.modal.in .modal-dialog {
|
3380
4095
|
-webkit-transform: translate(0, 0);
|
3381
4096
|
-ms-transform: translate(0, 0);
|
3382
4097
|
transform: translate(0, 0);
|
@@ -3417,7 +4132,7 @@ button.close {
|
|
3417
4132
|
filter: alpha(opacity=0);
|
3418
4133
|
}
|
3419
4134
|
|
3420
|
-
.modal-backdrop.
|
4135
|
+
.modal-backdrop.in {
|
3421
4136
|
opacity: 0.5;
|
3422
4137
|
filter: alpha(opacity=50);
|
3423
4138
|
}
|
@@ -3508,8 +4223,8 @@ button.close {
|
|
3508
4223
|
}
|
3509
4224
|
|
3510
4225
|
.tooltip.in {
|
3511
|
-
opacity:
|
3512
|
-
filter: alpha(opacity=
|
4226
|
+
opacity: 0.9;
|
4227
|
+
filter: alpha(opacity=90);
|
3513
4228
|
}
|
3514
4229
|
|
3515
4230
|
.tooltip.top {
|
@@ -3538,7 +4253,7 @@ button.close {
|
|
3538
4253
|
color: #ffffff;
|
3539
4254
|
text-align: center;
|
3540
4255
|
text-decoration: none;
|
3541
|
-
background-color:
|
4256
|
+
background-color: #000000;
|
3542
4257
|
border-radius: 4px;
|
3543
4258
|
}
|
3544
4259
|
|
@@ -3554,21 +4269,21 @@ button.close {
|
|
3554
4269
|
bottom: 0;
|
3555
4270
|
left: 50%;
|
3556
4271
|
margin-left: -5px;
|
3557
|
-
border-top-color:
|
4272
|
+
border-top-color: #000000;
|
3558
4273
|
border-width: 5px 5px 0;
|
3559
4274
|
}
|
3560
4275
|
|
3561
4276
|
.tooltip.top-left .tooltip-arrow {
|
3562
4277
|
bottom: 0;
|
3563
4278
|
left: 5px;
|
3564
|
-
border-top-color:
|
4279
|
+
border-top-color: #000000;
|
3565
4280
|
border-width: 5px 5px 0;
|
3566
4281
|
}
|
3567
4282
|
|
3568
4283
|
.tooltip.top-right .tooltip-arrow {
|
3569
4284
|
right: 5px;
|
3570
4285
|
bottom: 0;
|
3571
|
-
border-top-color:
|
4286
|
+
border-top-color: #000000;
|
3572
4287
|
border-width: 5px 5px 0;
|
3573
4288
|
}
|
3574
4289
|
|
@@ -3576,7 +4291,7 @@ button.close {
|
|
3576
4291
|
top: 50%;
|
3577
4292
|
left: 0;
|
3578
4293
|
margin-top: -5px;
|
3579
|
-
border-right-color:
|
4294
|
+
border-right-color: #000000;
|
3580
4295
|
border-width: 5px 5px 5px 0;
|
3581
4296
|
}
|
3582
4297
|
|
@@ -3584,7 +4299,7 @@ button.close {
|
|
3584
4299
|
top: 50%;
|
3585
4300
|
right: 0;
|
3586
4301
|
margin-top: -5px;
|
3587
|
-
border-left-color:
|
4302
|
+
border-left-color: #000000;
|
3588
4303
|
border-width: 5px 0 5px 5px;
|
3589
4304
|
}
|
3590
4305
|
|
@@ -3592,21 +4307,21 @@ button.close {
|
|
3592
4307
|
top: 0;
|
3593
4308
|
left: 50%;
|
3594
4309
|
margin-left: -5px;
|
3595
|
-
border-bottom-color:
|
4310
|
+
border-bottom-color: #000000;
|
3596
4311
|
border-width: 0 5px 5px;
|
3597
4312
|
}
|
3598
4313
|
|
3599
4314
|
.tooltip.bottom-left .tooltip-arrow {
|
3600
4315
|
top: 0;
|
3601
4316
|
left: 5px;
|
3602
|
-
border-bottom-color:
|
4317
|
+
border-bottom-color: #000000;
|
3603
4318
|
border-width: 0 5px 5px;
|
3604
4319
|
}
|
3605
4320
|
|
3606
4321
|
.tooltip.bottom-right .tooltip-arrow {
|
3607
4322
|
top: 0;
|
3608
4323
|
right: 5px;
|
3609
|
-
border-bottom-color:
|
4324
|
+
border-bottom-color: #000000;
|
3610
4325
|
border-width: 0 5px 5px;
|
3611
4326
|
}
|
3612
4327
|
|
@@ -3627,8 +4342,6 @@ button.close {
|
|
3627
4342
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
3628
4343
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
3629
4344
|
background-clip: padding-box;
|
3630
|
-
-webkit-bg-clip: padding-box;
|
3631
|
-
-moz-bg-clip: padding;
|
3632
4345
|
}
|
3633
4346
|
|
3634
4347
|
.popover.top {
|
@@ -3750,7 +4463,7 @@ button.close {
|
|
3750
4463
|
}
|
3751
4464
|
|
3752
4465
|
.alert {
|
3753
|
-
padding:
|
4466
|
+
padding: 15px;
|
3754
4467
|
margin-bottom: 20px;
|
3755
4468
|
color: #c09853;
|
3756
4469
|
background-color: #fcf8e3;
|
@@ -3768,11 +4481,24 @@ button.close {
|
|
3768
4481
|
}
|
3769
4482
|
|
3770
4483
|
.alert .alert-link {
|
3771
|
-
font-weight:
|
4484
|
+
font-weight: bold;
|
3772
4485
|
color: #a47e3c;
|
3773
4486
|
}
|
3774
4487
|
|
3775
|
-
.alert
|
4488
|
+
.alert > p,
|
4489
|
+
.alert > ul {
|
4490
|
+
margin-bottom: 0;
|
4491
|
+
}
|
4492
|
+
|
4493
|
+
.alert > p + p {
|
4494
|
+
margin-top: 5px;
|
4495
|
+
}
|
4496
|
+
|
4497
|
+
.alert-dismissable {
|
4498
|
+
padding-right: 35px;
|
4499
|
+
}
|
4500
|
+
|
4501
|
+
.alert-dismissable .close {
|
3776
4502
|
position: relative;
|
3777
4503
|
top: -2px;
|
3778
4504
|
right: -21px;
|
@@ -3821,20 +4547,6 @@ button.close {
|
|
3821
4547
|
color: #2d6987;
|
3822
4548
|
}
|
3823
4549
|
|
3824
|
-
.alert-block {
|
3825
|
-
padding-top: 15px;
|
3826
|
-
padding-bottom: 15px;
|
3827
|
-
}
|
3828
|
-
|
3829
|
-
.alert-block > p,
|
3830
|
-
.alert-block > ul {
|
3831
|
-
margin-bottom: 0;
|
3832
|
-
}
|
3833
|
-
|
3834
|
-
.alert-block p + p {
|
3835
|
-
margin-top: 5px;
|
3836
|
-
}
|
3837
|
-
|
3838
4550
|
.thumbnail,
|
3839
4551
|
.img-thumbnail {
|
3840
4552
|
padding: 4px;
|
@@ -3912,13 +4624,12 @@ a.thumbnail:focus {
|
|
3912
4624
|
display: inline;
|
3913
4625
|
padding: .25em .6em;
|
3914
4626
|
font-size: 75%;
|
3915
|
-
font-weight:
|
4627
|
+
font-weight: bold;
|
3916
4628
|
line-height: 1;
|
3917
4629
|
color: #ffffff;
|
3918
4630
|
text-align: center;
|
3919
4631
|
white-space: nowrap;
|
3920
|
-
vertical-align:
|
3921
|
-
background-color: #999999;
|
4632
|
+
vertical-align: baseline;
|
3922
4633
|
border-radius: .25em;
|
3923
4634
|
}
|
3924
4635
|
|
@@ -3927,6 +4638,18 @@ a.thumbnail:focus {
|
|
3927
4638
|
color: #ffffff;
|
3928
4639
|
text-decoration: none;
|
3929
4640
|
cursor: pointer;
|
4641
|
+
}
|
4642
|
+
|
4643
|
+
.label:empty {
|
4644
|
+
display: none;
|
4645
|
+
}
|
4646
|
+
|
4647
|
+
.label-default {
|
4648
|
+
background-color: #999999;
|
4649
|
+
}
|
4650
|
+
|
4651
|
+
.label-default[href]:hover,
|
4652
|
+
.label-default[href]:focus {
|
3930
4653
|
background-color: #808080;
|
3931
4654
|
}
|
3932
4655
|
|
@@ -3976,7 +4699,7 @@ a.thumbnail:focus {
|
|
3976
4699
|
color: #ffffff;
|
3977
4700
|
text-align: center;
|
3978
4701
|
white-space: nowrap;
|
3979
|
-
vertical-align:
|
4702
|
+
vertical-align: baseline;
|
3980
4703
|
background-color: #999999;
|
3981
4704
|
border-radius: 10px;
|
3982
4705
|
}
|
@@ -4025,15 +4748,6 @@ a.list-group-item.active > .badge,
|
|
4025
4748
|
}
|
4026
4749
|
}
|
4027
4750
|
|
4028
|
-
@-ms-keyframes progress-bar-stripes {
|
4029
|
-
from {
|
4030
|
-
background-position: 40px 0;
|
4031
|
-
}
|
4032
|
-
to {
|
4033
|
-
background-position: 0 0;
|
4034
|
-
}
|
4035
|
-
}
|
4036
|
-
|
4037
4751
|
@-o-keyframes progress-bar-stripes {
|
4038
4752
|
from {
|
4039
4753
|
background-position: 0 0;
|
@@ -4077,7 +4791,6 @@ a.list-group-item.active > .badge,
|
|
4077
4791
|
}
|
4078
4792
|
|
4079
4793
|
.progress-striped .progress-bar {
|
4080
|
-
background-color: #428bca;
|
4081
4794
|
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));
|
4082
4795
|
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);
|
4083
4796
|
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);
|
@@ -4098,7 +4811,6 @@ a.list-group-item.active > .badge,
|
|
4098
4811
|
}
|
4099
4812
|
|
4100
4813
|
.progress-striped .progress-bar-danger {
|
4101
|
-
background-color: #d9534f;
|
4102
4814
|
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));
|
4103
4815
|
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);
|
4104
4816
|
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);
|
@@ -4110,7 +4822,6 @@ a.list-group-item.active > .badge,
|
|
4110
4822
|
}
|
4111
4823
|
|
4112
4824
|
.progress-striped .progress-bar-success {
|
4113
|
-
background-color: #5cb85c;
|
4114
4825
|
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));
|
4115
4826
|
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);
|
4116
4827
|
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);
|
@@ -4122,7 +4833,6 @@ a.list-group-item.active > .badge,
|
|
4122
4833
|
}
|
4123
4834
|
|
4124
4835
|
.progress-striped .progress-bar-warning {
|
4125
|
-
background-color: #f0ad4e;
|
4126
4836
|
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));
|
4127
4837
|
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);
|
4128
4838
|
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);
|
@@ -4134,38 +4844,12 @@ a.list-group-item.active > .badge,
|
|
4134
4844
|
}
|
4135
4845
|
|
4136
4846
|
.progress-striped .progress-bar-info {
|
4137
|
-
background-color: #5bc0de;
|
4138
4847
|
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));
|
4139
4848
|
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);
|
4140
4849
|
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);
|
4141
4850
|
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);
|
4142
4851
|
}
|
4143
4852
|
|
4144
|
-
.accordion {
|
4145
|
-
margin-bottom: 20px;
|
4146
|
-
}
|
4147
|
-
|
4148
|
-
.accordion-group {
|
4149
|
-
margin-bottom: 2px;
|
4150
|
-
border: 1px solid #e5e5e5;
|
4151
|
-
border-radius: 4px;
|
4152
|
-
}
|
4153
|
-
|
4154
|
-
.accordion-heading {
|
4155
|
-
border-bottom: 0;
|
4156
|
-
}
|
4157
|
-
|
4158
|
-
.accordion-heading .accordion-toggle {
|
4159
|
-
display: block;
|
4160
|
-
padding: 8px 15px;
|
4161
|
-
cursor: pointer;
|
4162
|
-
}
|
4163
|
-
|
4164
|
-
.accordion-inner {
|
4165
|
-
padding: 9px 15px;
|
4166
|
-
border-top: 1px solid #e5e5e5;
|
4167
|
-
}
|
4168
|
-
|
4169
4853
|
.carousel {
|
4170
4854
|
position: relative;
|
4171
4855
|
}
|
@@ -4244,8 +4928,6 @@ a.list-group-item.active > .badge,
|
|
4244
4928
|
}
|
4245
4929
|
|
4246
4930
|
.carousel-control.left {
|
4247
|
-
background-color: rgba(0, 0, 0, 0.0001);
|
4248
|
-
background-color: transparent;
|
4249
4931
|
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
4250
4932
|
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
|
4251
4933
|
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
|
@@ -4257,8 +4939,6 @@ a.list-group-item.active > .badge,
|
|
4257
4939
|
.carousel-control.right {
|
4258
4940
|
right: 0;
|
4259
4941
|
left: auto;
|
4260
|
-
background-color: rgba(0, 0, 0, 0.5);
|
4261
|
-
background-color: transparent;
|
4262
4942
|
background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
4263
4943
|
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
|
4264
4944
|
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
|
@@ -4275,7 +4955,6 @@ a.list-group-item.active > .badge,
|
|
4275
4955
|
filter: alpha(opacity=90);
|
4276
4956
|
}
|
4277
4957
|
|
4278
|
-
.carousel-control .glyphicon,
|
4279
4958
|
.carousel-control .icon-prev,
|
4280
4959
|
.carousel-control .icon-next {
|
4281
4960
|
position: absolute;
|
@@ -4303,9 +4982,9 @@ a.list-group-item.active > .badge,
|
|
4303
4982
|
bottom: 10px;
|
4304
4983
|
left: 50%;
|
4305
4984
|
z-index: 15;
|
4306
|
-
width:
|
4985
|
+
width: 60%;
|
4307
4986
|
padding-left: 0;
|
4308
|
-
margin-left: -
|
4987
|
+
margin-left: -30%;
|
4309
4988
|
text-align: center;
|
4310
4989
|
list-style: none;
|
4311
4990
|
}
|
@@ -4346,7 +5025,6 @@ a.list-group-item.active > .badge,
|
|
4346
5025
|
}
|
4347
5026
|
|
4348
5027
|
@media screen and (min-width: 768px) {
|
4349
|
-
.carousel-control .glyphicon,
|
4350
5028
|
.carousel-control .icon-prev,
|
4351
5029
|
.carousel-control .icon-next {
|
4352
5030
|
width: 30px;
|
@@ -4405,11 +5083,11 @@ a.list-group-item.active > .badge,
|
|
4405
5083
|
}
|
4406
5084
|
|
4407
5085
|
.pull-right {
|
4408
|
-
float: right;
|
5086
|
+
float: right !important;
|
4409
5087
|
}
|
4410
5088
|
|
4411
5089
|
.pull-left {
|
4412
|
-
float: left;
|
5090
|
+
float: left !important;
|
4413
5091
|
}
|
4414
5092
|
|
4415
5093
|
.hide {
|
@@ -4451,17 +5129,108 @@ a.list-group-item.active > .badge,
|
|
4451
5129
|
visibility: hidden !important;
|
4452
5130
|
}
|
4453
5131
|
|
4454
|
-
.visible-
|
5132
|
+
.visible-xs {
|
4455
5133
|
display: block !important;
|
4456
5134
|
}
|
4457
5135
|
|
4458
|
-
tr.visible-
|
5136
|
+
tr.visible-xs {
|
4459
5137
|
display: table-row !important;
|
4460
5138
|
}
|
4461
5139
|
|
5140
|
+
th.visible-xs,
|
5141
|
+
td.visible-xs {
|
5142
|
+
display: table-cell !important;
|
5143
|
+
}
|
5144
|
+
|
5145
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5146
|
+
.visible-xs {
|
5147
|
+
display: none !important;
|
5148
|
+
}
|
5149
|
+
tr.visible-xs {
|
5150
|
+
display: none !important;
|
5151
|
+
}
|
5152
|
+
th.visible-xs,
|
5153
|
+
td.visible-xs {
|
5154
|
+
display: none !important;
|
5155
|
+
}
|
5156
|
+
}
|
5157
|
+
|
5158
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5159
|
+
.visible-xs {
|
5160
|
+
display: none !important;
|
5161
|
+
}
|
5162
|
+
tr.visible-xs {
|
5163
|
+
display: none !important;
|
5164
|
+
}
|
5165
|
+
th.visible-xs,
|
5166
|
+
td.visible-xs {
|
5167
|
+
display: none !important;
|
5168
|
+
}
|
5169
|
+
}
|
5170
|
+
|
5171
|
+
@media (min-width: 1200px) {
|
5172
|
+
.visible-xs {
|
5173
|
+
display: none !important;
|
5174
|
+
}
|
5175
|
+
tr.visible-xs {
|
5176
|
+
display: none !important;
|
5177
|
+
}
|
5178
|
+
th.visible-xs,
|
5179
|
+
td.visible-xs {
|
5180
|
+
display: none !important;
|
5181
|
+
}
|
5182
|
+
}
|
5183
|
+
|
5184
|
+
.visible-sm {
|
5185
|
+
display: none !important;
|
5186
|
+
}
|
5187
|
+
|
5188
|
+
tr.visible-sm {
|
5189
|
+
display: none !important;
|
5190
|
+
}
|
5191
|
+
|
4462
5192
|
th.visible-sm,
|
4463
5193
|
td.visible-sm {
|
4464
|
-
display:
|
5194
|
+
display: none !important;
|
5195
|
+
}
|
5196
|
+
|
5197
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5198
|
+
.visible-sm {
|
5199
|
+
display: block !important;
|
5200
|
+
}
|
5201
|
+
tr.visible-sm {
|
5202
|
+
display: table-row !important;
|
5203
|
+
}
|
5204
|
+
th.visible-sm,
|
5205
|
+
td.visible-sm {
|
5206
|
+
display: table-cell !important;
|
5207
|
+
}
|
5208
|
+
}
|
5209
|
+
|
5210
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5211
|
+
.visible-sm {
|
5212
|
+
display: none !important;
|
5213
|
+
}
|
5214
|
+
tr.visible-sm {
|
5215
|
+
display: none !important;
|
5216
|
+
}
|
5217
|
+
th.visible-sm,
|
5218
|
+
td.visible-sm {
|
5219
|
+
display: none !important;
|
5220
|
+
}
|
5221
|
+
}
|
5222
|
+
|
5223
|
+
@media (min-width: 1200px) {
|
5224
|
+
.visible-sm {
|
5225
|
+
display: none !important;
|
5226
|
+
}
|
5227
|
+
tr.visible-sm {
|
5228
|
+
display: none !important;
|
5229
|
+
}
|
5230
|
+
th.visible-sm,
|
5231
|
+
td.visible-sm {
|
5232
|
+
display: none !important;
|
5233
|
+
}
|
4465
5234
|
}
|
4466
5235
|
|
4467
5236
|
.visible-md {
|
@@ -4477,6 +5246,45 @@ td.visible-md {
|
|
4477
5246
|
display: none !important;
|
4478
5247
|
}
|
4479
5248
|
|
5249
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5250
|
+
.visible-md {
|
5251
|
+
display: none !important;
|
5252
|
+
}
|
5253
|
+
tr.visible-md {
|
5254
|
+
display: none !important;
|
5255
|
+
}
|
5256
|
+
th.visible-md,
|
5257
|
+
td.visible-md {
|
5258
|
+
display: none !important;
|
5259
|
+
}
|
5260
|
+
}
|
5261
|
+
|
5262
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5263
|
+
.visible-md {
|
5264
|
+
display: block !important;
|
5265
|
+
}
|
5266
|
+
tr.visible-md {
|
5267
|
+
display: table-row !important;
|
5268
|
+
}
|
5269
|
+
th.visible-md,
|
5270
|
+
td.visible-md {
|
5271
|
+
display: table-cell !important;
|
5272
|
+
}
|
5273
|
+
}
|
5274
|
+
|
5275
|
+
@media (min-width: 1200px) {
|
5276
|
+
.visible-md {
|
5277
|
+
display: none !important;
|
5278
|
+
}
|
5279
|
+
tr.visible-md {
|
5280
|
+
display: none !important;
|
5281
|
+
}
|
5282
|
+
th.visible-md,
|
5283
|
+
td.visible-md {
|
5284
|
+
display: none !important;
|
5285
|
+
}
|
5286
|
+
}
|
5287
|
+
|
4480
5288
|
.visible-lg {
|
4481
5289
|
display: none !important;
|
4482
5290
|
}
|
@@ -4490,76 +5298,137 @@ td.visible-lg {
|
|
4490
5298
|
display: none !important;
|
4491
5299
|
}
|
4492
5300
|
|
4493
|
-
|
5301
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5302
|
+
.visible-lg {
|
5303
|
+
display: none !important;
|
5304
|
+
}
|
5305
|
+
tr.visible-lg {
|
5306
|
+
display: none !important;
|
5307
|
+
}
|
5308
|
+
th.visible-lg,
|
5309
|
+
td.visible-lg {
|
5310
|
+
display: none !important;
|
5311
|
+
}
|
5312
|
+
}
|
5313
|
+
|
5314
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5315
|
+
.visible-lg {
|
5316
|
+
display: none !important;
|
5317
|
+
}
|
5318
|
+
tr.visible-lg {
|
5319
|
+
display: none !important;
|
5320
|
+
}
|
5321
|
+
th.visible-lg,
|
5322
|
+
td.visible-lg {
|
5323
|
+
display: none !important;
|
5324
|
+
}
|
5325
|
+
}
|
5326
|
+
|
5327
|
+
@media (min-width: 1200px) {
|
5328
|
+
.visible-lg {
|
5329
|
+
display: block !important;
|
5330
|
+
}
|
5331
|
+
tr.visible-lg {
|
5332
|
+
display: table-row !important;
|
5333
|
+
}
|
5334
|
+
th.visible-lg,
|
5335
|
+
td.visible-lg {
|
5336
|
+
display: table-cell !important;
|
5337
|
+
}
|
5338
|
+
}
|
5339
|
+
|
5340
|
+
.hidden-xs {
|
4494
5341
|
display: none !important;
|
4495
5342
|
}
|
4496
5343
|
|
4497
|
-
tr.hidden-
|
5344
|
+
tr.hidden-xs {
|
4498
5345
|
display: none !important;
|
4499
5346
|
}
|
4500
5347
|
|
4501
|
-
th.hidden-
|
4502
|
-
td.hidden-
|
5348
|
+
th.hidden-xs,
|
5349
|
+
td.hidden-xs {
|
4503
5350
|
display: none !important;
|
4504
5351
|
}
|
4505
5352
|
|
4506
|
-
|
4507
|
-
|
5353
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5354
|
+
.hidden-xs {
|
5355
|
+
display: block !important;
|
5356
|
+
}
|
5357
|
+
tr.hidden-xs {
|
5358
|
+
display: table-row !important;
|
5359
|
+
}
|
5360
|
+
th.hidden-xs,
|
5361
|
+
td.hidden-xs {
|
5362
|
+
display: table-cell !important;
|
5363
|
+
}
|
4508
5364
|
}
|
4509
5365
|
|
4510
|
-
|
4511
|
-
|
5366
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5367
|
+
.hidden-xs {
|
5368
|
+
display: block !important;
|
5369
|
+
}
|
5370
|
+
tr.hidden-xs {
|
5371
|
+
display: table-row !important;
|
5372
|
+
}
|
5373
|
+
th.hidden-xs,
|
5374
|
+
td.hidden-xs {
|
5375
|
+
display: table-cell !important;
|
5376
|
+
}
|
4512
5377
|
}
|
4513
5378
|
|
4514
|
-
|
4515
|
-
|
4516
|
-
|
5379
|
+
@media (min-width: 1200px) {
|
5380
|
+
.hidden-xs {
|
5381
|
+
display: block !important;
|
5382
|
+
}
|
5383
|
+
tr.hidden-xs {
|
5384
|
+
display: table-row !important;
|
5385
|
+
}
|
5386
|
+
th.hidden-xs,
|
5387
|
+
td.hidden-xs {
|
5388
|
+
display: table-cell !important;
|
5389
|
+
}
|
4517
5390
|
}
|
4518
5391
|
|
4519
|
-
.hidden-
|
5392
|
+
.hidden-sm {
|
4520
5393
|
display: block !important;
|
4521
5394
|
}
|
4522
5395
|
|
4523
|
-
tr.hidden-
|
5396
|
+
tr.hidden-sm {
|
4524
5397
|
display: table-row !important;
|
4525
5398
|
}
|
4526
5399
|
|
4527
|
-
th.hidden-
|
4528
|
-
td.hidden-
|
5400
|
+
th.hidden-sm,
|
5401
|
+
td.hidden-sm {
|
4529
5402
|
display: table-cell !important;
|
4530
5403
|
}
|
4531
5404
|
|
4532
5405
|
@media (min-width: 768px) and (max-width: 991px) {
|
4533
|
-
.
|
5406
|
+
.hidden-sm {
|
4534
5407
|
display: none !important;
|
4535
5408
|
}
|
4536
|
-
tr.
|
5409
|
+
tr.hidden-sm {
|
4537
5410
|
display: none !important;
|
4538
5411
|
}
|
4539
|
-
th.
|
4540
|
-
td.
|
5412
|
+
th.hidden-sm,
|
5413
|
+
td.hidden-sm {
|
4541
5414
|
display: none !important;
|
4542
5415
|
}
|
4543
|
-
|
5416
|
+
}
|
5417
|
+
|
5418
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5419
|
+
.hidden-sm {
|
4544
5420
|
display: block !important;
|
4545
5421
|
}
|
4546
|
-
tr.
|
5422
|
+
tr.hidden-sm {
|
4547
5423
|
display: table-row !important;
|
4548
5424
|
}
|
4549
|
-
th.
|
4550
|
-
td.
|
5425
|
+
th.hidden-sm,
|
5426
|
+
td.hidden-sm {
|
4551
5427
|
display: table-cell !important;
|
4552
5428
|
}
|
4553
|
-
|
4554
|
-
|
4555
|
-
|
4556
|
-
tr.visible-lg {
|
4557
|
-
display: none !important;
|
4558
|
-
}
|
4559
|
-
th.visible-lg,
|
4560
|
-
td.visible-lg {
|
4561
|
-
display: none !important;
|
4562
|
-
}
|
5429
|
+
}
|
5430
|
+
|
5431
|
+
@media (min-width: 1200px) {
|
4563
5432
|
.hidden-sm {
|
4564
5433
|
display: block !important;
|
4565
5434
|
}
|
@@ -4570,79 +5439,100 @@ td.hidden-lg {
|
|
4570
5439
|
td.hidden-sm {
|
4571
5440
|
display: table-cell !important;
|
4572
5441
|
}
|
5442
|
+
}
|
5443
|
+
|
5444
|
+
.hidden-md {
|
5445
|
+
display: block !important;
|
5446
|
+
}
|
5447
|
+
|
5448
|
+
tr.hidden-md {
|
5449
|
+
display: table-row !important;
|
5450
|
+
}
|
5451
|
+
|
5452
|
+
th.hidden-md,
|
5453
|
+
td.hidden-md {
|
5454
|
+
display: table-cell !important;
|
5455
|
+
}
|
5456
|
+
|
5457
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
4573
5458
|
.hidden-md {
|
4574
|
-
display:
|
5459
|
+
display: block !important;
|
4575
5460
|
}
|
4576
5461
|
tr.hidden-md {
|
4577
|
-
display:
|
5462
|
+
display: table-row !important;
|
4578
5463
|
}
|
4579
5464
|
th.hidden-md,
|
4580
5465
|
td.hidden-md {
|
4581
|
-
display: none !important;
|
4582
|
-
}
|
4583
|
-
.hidden-lg {
|
4584
|
-
display: block !important;
|
4585
|
-
}
|
4586
|
-
tr.hidden-lg {
|
4587
|
-
display: table-row !important;
|
4588
|
-
}
|
4589
|
-
th.hidden-lg,
|
4590
|
-
td.hidden-lg {
|
4591
5466
|
display: table-cell !important;
|
4592
5467
|
}
|
4593
5468
|
}
|
4594
5469
|
|
4595
|
-
@media (min-width: 992px) {
|
4596
|
-
.
|
4597
|
-
display: none !important;
|
4598
|
-
}
|
4599
|
-
tr.visible-sm {
|
4600
|
-
display: none !important;
|
4601
|
-
}
|
4602
|
-
th.visible-sm,
|
4603
|
-
td.visible-sm {
|
4604
|
-
display: none !important;
|
4605
|
-
}
|
4606
|
-
.visible-md {
|
5470
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5471
|
+
.hidden-md {
|
4607
5472
|
display: none !important;
|
4608
5473
|
}
|
4609
|
-
tr.
|
5474
|
+
tr.hidden-md {
|
4610
5475
|
display: none !important;
|
4611
5476
|
}
|
4612
|
-
th.
|
4613
|
-
td.
|
5477
|
+
th.hidden-md,
|
5478
|
+
td.hidden-md {
|
4614
5479
|
display: none !important;
|
4615
5480
|
}
|
4616
|
-
|
5481
|
+
}
|
5482
|
+
|
5483
|
+
@media (min-width: 1200px) {
|
5484
|
+
.hidden-md {
|
4617
5485
|
display: block !important;
|
4618
5486
|
}
|
4619
|
-
tr.
|
5487
|
+
tr.hidden-md {
|
4620
5488
|
display: table-row !important;
|
4621
5489
|
}
|
4622
|
-
th.
|
4623
|
-
td.
|
5490
|
+
th.hidden-md,
|
5491
|
+
td.hidden-md {
|
4624
5492
|
display: table-cell !important;
|
4625
5493
|
}
|
4626
|
-
|
5494
|
+
}
|
5495
|
+
|
5496
|
+
.hidden-lg {
|
5497
|
+
display: block !important;
|
5498
|
+
}
|
5499
|
+
|
5500
|
+
tr.hidden-lg {
|
5501
|
+
display: table-row !important;
|
5502
|
+
}
|
5503
|
+
|
5504
|
+
th.hidden-lg,
|
5505
|
+
td.hidden-lg {
|
5506
|
+
display: table-cell !important;
|
5507
|
+
}
|
5508
|
+
|
5509
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5510
|
+
.hidden-lg {
|
4627
5511
|
display: block !important;
|
4628
5512
|
}
|
4629
|
-
tr.hidden-
|
5513
|
+
tr.hidden-lg {
|
4630
5514
|
display: table-row !important;
|
4631
5515
|
}
|
4632
|
-
th.hidden-
|
4633
|
-
td.hidden-
|
5516
|
+
th.hidden-lg,
|
5517
|
+
td.hidden-lg {
|
4634
5518
|
display: table-cell !important;
|
4635
5519
|
}
|
4636
|
-
|
5520
|
+
}
|
5521
|
+
|
5522
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
5523
|
+
.hidden-lg {
|
4637
5524
|
display: block !important;
|
4638
5525
|
}
|
4639
|
-
tr.hidden-
|
5526
|
+
tr.hidden-lg {
|
4640
5527
|
display: table-row !important;
|
4641
5528
|
}
|
4642
|
-
th.hidden-
|
4643
|
-
td.hidden-
|
5529
|
+
th.hidden-lg,
|
5530
|
+
td.hidden-lg {
|
4644
5531
|
display: table-cell !important;
|
4645
5532
|
}
|
5533
|
+
}
|
5534
|
+
|
5535
|
+
@media (min-width: 1200px) {
|
4646
5536
|
.hidden-lg {
|
4647
5537
|
display: none !important;
|
4648
5538
|
}
|