bootswatch_rails 3.3.4.1 → 3.3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/datatables/DataTables-1.10.9.zip +0 -0
- data/generate.sh +31 -23
- data/lib/bootswatch_rails/engine.rb +1 -1
- data/lib/bootswatch_rails/version.rb +6 -6
- data/vendor/assets/javascripts/dataTables.responsive.js +16 -7
- data/vendor/assets/javascripts/jquery.dataTables.js +574 -324
- data/vendor/assets/stylesheets/cerulean.css +306 -83
- data/vendor/assets/stylesheets/cosmo.css +328 -84
- data/vendor/assets/stylesheets/custom.css +303 -83
- data/vendor/assets/stylesheets/cyborg.css +333 -83
- data/vendor/assets/stylesheets/darkly.css +325 -93
- data/vendor/assets/stylesheets/flatly.css +316 -84
- data/vendor/assets/stylesheets/journal.css +328 -84
- data/vendor/assets/stylesheets/jquery.dataTables.css +58 -95
- data/vendor/assets/stylesheets/lumen.css +327 -83
- data/vendor/assets/stylesheets/paper.css +464 -168
- data/vendor/assets/stylesheets/readable.css +303 -83
- data/vendor/assets/stylesheets/{dataTables.responsive.css → responsive.dataTables.css} +0 -0
- data/vendor/assets/stylesheets/sandstone.css +303 -83
- data/vendor/assets/stylesheets/simplex.css +334 -87
- data/vendor/assets/stylesheets/slate.css +327 -83
- data/vendor/assets/stylesheets/spacelab.css +306 -83
- data/vendor/assets/stylesheets/superhero.css +328 -84
- data/vendor/assets/stylesheets/united.css +309 -84
- data/vendor/assets/stylesheets/yeti.css +310 -88
- metadata +5 -7
- data/.gitmodules +0 -3
- data/datatables/DataTables-1.10.4.zip +0 -0
- data/datatables/DataTables-1.10.6.zip +0 -0
@@ -1,12 +1,17 @@
|
|
1
1
|
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
|
2
2
|
/*!
|
3
|
-
* bootswatch v3.3.
|
3
|
+
* bootswatch v3.3.5
|
4
4
|
* Homepage: http://bootswatch.com
|
5
5
|
* Copyright 2012-2015 Thomas Park
|
6
6
|
* Licensed under MIT
|
7
7
|
* Based on Bootstrap
|
8
8
|
*/
|
9
|
-
/*!
|
9
|
+
/*!
|
10
|
+
* Bootstrap v3.3.5 (http://getbootstrap.com)
|
11
|
+
* Copyright 2011-2015 Twitter, Inc.
|
12
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
13
|
+
*/
|
14
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
10
15
|
html {
|
11
16
|
font-family: sans-serif;
|
12
17
|
-ms-text-size-adjust: 100%;
|
@@ -96,8 +101,8 @@ figure {
|
|
96
101
|
margin: 1em 40px;
|
97
102
|
}
|
98
103
|
hr {
|
99
|
-
-moz-box-sizing: content-box;
|
100
104
|
-webkit-box-sizing: content-box;
|
105
|
+
-moz-box-sizing: content-box;
|
101
106
|
box-sizing: content-box;
|
102
107
|
height: 0;
|
103
108
|
}
|
@@ -159,9 +164,9 @@ input[type="number"]::-webkit-outer-spin-button {
|
|
159
164
|
}
|
160
165
|
input[type="search"] {
|
161
166
|
-webkit-appearance: textfield;
|
162
|
-
-moz-box-sizing: content-box;
|
163
167
|
-webkit-box-sizing: content-box;
|
164
|
-
|
168
|
+
-moz-box-sizing: content-box;
|
169
|
+
box-sizing: content-box;
|
165
170
|
}
|
166
171
|
input[type="search"]::-webkit-search-cancel-button,
|
167
172
|
input[type="search"]::-webkit-search-decoration {
|
@@ -240,9 +245,6 @@ th {
|
|
240
245
|
h3 {
|
241
246
|
page-break-after: avoid;
|
242
247
|
}
|
243
|
-
select {
|
244
|
-
background: #fff !important;
|
245
|
-
}
|
246
248
|
.navbar {
|
247
249
|
display: none;
|
248
250
|
}
|
@@ -1342,62 +1344,72 @@ mark,
|
|
1342
1344
|
.text-primary {
|
1343
1345
|
color: #2196f3;
|
1344
1346
|
}
|
1345
|
-
a.text-primary:hover
|
1347
|
+
a.text-primary:hover,
|
1348
|
+
a.text-primary:focus {
|
1346
1349
|
color: #0c7cd5;
|
1347
1350
|
}
|
1348
1351
|
.text-success {
|
1349
1352
|
color: #4caf50;
|
1350
1353
|
}
|
1351
|
-
a.text-success:hover
|
1354
|
+
a.text-success:hover,
|
1355
|
+
a.text-success:focus {
|
1352
1356
|
color: #3d8b40;
|
1353
1357
|
}
|
1354
1358
|
.text-info {
|
1355
1359
|
color: #9c27b0;
|
1356
1360
|
}
|
1357
|
-
a.text-info:hover
|
1361
|
+
a.text-info:hover,
|
1362
|
+
a.text-info:focus {
|
1358
1363
|
color: #771e86;
|
1359
1364
|
}
|
1360
1365
|
.text-warning {
|
1361
1366
|
color: #ff9800;
|
1362
1367
|
}
|
1363
|
-
a.text-warning:hover
|
1368
|
+
a.text-warning:hover,
|
1369
|
+
a.text-warning:focus {
|
1364
1370
|
color: #cc7a00;
|
1365
1371
|
}
|
1366
1372
|
.text-danger {
|
1367
1373
|
color: #e51c23;
|
1368
1374
|
}
|
1369
|
-
a.text-danger:hover
|
1375
|
+
a.text-danger:hover,
|
1376
|
+
a.text-danger:focus {
|
1370
1377
|
color: #b9151b;
|
1371
1378
|
}
|
1372
1379
|
.bg-primary {
|
1373
1380
|
color: #fff;
|
1374
1381
|
background-color: #2196f3;
|
1375
1382
|
}
|
1376
|
-
a.bg-primary:hover
|
1383
|
+
a.bg-primary:hover,
|
1384
|
+
a.bg-primary:focus {
|
1377
1385
|
background-color: #0c7cd5;
|
1378
1386
|
}
|
1379
1387
|
.bg-success {
|
1380
1388
|
background-color: #dff0d8;
|
1381
1389
|
}
|
1382
|
-
a.bg-success:hover
|
1390
|
+
a.bg-success:hover,
|
1391
|
+
a.bg-success:focus {
|
1383
1392
|
background-color: #c1e2b3;
|
1384
1393
|
}
|
1385
1394
|
.bg-info {
|
1386
1395
|
background-color: #e1bee7;
|
1387
1396
|
}
|
1388
|
-
a.bg-info:hover
|
1397
|
+
a.bg-info:hover,
|
1398
|
+
a.bg-info:focus {
|
1389
1399
|
background-color: #d099d9;
|
1390
1400
|
}
|
1391
1401
|
.bg-warning {
|
1392
1402
|
background-color: #ffe0b2;
|
1393
1403
|
}
|
1394
|
-
a.bg-warning:hover
|
1404
|
+
a.bg-warning:hover,
|
1405
|
+
a.bg-warning:focus {
|
1395
1406
|
background-color: #ffcb7f;
|
1396
1407
|
}
|
1397
1408
|
.bg-danger {
|
1398
1409
|
background-color: #f9bdbb;
|
1399
1410
|
}
|
1400
|
-
a.bg-danger:hover
|
1411
|
+
a.bg-danger:hover,
|
1412
|
+
a.bg-danger:focus {
|
1401
1413
|
background-color: #f5908c;
|
1402
1414
|
}
|
1403
1415
|
.page-header {
|
@@ -2591,10 +2603,10 @@ input[type="search"] {
|
|
2591
2603
|
-webkit-appearance: none;
|
2592
2604
|
}
|
2593
2605
|
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
2594
|
-
input[type="date"],
|
2595
|
-
input[type="time"],
|
2596
|
-
input[type="datetime-local"],
|
2597
|
-
input[type="month"] {
|
2606
|
+
input[type="date"].form-control,
|
2607
|
+
input[type="time"].form-control,
|
2608
|
+
input[type="datetime-local"].form-control,
|
2609
|
+
input[type="month"].form-control {
|
2598
2610
|
line-height: 37px;
|
2599
2611
|
}
|
2600
2612
|
input[type="date"].input-sm,
|
@@ -2716,20 +2728,20 @@ select[multiple].input-sm {
|
|
2716
2728
|
line-height: 1.5;
|
2717
2729
|
border-radius: 3px;
|
2718
2730
|
}
|
2719
|
-
|
2731
|
+
.form-group-sm select.form-control {
|
2720
2732
|
height: 30px;
|
2721
2733
|
line-height: 30px;
|
2722
2734
|
}
|
2723
|
-
|
2724
|
-
|
2735
|
+
.form-group-sm textarea.form-control,
|
2736
|
+
.form-group-sm select[multiple].form-control {
|
2725
2737
|
height: auto;
|
2726
2738
|
}
|
2727
2739
|
.form-group-sm .form-control-static {
|
2728
2740
|
height: 30px;
|
2729
|
-
|
2741
|
+
min-height: 35px;
|
2742
|
+
padding: 6px 10px;
|
2730
2743
|
font-size: 12px;
|
2731
2744
|
line-height: 1.5;
|
2732
|
-
min-height: 35px;
|
2733
2745
|
}
|
2734
2746
|
.input-lg {
|
2735
2747
|
height: 45px;
|
@@ -2753,20 +2765,20 @@ select[multiple].input-lg {
|
|
2753
2765
|
line-height: 1.3333333;
|
2754
2766
|
border-radius: 3px;
|
2755
2767
|
}
|
2756
|
-
|
2768
|
+
.form-group-lg select.form-control {
|
2757
2769
|
height: 45px;
|
2758
2770
|
line-height: 45px;
|
2759
2771
|
}
|
2760
|
-
|
2761
|
-
|
2772
|
+
.form-group-lg textarea.form-control,
|
2773
|
+
.form-group-lg select[multiple].form-control {
|
2762
2774
|
height: auto;
|
2763
2775
|
}
|
2764
2776
|
.form-group-lg .form-control-static {
|
2765
2777
|
height: 45px;
|
2766
|
-
|
2778
|
+
min-height: 40px;
|
2779
|
+
padding: 11px 16px;
|
2767
2780
|
font-size: 17px;
|
2768
2781
|
line-height: 1.3333333;
|
2769
|
-
min-height: 40px;
|
2770
2782
|
}
|
2771
2783
|
.has-feedback {
|
2772
2784
|
position: relative;
|
@@ -2786,12 +2798,16 @@ select[multiple].form-group-lg .form-control {
|
|
2786
2798
|
text-align: center;
|
2787
2799
|
pointer-events: none;
|
2788
2800
|
}
|
2789
|
-
.input-lg + .form-control-feedback
|
2801
|
+
.input-lg + .form-control-feedback,
|
2802
|
+
.input-group-lg + .form-control-feedback,
|
2803
|
+
.form-group-lg .form-control + .form-control-feedback {
|
2790
2804
|
width: 45px;
|
2791
2805
|
height: 45px;
|
2792
2806
|
line-height: 45px;
|
2793
2807
|
}
|
2794
|
-
.input-sm + .form-control-feedback
|
2808
|
+
.input-sm + .form-control-feedback,
|
2809
|
+
.input-group-sm + .form-control-feedback,
|
2810
|
+
.form-group-sm .form-control + .form-control-feedback {
|
2795
2811
|
width: 30px;
|
2796
2812
|
height: 30px;
|
2797
2813
|
line-height: 30px;
|
@@ -2977,11 +2993,13 @@ select[multiple].form-group-lg .form-control {
|
|
2977
2993
|
@media (min-width: 768px) {
|
2978
2994
|
.form-horizontal .form-group-lg .control-label {
|
2979
2995
|
padding-top: 14.333333px;
|
2996
|
+
font-size: 17px;
|
2980
2997
|
}
|
2981
2998
|
}
|
2982
2999
|
@media (min-width: 768px) {
|
2983
3000
|
.form-horizontal .form-group-sm .control-label {
|
2984
3001
|
padding-top: 6px;
|
3002
|
+
font-size: 12px;
|
2985
3003
|
}
|
2986
3004
|
}
|
2987
3005
|
.btn {
|
@@ -3018,7 +3036,7 @@ select[multiple].form-group-lg .form-control {
|
|
3018
3036
|
.btn:hover,
|
3019
3037
|
.btn:focus,
|
3020
3038
|
.btn.focus {
|
3021
|
-
color: #
|
3039
|
+
color: #444444;
|
3022
3040
|
text-decoration: none;
|
3023
3041
|
}
|
3024
3042
|
.btn:active,
|
@@ -3032,26 +3050,50 @@ select[multiple].form-group-lg .form-control {
|
|
3032
3050
|
.btn[disabled],
|
3033
3051
|
fieldset[disabled] .btn {
|
3034
3052
|
cursor: not-allowed;
|
3035
|
-
pointer-events: none;
|
3036
3053
|
opacity: 0.65;
|
3037
3054
|
filter: alpha(opacity=65);
|
3038
3055
|
-webkit-box-shadow: none;
|
3039
3056
|
box-shadow: none;
|
3040
3057
|
}
|
3058
|
+
a.btn.disabled,
|
3059
|
+
fieldset[disabled] a.btn {
|
3060
|
+
pointer-events: none;
|
3061
|
+
}
|
3041
3062
|
.btn-default {
|
3042
|
-
color: #
|
3063
|
+
color: #444444;
|
3043
3064
|
background-color: #ffffff;
|
3044
|
-
border-color:
|
3065
|
+
border-color: transparent;
|
3045
3066
|
}
|
3046
|
-
.btn-default:hover,
|
3047
3067
|
.btn-default:focus,
|
3048
|
-
.btn-default.focus
|
3068
|
+
.btn-default.focus {
|
3069
|
+
color: #444444;
|
3070
|
+
background-color: #e6e6e6;
|
3071
|
+
border-color: rgba(0, 0, 0, 0);
|
3072
|
+
}
|
3073
|
+
.btn-default:hover {
|
3074
|
+
color: #444444;
|
3075
|
+
background-color: #e6e6e6;
|
3076
|
+
border-color: rgba(0, 0, 0, 0);
|
3077
|
+
}
|
3049
3078
|
.btn-default:active,
|
3050
3079
|
.btn-default.active,
|
3051
3080
|
.open > .dropdown-toggle.btn-default {
|
3052
|
-
color: #
|
3081
|
+
color: #444444;
|
3053
3082
|
background-color: #e6e6e6;
|
3054
|
-
border-color:
|
3083
|
+
border-color: rgba(0, 0, 0, 0);
|
3084
|
+
}
|
3085
|
+
.btn-default:active:hover,
|
3086
|
+
.btn-default.active:hover,
|
3087
|
+
.open > .dropdown-toggle.btn-default:hover,
|
3088
|
+
.btn-default:active:focus,
|
3089
|
+
.btn-default.active:focus,
|
3090
|
+
.open > .dropdown-toggle.btn-default:focus,
|
3091
|
+
.btn-default:active.focus,
|
3092
|
+
.btn-default.active.focus,
|
3093
|
+
.open > .dropdown-toggle.btn-default.focus {
|
3094
|
+
color: #444444;
|
3095
|
+
background-color: #d4d4d4;
|
3096
|
+
border-color: rgba(0, 0, 0, 0);
|
3055
3097
|
}
|
3056
3098
|
.btn-default:active,
|
3057
3099
|
.btn-default.active,
|
@@ -3077,20 +3119,28 @@ fieldset[disabled] .btn-default:active,
|
|
3077
3119
|
.btn-default[disabled].active,
|
3078
3120
|
fieldset[disabled] .btn-default.active {
|
3079
3121
|
background-color: #ffffff;
|
3080
|
-
border-color:
|
3122
|
+
border-color: transparent;
|
3081
3123
|
}
|
3082
3124
|
.btn-default .badge {
|
3083
3125
|
color: #ffffff;
|
3084
|
-
background-color: #
|
3126
|
+
background-color: #444444;
|
3085
3127
|
}
|
3086
3128
|
.btn-primary {
|
3087
3129
|
color: #ffffff;
|
3088
3130
|
background-color: #2196f3;
|
3089
3131
|
border-color: transparent;
|
3090
3132
|
}
|
3091
|
-
.btn-primary:hover,
|
3092
3133
|
.btn-primary:focus,
|
3093
|
-
.btn-primary.focus
|
3134
|
+
.btn-primary.focus {
|
3135
|
+
color: #ffffff;
|
3136
|
+
background-color: #0c7cd5;
|
3137
|
+
border-color: rgba(0, 0, 0, 0);
|
3138
|
+
}
|
3139
|
+
.btn-primary:hover {
|
3140
|
+
color: #ffffff;
|
3141
|
+
background-color: #0c7cd5;
|
3142
|
+
border-color: rgba(0, 0, 0, 0);
|
3143
|
+
}
|
3094
3144
|
.btn-primary:active,
|
3095
3145
|
.btn-primary.active,
|
3096
3146
|
.open > .dropdown-toggle.btn-primary {
|
@@ -3098,6 +3148,19 @@ fieldset[disabled] .btn-default.active {
|
|
3098
3148
|
background-color: #0c7cd5;
|
3099
3149
|
border-color: rgba(0, 0, 0, 0);
|
3100
3150
|
}
|
3151
|
+
.btn-primary:active:hover,
|
3152
|
+
.btn-primary.active:hover,
|
3153
|
+
.open > .dropdown-toggle.btn-primary:hover,
|
3154
|
+
.btn-primary:active:focus,
|
3155
|
+
.btn-primary.active:focus,
|
3156
|
+
.open > .dropdown-toggle.btn-primary:focus,
|
3157
|
+
.btn-primary:active.focus,
|
3158
|
+
.btn-primary.active.focus,
|
3159
|
+
.open > .dropdown-toggle.btn-primary.focus {
|
3160
|
+
color: #ffffff;
|
3161
|
+
background-color: #0a68b4;
|
3162
|
+
border-color: rgba(0, 0, 0, 0);
|
3163
|
+
}
|
3101
3164
|
.btn-primary:active,
|
3102
3165
|
.btn-primary.active,
|
3103
3166
|
.open > .dropdown-toggle.btn-primary {
|
@@ -3133,9 +3196,17 @@ fieldset[disabled] .btn-primary.active {
|
|
3133
3196
|
background-color: #4caf50;
|
3134
3197
|
border-color: transparent;
|
3135
3198
|
}
|
3136
|
-
.btn-success:hover,
|
3137
3199
|
.btn-success:focus,
|
3138
|
-
.btn-success.focus
|
3200
|
+
.btn-success.focus {
|
3201
|
+
color: #ffffff;
|
3202
|
+
background-color: #3d8b40;
|
3203
|
+
border-color: rgba(0, 0, 0, 0);
|
3204
|
+
}
|
3205
|
+
.btn-success:hover {
|
3206
|
+
color: #ffffff;
|
3207
|
+
background-color: #3d8b40;
|
3208
|
+
border-color: rgba(0, 0, 0, 0);
|
3209
|
+
}
|
3139
3210
|
.btn-success:active,
|
3140
3211
|
.btn-success.active,
|
3141
3212
|
.open > .dropdown-toggle.btn-success {
|
@@ -3143,6 +3214,19 @@ fieldset[disabled] .btn-primary.active {
|
|
3143
3214
|
background-color: #3d8b40;
|
3144
3215
|
border-color: rgba(0, 0, 0, 0);
|
3145
3216
|
}
|
3217
|
+
.btn-success:active:hover,
|
3218
|
+
.btn-success.active:hover,
|
3219
|
+
.open > .dropdown-toggle.btn-success:hover,
|
3220
|
+
.btn-success:active:focus,
|
3221
|
+
.btn-success.active:focus,
|
3222
|
+
.open > .dropdown-toggle.btn-success:focus,
|
3223
|
+
.btn-success:active.focus,
|
3224
|
+
.btn-success.active.focus,
|
3225
|
+
.open > .dropdown-toggle.btn-success.focus {
|
3226
|
+
color: #ffffff;
|
3227
|
+
background-color: #327334;
|
3228
|
+
border-color: rgba(0, 0, 0, 0);
|
3229
|
+
}
|
3146
3230
|
.btn-success:active,
|
3147
3231
|
.btn-success.active,
|
3148
3232
|
.open > .dropdown-toggle.btn-success {
|
@@ -3178,9 +3262,17 @@ fieldset[disabled] .btn-success.active {
|
|
3178
3262
|
background-color: #9c27b0;
|
3179
3263
|
border-color: transparent;
|
3180
3264
|
}
|
3181
|
-
.btn-info:hover,
|
3182
3265
|
.btn-info:focus,
|
3183
|
-
.btn-info.focus
|
3266
|
+
.btn-info.focus {
|
3267
|
+
color: #ffffff;
|
3268
|
+
background-color: #771e86;
|
3269
|
+
border-color: rgba(0, 0, 0, 0);
|
3270
|
+
}
|
3271
|
+
.btn-info:hover {
|
3272
|
+
color: #ffffff;
|
3273
|
+
background-color: #771e86;
|
3274
|
+
border-color: rgba(0, 0, 0, 0);
|
3275
|
+
}
|
3184
3276
|
.btn-info:active,
|
3185
3277
|
.btn-info.active,
|
3186
3278
|
.open > .dropdown-toggle.btn-info {
|
@@ -3188,6 +3280,19 @@ fieldset[disabled] .btn-success.active {
|
|
3188
3280
|
background-color: #771e86;
|
3189
3281
|
border-color: rgba(0, 0, 0, 0);
|
3190
3282
|
}
|
3283
|
+
.btn-info:active:hover,
|
3284
|
+
.btn-info.active:hover,
|
3285
|
+
.open > .dropdown-toggle.btn-info:hover,
|
3286
|
+
.btn-info:active:focus,
|
3287
|
+
.btn-info.active:focus,
|
3288
|
+
.open > .dropdown-toggle.btn-info:focus,
|
3289
|
+
.btn-info:active.focus,
|
3290
|
+
.btn-info.active.focus,
|
3291
|
+
.open > .dropdown-toggle.btn-info.focus {
|
3292
|
+
color: #ffffff;
|
3293
|
+
background-color: #5d1769;
|
3294
|
+
border-color: rgba(0, 0, 0, 0);
|
3295
|
+
}
|
3191
3296
|
.btn-info:active,
|
3192
3297
|
.btn-info.active,
|
3193
3298
|
.open > .dropdown-toggle.btn-info {
|
@@ -3223,9 +3328,17 @@ fieldset[disabled] .btn-info.active {
|
|
3223
3328
|
background-color: #ff9800;
|
3224
3329
|
border-color: transparent;
|
3225
3330
|
}
|
3226
|
-
.btn-warning:hover,
|
3227
3331
|
.btn-warning:focus,
|
3228
|
-
.btn-warning.focus
|
3332
|
+
.btn-warning.focus {
|
3333
|
+
color: #ffffff;
|
3334
|
+
background-color: #cc7a00;
|
3335
|
+
border-color: rgba(0, 0, 0, 0);
|
3336
|
+
}
|
3337
|
+
.btn-warning:hover {
|
3338
|
+
color: #ffffff;
|
3339
|
+
background-color: #cc7a00;
|
3340
|
+
border-color: rgba(0, 0, 0, 0);
|
3341
|
+
}
|
3229
3342
|
.btn-warning:active,
|
3230
3343
|
.btn-warning.active,
|
3231
3344
|
.open > .dropdown-toggle.btn-warning {
|
@@ -3233,6 +3346,19 @@ fieldset[disabled] .btn-info.active {
|
|
3233
3346
|
background-color: #cc7a00;
|
3234
3347
|
border-color: rgba(0, 0, 0, 0);
|
3235
3348
|
}
|
3349
|
+
.btn-warning:active:hover,
|
3350
|
+
.btn-warning.active:hover,
|
3351
|
+
.open > .dropdown-toggle.btn-warning:hover,
|
3352
|
+
.btn-warning:active:focus,
|
3353
|
+
.btn-warning.active:focus,
|
3354
|
+
.open > .dropdown-toggle.btn-warning:focus,
|
3355
|
+
.btn-warning:active.focus,
|
3356
|
+
.btn-warning.active.focus,
|
3357
|
+
.open > .dropdown-toggle.btn-warning.focus {
|
3358
|
+
color: #ffffff;
|
3359
|
+
background-color: #a86400;
|
3360
|
+
border-color: rgba(0, 0, 0, 0);
|
3361
|
+
}
|
3236
3362
|
.btn-warning:active,
|
3237
3363
|
.btn-warning.active,
|
3238
3364
|
.open > .dropdown-toggle.btn-warning {
|
@@ -3268,9 +3394,17 @@ fieldset[disabled] .btn-warning.active {
|
|
3268
3394
|
background-color: #e51c23;
|
3269
3395
|
border-color: transparent;
|
3270
3396
|
}
|
3271
|
-
.btn-danger:hover,
|
3272
3397
|
.btn-danger:focus,
|
3273
|
-
.btn-danger.focus
|
3398
|
+
.btn-danger.focus {
|
3399
|
+
color: #ffffff;
|
3400
|
+
background-color: #b9151b;
|
3401
|
+
border-color: rgba(0, 0, 0, 0);
|
3402
|
+
}
|
3403
|
+
.btn-danger:hover {
|
3404
|
+
color: #ffffff;
|
3405
|
+
background-color: #b9151b;
|
3406
|
+
border-color: rgba(0, 0, 0, 0);
|
3407
|
+
}
|
3274
3408
|
.btn-danger:active,
|
3275
3409
|
.btn-danger.active,
|
3276
3410
|
.open > .dropdown-toggle.btn-danger {
|
@@ -3278,6 +3412,19 @@ fieldset[disabled] .btn-warning.active {
|
|
3278
3412
|
background-color: #b9151b;
|
3279
3413
|
border-color: rgba(0, 0, 0, 0);
|
3280
3414
|
}
|
3415
|
+
.btn-danger:active:hover,
|
3416
|
+
.btn-danger.active:hover,
|
3417
|
+
.open > .dropdown-toggle.btn-danger:hover,
|
3418
|
+
.btn-danger:active:focus,
|
3419
|
+
.btn-danger.active:focus,
|
3420
|
+
.open > .dropdown-toggle.btn-danger:focus,
|
3421
|
+
.btn-danger:active.focus,
|
3422
|
+
.btn-danger.active.focus,
|
3423
|
+
.open > .dropdown-toggle.btn-danger.focus {
|
3424
|
+
color: #ffffff;
|
3425
|
+
background-color: #991216;
|
3426
|
+
border-color: rgba(0, 0, 0, 0);
|
3427
|
+
}
|
3281
3428
|
.btn-danger:active,
|
3282
3429
|
.btn-danger.active,
|
3283
3430
|
.open > .dropdown-toggle.btn-danger {
|
@@ -3416,6 +3563,7 @@ tbody.collapse.in {
|
|
3416
3563
|
margin-left: 2px;
|
3417
3564
|
vertical-align: middle;
|
3418
3565
|
border-top: 4px dashed;
|
3566
|
+
border-top: 4px solid \9;
|
3419
3567
|
border-right: 4px solid transparent;
|
3420
3568
|
border-left: 4px solid transparent;
|
3421
3569
|
}
|
@@ -3531,7 +3679,8 @@ tbody.collapse.in {
|
|
3531
3679
|
.dropup .caret,
|
3532
3680
|
.navbar-fixed-bottom .dropdown .caret {
|
3533
3681
|
border-top: 0;
|
3534
|
-
border-bottom: 4px
|
3682
|
+
border-bottom: 4px dashed;
|
3683
|
+
border-bottom: 4px solid \9;
|
3535
3684
|
content: "";
|
3536
3685
|
}
|
3537
3686
|
.dropup .dropdown-menu,
|
@@ -3580,6 +3729,7 @@ tbody.collapse.in {
|
|
3580
3729
|
.btn-toolbar {
|
3581
3730
|
margin-left: -5px;
|
3582
3731
|
}
|
3732
|
+
.btn-toolbar .btn,
|
3583
3733
|
.btn-toolbar .btn-group,
|
3584
3734
|
.btn-toolbar .input-group {
|
3585
3735
|
float: left;
|
@@ -3870,6 +4020,7 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
|
3870
4020
|
}
|
3871
4021
|
.input-group-btn:last-child > .btn,
|
3872
4022
|
.input-group-btn:last-child > .btn-group {
|
4023
|
+
z-index: 2;
|
3873
4024
|
margin-left: -1px;
|
3874
4025
|
}
|
3875
4026
|
.nav {
|
@@ -4645,6 +4796,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4645
4796
|
.pagination > li > span:hover,
|
4646
4797
|
.pagination > li > a:focus,
|
4647
4798
|
.pagination > li > span:focus {
|
4799
|
+
z-index: 3;
|
4648
4800
|
color: #0a6ebd;
|
4649
4801
|
background-color: #eeeeee;
|
4650
4802
|
border-color: #dddddd;
|
@@ -4676,6 +4828,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4676
4828
|
.pagination-lg > li > span {
|
4677
4829
|
padding: 10px 16px;
|
4678
4830
|
font-size: 17px;
|
4831
|
+
line-height: 1.3333333;
|
4679
4832
|
}
|
4680
4833
|
.pagination-lg > li:first-child > a,
|
4681
4834
|
.pagination-lg > li:first-child > span {
|
@@ -4691,6 +4844,7 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4691
4844
|
.pagination-sm > li > span {
|
4692
4845
|
padding: 5px 10px;
|
4693
4846
|
font-size: 12px;
|
4847
|
+
line-height: 1.5;
|
4694
4848
|
}
|
4695
4849
|
.pagination-sm > li:first-child > a,
|
4696
4850
|
.pagination-sm > li:first-child > span {
|
@@ -4815,7 +4969,7 @@ a.label:focus {
|
|
4815
4969
|
font-weight: normal;
|
4816
4970
|
color: #ffffff;
|
4817
4971
|
line-height: 1;
|
4818
|
-
vertical-align:
|
4972
|
+
vertical-align: middle;
|
4819
4973
|
white-space: nowrap;
|
4820
4974
|
text-align: center;
|
4821
4975
|
background-color: #bbbbbb;
|
@@ -4854,7 +5008,8 @@ a.badge:focus {
|
|
4854
5008
|
margin-left: 3px;
|
4855
5009
|
}
|
4856
5010
|
.jumbotron {
|
4857
|
-
padding: 30px
|
5011
|
+
padding-top: 30px;
|
5012
|
+
padding-bottom: 30px;
|
4858
5013
|
margin-bottom: 30px;
|
4859
5014
|
color: inherit;
|
4860
5015
|
background-color: #f9f9f9;
|
@@ -4880,7 +5035,8 @@ a.badge:focus {
|
|
4880
5035
|
}
|
4881
5036
|
@media screen and (min-width: 768px) {
|
4882
5037
|
.jumbotron {
|
4883
|
-
padding: 48px
|
5038
|
+
padding-top: 48px;
|
5039
|
+
padding-bottom: 48px;
|
4884
5040
|
}
|
4885
5041
|
.container .jumbotron,
|
4886
5042
|
.container-fluid .jumbotron {
|
@@ -4889,7 +5045,7 @@ a.badge:focus {
|
|
4889
5045
|
}
|
4890
5046
|
.jumbotron h1,
|
4891
5047
|
.jumbotron .h1 {
|
4892
|
-
font-size:
|
5048
|
+
font-size: 59px;
|
4893
5049
|
}
|
4894
5050
|
}
|
4895
5051
|
.thumbnail {
|
@@ -5104,6 +5260,9 @@ a.thumbnail.active {
|
|
5104
5260
|
.media-object {
|
5105
5261
|
display: block;
|
5106
5262
|
}
|
5263
|
+
.media-object.img-thumbnail {
|
5264
|
+
max-width: none;
|
5265
|
+
}
|
5107
5266
|
.media-right,
|
5108
5267
|
.media > .pull-right {
|
5109
5268
|
padding-left: 10px;
|
@@ -5153,18 +5312,26 @@ a.thumbnail.active {
|
|
5153
5312
|
border-bottom-right-radius: 3px;
|
5154
5313
|
border-bottom-left-radius: 3px;
|
5155
5314
|
}
|
5156
|
-
a.list-group-item
|
5315
|
+
a.list-group-item,
|
5316
|
+
button.list-group-item {
|
5157
5317
|
color: #555555;
|
5158
5318
|
}
|
5159
|
-
a.list-group-item .list-group-item-heading
|
5319
|
+
a.list-group-item .list-group-item-heading,
|
5320
|
+
button.list-group-item .list-group-item-heading {
|
5160
5321
|
color: #333333;
|
5161
5322
|
}
|
5162
5323
|
a.list-group-item:hover,
|
5163
|
-
|
5324
|
+
button.list-group-item:hover,
|
5325
|
+
a.list-group-item:focus,
|
5326
|
+
button.list-group-item:focus {
|
5164
5327
|
text-decoration: none;
|
5165
5328
|
color: #555555;
|
5166
5329
|
background-color: #f5f5f5;
|
5167
5330
|
}
|
5331
|
+
button.list-group-item {
|
5332
|
+
width: 100%;
|
5333
|
+
text-align: left;
|
5334
|
+
}
|
5168
5335
|
.list-group-item.disabled,
|
5169
5336
|
.list-group-item.disabled:hover,
|
5170
5337
|
.list-group-item.disabled:focus {
|
@@ -5210,20 +5377,27 @@ a.list-group-item:focus {
|
|
5210
5377
|
color: #4caf50;
|
5211
5378
|
background-color: #dff0d8;
|
5212
5379
|
}
|
5213
|
-
a.list-group-item-success
|
5380
|
+
a.list-group-item-success,
|
5381
|
+
button.list-group-item-success {
|
5214
5382
|
color: #4caf50;
|
5215
5383
|
}
|
5216
|
-
a.list-group-item-success .list-group-item-heading
|
5384
|
+
a.list-group-item-success .list-group-item-heading,
|
5385
|
+
button.list-group-item-success .list-group-item-heading {
|
5217
5386
|
color: inherit;
|
5218
5387
|
}
|
5219
5388
|
a.list-group-item-success:hover,
|
5220
|
-
|
5389
|
+
button.list-group-item-success:hover,
|
5390
|
+
a.list-group-item-success:focus,
|
5391
|
+
button.list-group-item-success:focus {
|
5221
5392
|
color: #4caf50;
|
5222
5393
|
background-color: #d0e9c6;
|
5223
5394
|
}
|
5224
5395
|
a.list-group-item-success.active,
|
5396
|
+
button.list-group-item-success.active,
|
5225
5397
|
a.list-group-item-success.active:hover,
|
5226
|
-
|
5398
|
+
button.list-group-item-success.active:hover,
|
5399
|
+
a.list-group-item-success.active:focus,
|
5400
|
+
button.list-group-item-success.active:focus {
|
5227
5401
|
color: #fff;
|
5228
5402
|
background-color: #4caf50;
|
5229
5403
|
border-color: #4caf50;
|
@@ -5232,20 +5406,27 @@ a.list-group-item-success.active:focus {
|
|
5232
5406
|
color: #9c27b0;
|
5233
5407
|
background-color: #e1bee7;
|
5234
5408
|
}
|
5235
|
-
a.list-group-item-info
|
5409
|
+
a.list-group-item-info,
|
5410
|
+
button.list-group-item-info {
|
5236
5411
|
color: #9c27b0;
|
5237
5412
|
}
|
5238
|
-
a.list-group-item-info .list-group-item-heading
|
5413
|
+
a.list-group-item-info .list-group-item-heading,
|
5414
|
+
button.list-group-item-info .list-group-item-heading {
|
5239
5415
|
color: inherit;
|
5240
5416
|
}
|
5241
5417
|
a.list-group-item-info:hover,
|
5242
|
-
|
5418
|
+
button.list-group-item-info:hover,
|
5419
|
+
a.list-group-item-info:focus,
|
5420
|
+
button.list-group-item-info:focus {
|
5243
5421
|
color: #9c27b0;
|
5244
5422
|
background-color: #d8abe0;
|
5245
5423
|
}
|
5246
5424
|
a.list-group-item-info.active,
|
5425
|
+
button.list-group-item-info.active,
|
5247
5426
|
a.list-group-item-info.active:hover,
|
5248
|
-
|
5427
|
+
button.list-group-item-info.active:hover,
|
5428
|
+
a.list-group-item-info.active:focus,
|
5429
|
+
button.list-group-item-info.active:focus {
|
5249
5430
|
color: #fff;
|
5250
5431
|
background-color: #9c27b0;
|
5251
5432
|
border-color: #9c27b0;
|
@@ -5254,20 +5435,27 @@ a.list-group-item-info.active:focus {
|
|
5254
5435
|
color: #ff9800;
|
5255
5436
|
background-color: #ffe0b2;
|
5256
5437
|
}
|
5257
|
-
a.list-group-item-warning
|
5438
|
+
a.list-group-item-warning,
|
5439
|
+
button.list-group-item-warning {
|
5258
5440
|
color: #ff9800;
|
5259
5441
|
}
|
5260
|
-
a.list-group-item-warning .list-group-item-heading
|
5442
|
+
a.list-group-item-warning .list-group-item-heading,
|
5443
|
+
button.list-group-item-warning .list-group-item-heading {
|
5261
5444
|
color: inherit;
|
5262
5445
|
}
|
5263
5446
|
a.list-group-item-warning:hover,
|
5264
|
-
|
5447
|
+
button.list-group-item-warning:hover,
|
5448
|
+
a.list-group-item-warning:focus,
|
5449
|
+
button.list-group-item-warning:focus {
|
5265
5450
|
color: #ff9800;
|
5266
5451
|
background-color: #ffd699;
|
5267
5452
|
}
|
5268
5453
|
a.list-group-item-warning.active,
|
5454
|
+
button.list-group-item-warning.active,
|
5269
5455
|
a.list-group-item-warning.active:hover,
|
5270
|
-
|
5456
|
+
button.list-group-item-warning.active:hover,
|
5457
|
+
a.list-group-item-warning.active:focus,
|
5458
|
+
button.list-group-item-warning.active:focus {
|
5271
5459
|
color: #fff;
|
5272
5460
|
background-color: #ff9800;
|
5273
5461
|
border-color: #ff9800;
|
@@ -5276,20 +5464,27 @@ a.list-group-item-warning.active:focus {
|
|
5276
5464
|
color: #e51c23;
|
5277
5465
|
background-color: #f9bdbb;
|
5278
5466
|
}
|
5279
|
-
a.list-group-item-danger
|
5467
|
+
a.list-group-item-danger,
|
5468
|
+
button.list-group-item-danger {
|
5280
5469
|
color: #e51c23;
|
5281
5470
|
}
|
5282
|
-
a.list-group-item-danger .list-group-item-heading
|
5471
|
+
a.list-group-item-danger .list-group-item-heading,
|
5472
|
+
button.list-group-item-danger .list-group-item-heading {
|
5283
5473
|
color: inherit;
|
5284
5474
|
}
|
5285
5475
|
a.list-group-item-danger:hover,
|
5286
|
-
|
5476
|
+
button.list-group-item-danger:hover,
|
5477
|
+
a.list-group-item-danger:focus,
|
5478
|
+
button.list-group-item-danger:focus {
|
5287
5479
|
color: #e51c23;
|
5288
5480
|
background-color: #f7a6a4;
|
5289
5481
|
}
|
5290
5482
|
a.list-group-item-danger.active,
|
5483
|
+
button.list-group-item-danger.active,
|
5291
5484
|
a.list-group-item-danger.active:hover,
|
5292
|
-
|
5485
|
+
button.list-group-item-danger.active:hover,
|
5486
|
+
a.list-group-item-danger.active:focus,
|
5487
|
+
button.list-group-item-danger.active:focus {
|
5293
5488
|
color: #fff;
|
5294
5489
|
background-color: #e51c23;
|
5295
5490
|
border-color: #e51c23;
|
@@ -5363,6 +5558,10 @@ a.list-group-item-danger.active:focus {
|
|
5363
5558
|
border-bottom-right-radius: 2px;
|
5364
5559
|
border-bottom-left-radius: 2px;
|
5365
5560
|
}
|
5561
|
+
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
|
5562
|
+
border-top-right-radius: 0;
|
5563
|
+
border-top-left-radius: 0;
|
5564
|
+
}
|
5366
5565
|
.panel-heading + .list-group .list-group-item:first-child {
|
5367
5566
|
border-top-width: 0;
|
5368
5567
|
}
|
@@ -5843,9 +6042,21 @@ button.close {
|
|
5843
6042
|
z-index: 1070;
|
5844
6043
|
display: block;
|
5845
6044
|
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5846
|
-
font-
|
6045
|
+
font-style: normal;
|
5847
6046
|
font-weight: normal;
|
5848
|
-
|
6047
|
+
letter-spacing: normal;
|
6048
|
+
line-break: auto;
|
6049
|
+
line-height: 1.846;
|
6050
|
+
text-align: left;
|
6051
|
+
text-align: start;
|
6052
|
+
text-decoration: none;
|
6053
|
+
text-shadow: none;
|
6054
|
+
text-transform: none;
|
6055
|
+
white-space: normal;
|
6056
|
+
word-break: normal;
|
6057
|
+
word-spacing: normal;
|
6058
|
+
word-wrap: normal;
|
6059
|
+
font-size: 12px;
|
5849
6060
|
opacity: 0;
|
5850
6061
|
filter: alpha(opacity=0);
|
5851
6062
|
}
|
@@ -5874,7 +6085,6 @@ button.close {
|
|
5874
6085
|
padding: 3px 8px;
|
5875
6086
|
color: #ffffff;
|
5876
6087
|
text-align: center;
|
5877
|
-
text-decoration: none;
|
5878
6088
|
background-color: #727272;
|
5879
6089
|
border-radius: 3px;
|
5880
6090
|
}
|
@@ -5950,10 +6160,21 @@ button.close {
|
|
5950
6160
|
max-width: 276px;
|
5951
6161
|
padding: 1px;
|
5952
6162
|
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
5953
|
-
font-
|
6163
|
+
font-style: normal;
|
5954
6164
|
font-weight: normal;
|
6165
|
+
letter-spacing: normal;
|
6166
|
+
line-break: auto;
|
5955
6167
|
line-height: 1.846;
|
5956
6168
|
text-align: left;
|
6169
|
+
text-align: start;
|
6170
|
+
text-decoration: none;
|
6171
|
+
text-shadow: none;
|
6172
|
+
text-transform: none;
|
6173
|
+
white-space: normal;
|
6174
|
+
word-break: normal;
|
6175
|
+
word-spacing: normal;
|
6176
|
+
word-wrap: normal;
|
6177
|
+
font-size: 13px;
|
5957
6178
|
background-color: #ffffff;
|
5958
6179
|
-webkit-background-clip: padding-box;
|
5959
6180
|
background-clip: padding-box;
|
@@ -5961,7 +6182,6 @@ button.close {
|
|
5961
6182
|
border-radius: 3px;
|
5962
6183
|
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
5963
6184
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
5964
|
-
white-space: normal;
|
5965
6185
|
}
|
5966
6186
|
.popover.top {
|
5967
6187
|
margin-top: -10px;
|
@@ -6088,8 +6308,8 @@ button.close {
|
|
6088
6308
|
transition: transform 0.6s ease-in-out;
|
6089
6309
|
-webkit-backface-visibility: hidden;
|
6090
6310
|
backface-visibility: hidden;
|
6091
|
-
-webkit-perspective:
|
6092
|
-
perspective:
|
6311
|
+
-webkit-perspective: 1000px;
|
6312
|
+
perspective: 1000px;
|
6093
6313
|
}
|
6094
6314
|
.carousel-inner > .item.next,
|
6095
6315
|
.carousel-inner > .item.active.right {
|
@@ -6186,6 +6406,7 @@ button.close {
|
|
6186
6406
|
.carousel-control .glyphicon-chevron-right {
|
6187
6407
|
position: absolute;
|
6188
6408
|
top: 50%;
|
6409
|
+
margin-top: -10px;
|
6189
6410
|
z-index: 5;
|
6190
6411
|
display: inline-block;
|
6191
6412
|
}
|
@@ -6203,7 +6424,6 @@ button.close {
|
|
6203
6424
|
.carousel-control .icon-next {
|
6204
6425
|
width: 20px;
|
6205
6426
|
height: 20px;
|
6206
|
-
margin-top: -10px;
|
6207
6427
|
line-height: 1;
|
6208
6428
|
font-family: serif;
|
6209
6429
|
}
|
@@ -6395,7 +6615,7 @@ button.close {
|
|
6395
6615
|
display: block !important;
|
6396
6616
|
}
|
6397
6617
|
table.visible-xs {
|
6398
|
-
display: table;
|
6618
|
+
display: table !important;
|
6399
6619
|
}
|
6400
6620
|
tr.visible-xs {
|
6401
6621
|
display: table-row !important;
|
@@ -6425,7 +6645,7 @@ button.close {
|
|
6425
6645
|
display: block !important;
|
6426
6646
|
}
|
6427
6647
|
table.visible-sm {
|
6428
|
-
display: table;
|
6648
|
+
display: table !important;
|
6429
6649
|
}
|
6430
6650
|
tr.visible-sm {
|
6431
6651
|
display: table-row !important;
|
@@ -6455,7 +6675,7 @@ button.close {
|
|
6455
6675
|
display: block !important;
|
6456
6676
|
}
|
6457
6677
|
table.visible-md {
|
6458
|
-
display: table;
|
6678
|
+
display: table !important;
|
6459
6679
|
}
|
6460
6680
|
tr.visible-md {
|
6461
6681
|
display: table-row !important;
|
@@ -6485,7 +6705,7 @@ button.close {
|
|
6485
6705
|
display: block !important;
|
6486
6706
|
}
|
6487
6707
|
table.visible-lg {
|
6488
|
-
display: table;
|
6708
|
+
display: table !important;
|
6489
6709
|
}
|
6490
6710
|
tr.visible-lg {
|
6491
6711
|
display: table-row !important;
|
@@ -6538,7 +6758,7 @@ button.close {
|
|
6538
6758
|
display: block !important;
|
6539
6759
|
}
|
6540
6760
|
table.visible-print {
|
6541
|
-
display: table;
|
6761
|
+
display: table !important;
|
6542
6762
|
}
|
6543
6763
|
tr.visible-print {
|
6544
6764
|
display: table-row !important;
|
@@ -6585,177 +6805,217 @@ button.close {
|
|
6585
6805
|
.navbar-brand {
|
6586
6806
|
font-size: 24px;
|
6587
6807
|
}
|
6588
|
-
.navbar-inverse .form
|
6808
|
+
.navbar-inverse .navbar-form input[type=text],
|
6809
|
+
.navbar-inverse .navbar-form input[type=password] {
|
6589
6810
|
color: #fff;
|
6811
|
+
-webkit-box-shadow: inset 0 -1px 0 #b2dbfb;
|
6812
|
+
box-shadow: inset 0 -1px 0 #b2dbfb;
|
6590
6813
|
}
|
6591
|
-
.navbar-inverse .form
|
6814
|
+
.navbar-inverse .navbar-form input[type=text]::-moz-placeholder,
|
6815
|
+
.navbar-inverse .navbar-form input[type=password]::-moz-placeholder {
|
6592
6816
|
color: #b2dbfb;
|
6593
6817
|
opacity: 1;
|
6594
6818
|
}
|
6595
|
-
.navbar-inverse .form
|
6819
|
+
.navbar-inverse .navbar-form input[type=text]:-ms-input-placeholder,
|
6820
|
+
.navbar-inverse .navbar-form input[type=password]:-ms-input-placeholder {
|
6596
6821
|
color: #b2dbfb;
|
6597
6822
|
}
|
6598
|
-
.navbar-inverse .form
|
6823
|
+
.navbar-inverse .navbar-form input[type=text]::-webkit-input-placeholder,
|
6824
|
+
.navbar-inverse .navbar-form input[type=password]::-webkit-input-placeholder {
|
6599
6825
|
color: #b2dbfb;
|
6600
6826
|
}
|
6601
|
-
.navbar-inverse .form
|
6602
|
-
|
6603
|
-
box-shadow: inset 0 -1px 0 #b2dbfb;
|
6604
|
-
}
|
6605
|
-
.navbar-inverse .form-control[type=text]:focus {
|
6827
|
+
.navbar-inverse .navbar-form input[type=text]:focus,
|
6828
|
+
.navbar-inverse .navbar-form input[type=password]:focus {
|
6606
6829
|
-webkit-box-shadow: inset 0 -2px 0 #ffffff;
|
6607
6830
|
box-shadow: inset 0 -2px 0 #ffffff;
|
6608
6831
|
}
|
6609
|
-
.navbar-nav > li > .dropdown-menu {
|
6610
|
-
margin-top: 2px;
|
6611
|
-
}
|
6612
6832
|
.btn-default {
|
6613
6833
|
-webkit-background-size: 200% 200%;
|
6614
6834
|
background-size: 200%;
|
6615
6835
|
background-position: 50%;
|
6616
6836
|
}
|
6617
|
-
.btn-default:hover,
|
6618
|
-
.btn-default:active:hover,
|
6619
6837
|
.btn-default:focus {
|
6838
|
+
background-color: #ffffff;
|
6839
|
+
}
|
6840
|
+
.btn-default:hover,
|
6841
|
+
.btn-default:active:hover {
|
6620
6842
|
background-color: #f0f0f0;
|
6621
6843
|
}
|
6622
6844
|
.btn-default:active {
|
6623
|
-
background-color: #
|
6624
|
-
background-image: -webkit-radial-gradient(circle, #
|
6625
|
-
background-image: -o-radial-gradient(circle, #
|
6626
|
-
background-image: radial-gradient(circle, #
|
6845
|
+
background-color: #e0e0e0;
|
6846
|
+
background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
|
6847
|
+
background-image: -o-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
|
6848
|
+
background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
|
6627
6849
|
background-repeat: no-repeat;
|
6628
6850
|
-webkit-background-size: 1000% 1000%;
|
6629
6851
|
background-size: 1000%;
|
6630
|
-
-webkit-box-shadow: 2px 2px
|
6631
|
-
box-shadow: 2px 2px
|
6852
|
+
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6853
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6632
6854
|
}
|
6633
6855
|
.btn-primary {
|
6634
6856
|
-webkit-background-size: 200% 200%;
|
6635
6857
|
background-size: 200%;
|
6636
6858
|
background-position: 50%;
|
6637
6859
|
}
|
6638
|
-
.btn-primary:hover,
|
6639
|
-
.btn-primary:active:hover,
|
6640
6860
|
.btn-primary:focus {
|
6861
|
+
background-color: #2196f3;
|
6862
|
+
}
|
6863
|
+
.btn-primary:hover,
|
6864
|
+
.btn-primary:active:hover {
|
6641
6865
|
background-color: #0d87e9;
|
6642
6866
|
}
|
6643
6867
|
.btn-primary:active {
|
6644
|
-
background-color: #
|
6645
|
-
background-image: -webkit-radial-gradient(circle, #
|
6646
|
-
background-image: -o-radial-gradient(circle, #
|
6647
|
-
background-image: radial-gradient(circle, #
|
6868
|
+
background-color: #0b76cc;
|
6869
|
+
background-image: -webkit-radial-gradient(circle, #0b76cc 10%, #2196f3 11%);
|
6870
|
+
background-image: -o-radial-gradient(circle, #0b76cc 10%, #2196f3 11%);
|
6871
|
+
background-image: radial-gradient(circle, #0b76cc 10%, #2196f3 11%);
|
6648
6872
|
background-repeat: no-repeat;
|
6649
6873
|
-webkit-background-size: 1000% 1000%;
|
6650
6874
|
background-size: 1000%;
|
6651
|
-
-webkit-box-shadow: 2px 2px
|
6652
|
-
box-shadow: 2px 2px
|
6875
|
+
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6876
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6653
6877
|
}
|
6654
6878
|
.btn-success {
|
6655
6879
|
-webkit-background-size: 200% 200%;
|
6656
6880
|
background-size: 200%;
|
6657
6881
|
background-position: 50%;
|
6658
6882
|
}
|
6659
|
-
.btn-success:hover,
|
6660
|
-
.btn-success:active:hover,
|
6661
6883
|
.btn-success:focus {
|
6884
|
+
background-color: #4caf50;
|
6885
|
+
}
|
6886
|
+
.btn-success:hover,
|
6887
|
+
.btn-success:active:hover {
|
6662
6888
|
background-color: #439a46;
|
6663
6889
|
}
|
6664
6890
|
.btn-success:active {
|
6665
|
-
background-color: #
|
6666
|
-
background-image: -webkit-radial-gradient(circle, #
|
6667
|
-
background-image: -o-radial-gradient(circle, #
|
6668
|
-
background-image: radial-gradient(circle, #
|
6891
|
+
background-color: #39843c;
|
6892
|
+
background-image: -webkit-radial-gradient(circle, #39843c 10%, #4caf50 11%);
|
6893
|
+
background-image: -o-radial-gradient(circle, #39843c 10%, #4caf50 11%);
|
6894
|
+
background-image: radial-gradient(circle, #39843c 10%, #4caf50 11%);
|
6669
6895
|
background-repeat: no-repeat;
|
6670
6896
|
-webkit-background-size: 1000% 1000%;
|
6671
6897
|
background-size: 1000%;
|
6672
|
-
-webkit-box-shadow: 2px 2px
|
6673
|
-
box-shadow: 2px 2px
|
6898
|
+
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6899
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6674
6900
|
}
|
6675
6901
|
.btn-info {
|
6676
6902
|
-webkit-background-size: 200% 200%;
|
6677
6903
|
background-size: 200%;
|
6678
6904
|
background-position: 50%;
|
6679
6905
|
}
|
6680
|
-
.btn-info:hover,
|
6681
|
-
.btn-info:active:hover,
|
6682
6906
|
.btn-info:focus {
|
6907
|
+
background-color: #9c27b0;
|
6908
|
+
}
|
6909
|
+
.btn-info:hover,
|
6910
|
+
.btn-info:active:hover {
|
6683
6911
|
background-color: #862197;
|
6684
6912
|
}
|
6685
6913
|
.btn-info:active {
|
6686
|
-
background-color: #
|
6687
|
-
background-image: -webkit-radial-gradient(circle, #
|
6688
|
-
background-image: -o-radial-gradient(circle, #
|
6689
|
-
background-image: radial-gradient(circle, #
|
6914
|
+
background-color: #701c7e;
|
6915
|
+
background-image: -webkit-radial-gradient(circle, #701c7e 10%, #9c27b0 11%);
|
6916
|
+
background-image: -o-radial-gradient(circle, #701c7e 10%, #9c27b0 11%);
|
6917
|
+
background-image: radial-gradient(circle, #701c7e 10%, #9c27b0 11%);
|
6690
6918
|
background-repeat: no-repeat;
|
6691
6919
|
-webkit-background-size: 1000% 1000%;
|
6692
6920
|
background-size: 1000%;
|
6693
|
-
-webkit-box-shadow: 2px 2px
|
6694
|
-
box-shadow: 2px 2px
|
6921
|
+
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6922
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6695
6923
|
}
|
6696
6924
|
.btn-warning {
|
6697
6925
|
-webkit-background-size: 200% 200%;
|
6698
6926
|
background-size: 200%;
|
6699
6927
|
background-position: 50%;
|
6700
6928
|
}
|
6701
|
-
.btn-warning:hover,
|
6702
|
-
.btn-warning:active:hover,
|
6703
6929
|
.btn-warning:focus {
|
6930
|
+
background-color: #ff9800;
|
6931
|
+
}
|
6932
|
+
.btn-warning:hover,
|
6933
|
+
.btn-warning:active:hover {
|
6704
6934
|
background-color: #e08600;
|
6705
6935
|
}
|
6706
6936
|
.btn-warning:active {
|
6707
|
-
background-color: #
|
6708
|
-
background-image: -webkit-radial-gradient(circle, #
|
6709
|
-
background-image: -o-radial-gradient(circle, #
|
6710
|
-
background-image: radial-gradient(circle, #
|
6937
|
+
background-color: #c27400;
|
6938
|
+
background-image: -webkit-radial-gradient(circle, #c27400 10%, #ff9800 11%);
|
6939
|
+
background-image: -o-radial-gradient(circle, #c27400 10%, #ff9800 11%);
|
6940
|
+
background-image: radial-gradient(circle, #c27400 10%, #ff9800 11%);
|
6711
6941
|
background-repeat: no-repeat;
|
6712
6942
|
-webkit-background-size: 1000% 1000%;
|
6713
6943
|
background-size: 1000%;
|
6714
|
-
-webkit-box-shadow: 2px 2px
|
6715
|
-
box-shadow: 2px 2px
|
6944
|
+
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6945
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6716
6946
|
}
|
6717
6947
|
.btn-danger {
|
6718
6948
|
-webkit-background-size: 200% 200%;
|
6719
6949
|
background-size: 200%;
|
6720
6950
|
background-position: 50%;
|
6721
6951
|
}
|
6722
|
-
.btn-danger:hover,
|
6723
|
-
.btn-danger:active:hover,
|
6724
6952
|
.btn-danger:focus {
|
6953
|
+
background-color: #e51c23;
|
6954
|
+
}
|
6955
|
+
.btn-danger:hover,
|
6956
|
+
.btn-danger:active:hover {
|
6725
6957
|
background-color: #cb171e;
|
6726
6958
|
}
|
6727
6959
|
.btn-danger:active {
|
6728
|
-
background-color: #
|
6729
|
-
background-image: -webkit-radial-gradient(circle, #
|
6730
|
-
background-image: -o-radial-gradient(circle, #
|
6731
|
-
background-image: radial-gradient(circle, #
|
6960
|
+
background-color: #b0141a;
|
6961
|
+
background-image: -webkit-radial-gradient(circle, #b0141a 10%, #e51c23 11%);
|
6962
|
+
background-image: -o-radial-gradient(circle, #b0141a 10%, #e51c23 11%);
|
6963
|
+
background-image: radial-gradient(circle, #b0141a 10%, #e51c23 11%);
|
6732
6964
|
background-repeat: no-repeat;
|
6733
6965
|
-webkit-background-size: 1000% 1000%;
|
6734
6966
|
background-size: 1000%;
|
6735
|
-
-webkit-box-shadow: 2px 2px
|
6736
|
-
box-shadow: 2px 2px
|
6967
|
+
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6968
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6969
|
+
}
|
6970
|
+
.btn-link {
|
6971
|
+
-webkit-background-size: 200% 200%;
|
6972
|
+
background-size: 200%;
|
6973
|
+
background-position: 50%;
|
6974
|
+
}
|
6975
|
+
.btn-link:focus {
|
6976
|
+
background-color: #ffffff;
|
6977
|
+
}
|
6978
|
+
.btn-link:hover,
|
6979
|
+
.btn-link:active:hover {
|
6980
|
+
background-color: #f0f0f0;
|
6981
|
+
}
|
6982
|
+
.btn-link:active {
|
6983
|
+
background-color: #e0e0e0;
|
6984
|
+
background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
|
6985
|
+
background-image: -o-radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
|
6986
|
+
background-image: radial-gradient(circle, #e0e0e0 10%, #ffffff 11%);
|
6987
|
+
background-repeat: no-repeat;
|
6988
|
+
-webkit-background-size: 1000% 1000%;
|
6989
|
+
background-size: 1000%;
|
6990
|
+
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6991
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
|
6737
6992
|
}
|
6738
6993
|
.btn {
|
6739
6994
|
text-transform: uppercase;
|
6740
|
-
border
|
6741
|
-
|
6742
|
-
|
6743
|
-
|
6744
|
-
-
|
6745
|
-
|
6746
|
-
transition: all 0.2s;
|
6995
|
+
border: none;
|
6996
|
+
-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
|
6997
|
+
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
|
6998
|
+
-webkit-transition: all 0.4s;
|
6999
|
+
-o-transition: all 0.4s;
|
7000
|
+
transition: all 0.4s;
|
6747
7001
|
}
|
6748
7002
|
.btn-link {
|
7003
|
+
border-radius: 3px;
|
6749
7004
|
-webkit-box-shadow: none;
|
6750
7005
|
box-shadow: none;
|
7006
|
+
color: #444444;
|
6751
7007
|
}
|
6752
7008
|
.btn-link:hover,
|
6753
7009
|
.btn-link:focus {
|
6754
|
-
|
7010
|
+
-webkit-box-shadow: none;
|
7011
|
+
box-shadow: none;
|
7012
|
+
color: #444444;
|
6755
7013
|
text-decoration: none;
|
6756
7014
|
}
|
6757
7015
|
.btn-default.disabled {
|
6758
|
-
|
7016
|
+
background-color: rgba(0, 0, 0, 0.1);
|
7017
|
+
color: rgba(0, 0, 0, 0.4);
|
7018
|
+
opacity: 1;
|
6759
7019
|
}
|
6760
7020
|
.btn-group .btn + .btn,
|
6761
7021
|
.btn-group .btn + .btn-group,
|
@@ -6772,7 +7032,6 @@ button.close {
|
|
6772
7032
|
body {
|
6773
7033
|
-webkit-font-smoothing: antialiased;
|
6774
7034
|
letter-spacing: .1px;
|
6775
|
-
text-rendering: optimizeLegibility;
|
6776
7035
|
}
|
6777
7036
|
p {
|
6778
7037
|
margin: 0 0 1em;
|
@@ -6781,13 +7040,19 @@ input,
|
|
6781
7040
|
button {
|
6782
7041
|
-webkit-font-smoothing: antialiased;
|
6783
7042
|
letter-spacing: .1px;
|
6784
|
-
text-rendering: optimizeLegibility;
|
6785
7043
|
}
|
6786
7044
|
a {
|
6787
7045
|
-webkit-transition: all 0.2s;
|
6788
7046
|
-o-transition: all 0.2s;
|
6789
7047
|
transition: all 0.2s;
|
6790
7048
|
}
|
7049
|
+
.table-hover > tbody > tr,
|
7050
|
+
.table-hover > tbody > tr > th,
|
7051
|
+
.table-hover > tbody > tr > td {
|
7052
|
+
-webkit-transition: all 0.2s;
|
7053
|
+
-o-transition: all 0.2s;
|
7054
|
+
transition: all 0.2s;
|
7055
|
+
}
|
6791
7056
|
label {
|
6792
7057
|
font-weight: normal;
|
6793
7058
|
}
|
@@ -6943,9 +7208,9 @@ input[type="radio"],
|
|
6943
7208
|
.radio input[type="radio"],
|
6944
7209
|
.radio-inline input[type="radio"] {
|
6945
7210
|
position: relative;
|
6946
|
-
margin-top:
|
7211
|
+
margin-top: 6px;
|
6947
7212
|
margin-right: 4px;
|
6948
|
-
vertical-align:
|
7213
|
+
vertical-align: top;
|
6949
7214
|
border: none;
|
6950
7215
|
background-color: transparent;
|
6951
7216
|
-webkit-appearance: none;
|
@@ -6967,7 +7232,6 @@ input[type="radio"]:after,
|
|
6967
7232
|
display: block;
|
6968
7233
|
width: 18px;
|
6969
7234
|
height: 18px;
|
6970
|
-
margin-top: -3px;
|
6971
7235
|
border-radius: 50%;
|
6972
7236
|
-webkit-transition: 240ms;
|
6973
7237
|
-o-transition: 240ms;
|
@@ -6978,7 +7242,7 @@ input[type="radio"]:before,
|
|
6978
7242
|
.radio-inline input[type="radio"]:before {
|
6979
7243
|
position: absolute;
|
6980
7244
|
left: 0;
|
6981
|
-
top:
|
7245
|
+
top: -3px;
|
6982
7246
|
background-color: #2196f3;
|
6983
7247
|
-webkit-transform: scale(0);
|
6984
7248
|
-ms-transform: scale(0);
|
@@ -6988,6 +7252,8 @@ input[type="radio"]:before,
|
|
6988
7252
|
input[type="radio"]:after,
|
6989
7253
|
.radio input[type="radio"]:after,
|
6990
7254
|
.radio-inline input[type="radio"]:after {
|
7255
|
+
position: relative;
|
7256
|
+
top: -3px;
|
6991
7257
|
border: 2px solid #666666;
|
6992
7258
|
}
|
6993
7259
|
input[type="radio"]:checked:before,
|
@@ -7020,8 +7286,8 @@ input[type="checkbox"],
|
|
7020
7286
|
.checkbox input[type="checkbox"],
|
7021
7287
|
.checkbox-inline input[type="checkbox"] {
|
7022
7288
|
position: relative;
|
7023
|
-
vertical-align: -4px;
|
7024
7289
|
border: none;
|
7290
|
+
margin-bottom: -4px;
|
7025
7291
|
-webkit-appearance: none;
|
7026
7292
|
appearance: none;
|
7027
7293
|
cursor: pointer;
|
@@ -7031,6 +7297,11 @@ input[type="checkbox"]:focus,
|
|
7031
7297
|
.checkbox-inline input[type="checkbox"]:focus {
|
7032
7298
|
outline: none;
|
7033
7299
|
}
|
7300
|
+
input[type="checkbox"]:focus:after,
|
7301
|
+
.checkbox input[type="checkbox"]:focus:after,
|
7302
|
+
.checkbox-inline input[type="checkbox"]:focus:after {
|
7303
|
+
border-color: #2196f3;
|
7304
|
+
}
|
7034
7305
|
input[type="checkbox"]:after,
|
7035
7306
|
.checkbox input[type="checkbox"]:after,
|
7036
7307
|
.checkbox-inline input[type="checkbox"]:after {
|
@@ -7083,25 +7354,44 @@ input[type="checkbox"]:disabled:checked:after,
|
|
7083
7354
|
}
|
7084
7355
|
.has-warning input:not([type=checkbox]),
|
7085
7356
|
.has-warning .form-control,
|
7357
|
+
.has-warning input.form-control[readonly],
|
7358
|
+
.has-warning input[type=text][readonly],
|
7359
|
+
.has-warning [type=text].form-control[readonly],
|
7086
7360
|
.has-warning input:not([type=checkbox]):focus,
|
7087
7361
|
.has-warning .form-control:focus {
|
7362
|
+
border-bottom: none;
|
7088
7363
|
-webkit-box-shadow: inset 0 -2px 0 #ff9800;
|
7089
7364
|
box-shadow: inset 0 -2px 0 #ff9800;
|
7090
7365
|
}
|
7091
7366
|
.has-error input:not([type=checkbox]),
|
7092
7367
|
.has-error .form-control,
|
7368
|
+
.has-error input.form-control[readonly],
|
7369
|
+
.has-error input[type=text][readonly],
|
7370
|
+
.has-error [type=text].form-control[readonly],
|
7093
7371
|
.has-error input:not([type=checkbox]):focus,
|
7094
7372
|
.has-error .form-control:focus {
|
7373
|
+
border-bottom: none;
|
7095
7374
|
-webkit-box-shadow: inset 0 -2px 0 #e51c23;
|
7096
7375
|
box-shadow: inset 0 -2px 0 #e51c23;
|
7097
7376
|
}
|
7098
7377
|
.has-success input:not([type=checkbox]),
|
7099
7378
|
.has-success .form-control,
|
7379
|
+
.has-success input.form-control[readonly],
|
7380
|
+
.has-success input[type=text][readonly],
|
7381
|
+
.has-success [type=text].form-control[readonly],
|
7100
7382
|
.has-success input:not([type=checkbox]):focus,
|
7101
7383
|
.has-success .form-control:focus {
|
7384
|
+
border-bottom: none;
|
7102
7385
|
-webkit-box-shadow: inset 0 -2px 0 #4caf50;
|
7103
7386
|
box-shadow: inset 0 -2px 0 #4caf50;
|
7104
7387
|
}
|
7388
|
+
.has-warning .input-group-addon,
|
7389
|
+
.has-error .input-group-addon,
|
7390
|
+
.has-success .input-group-addon {
|
7391
|
+
color: #666666;
|
7392
|
+
border-color: transparent;
|
7393
|
+
background-color: transparent;
|
7394
|
+
}
|
7105
7395
|
.nav-tabs > li > a,
|
7106
7396
|
.nav-tabs > li > a:focus {
|
7107
7397
|
margin-right: 0;
|
@@ -7139,14 +7429,17 @@ input[type="checkbox"]:disabled:checked:after,
|
|
7139
7429
|
}
|
7140
7430
|
.nav-tabs.nav-justified > li > a,
|
7141
7431
|
.nav-tabs.nav-justified > li > a:hover,
|
7432
|
+
.nav-tabs.nav-justified > li > a:focus,
|
7142
7433
|
.nav-tabs.nav-justified > .active > a,
|
7143
|
-
.nav-tabs.nav-justified > .active > a:hover
|
7434
|
+
.nav-tabs.nav-justified > .active > a:hover,
|
7435
|
+
.nav-tabs.nav-justified > .active > a:focus {
|
7144
7436
|
border: none;
|
7145
7437
|
}
|
7146
7438
|
.nav-tabs .dropdown-menu {
|
7147
7439
|
margin-top: 0;
|
7148
7440
|
}
|
7149
7441
|
.dropdown-menu {
|
7442
|
+
margin-top: 0;
|
7150
7443
|
border: none;
|
7151
7444
|
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
7152
7445
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
@@ -7221,6 +7514,9 @@ input[type="checkbox"]:disabled:checked:after,
|
|
7221
7514
|
font-weight: 300;
|
7222
7515
|
line-height: 24px;
|
7223
7516
|
opacity: 0.6;
|
7517
|
+
-webkit-transition: all 0.2s;
|
7518
|
+
-o-transition: all 0.2s;
|
7519
|
+
transition: all 0.2s;
|
7224
7520
|
}
|
7225
7521
|
.close:hover {
|
7226
7522
|
opacity: 1;
|