rails_email_preview 0.2.8 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +4 -2
- data/MIT-LICENSE +1 -1
- data/README.md +3 -2
- data/Rakefile +7 -19
- data/app/assets/javascripts/rails_email_preview/application.js.coffee +1 -0
- data/app/assets/stylesheets/rails_email_preview/_bootstrap.css.scss +1923 -1523
- data/app/assets/stylesheets/rails_email_preview/_bootstrap_theme.css.scss +384 -0
- data/app/assets/stylesheets/rails_email_preview/application.css.sass +1 -0
- data/app/views/layouts/rails_email_preview/application.html.slim +2 -1
- data/config/initializers/rails_email_preview.rb +2 -2
- data/config/locales/rep.en.yml +1 -0
- data/lib/rails_email_preview.rb +2 -1
- data/lib/rails_email_preview/version.rb +1 -1
- metadata +20 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37429c25c79cc3521d73fd094b946a741c9637b2
|
4
|
+
data.tar.gz: 794cf5bcd0462c1017692c7ff6a05480dd840ad3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b53a55a392237946c38ca1a4c10e859fa7dd8127be1d2dd944717cbf0c6db32e59eeea55ccf91d6a7ba7628a0e5f9d23321b0e7aa771b1aa7e07dec254515c9
|
7
|
+
data.tar.gz: b7deed111d4fd2c3c04e8823cf3cae7efbebbf5cf54c27f4dc13c7fe712e9e2f9a55fb665f57975d44ece9feb1d8ddf713ced42e3fef12126692d799933ad692
|
data/Gemfile
CHANGED
@@ -3,8 +3,10 @@ source "http://rubygems.org"
|
|
3
3
|
gemspec
|
4
4
|
|
5
5
|
group :development, :test do
|
6
|
-
gem
|
7
|
-
gem
|
6
|
+
gem 'capybara', '>= 0.4.0'
|
7
|
+
gem 'rspec', '2.12.0' #, git: 'https://github.com/rspec/rspec'
|
8
|
+
gem 'rspec-rails' #, git: 'https://github.com/rspec/rspec-rails'
|
9
|
+
gem 'poltergeist', git: 'https://github.com/jonleighton/poltergeist'
|
8
10
|
# a debugger that works with MRI 2.0.0
|
9
11
|
gem 'byebug', platforms: :ruby_20
|
10
12
|
end
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Rails Email Preview
|
1
|
+
Rails Email Preview [](https://travis-ci.org/glebm/rails_email_preview) [](http://badge.fury.io/rb/rails_email_preview)
|
2
2
|
================================
|
3
3
|
|
4
4
|
A Rails Engine to preview plain text and html email in your browser. Compatible with Rails 3 and 4.
|
@@ -112,6 +112,7 @@ When linking to REP pages you can pass `email_locale` to set the locale for rend
|
|
112
112
|
If you are using `Resque::Mailer` or `Devise::Async`, you can automatically add I18n.locale information when the mail job is scheduled
|
113
113
|
[with this initializer](https://gist.github.com/glebm/5725347).
|
114
114
|
|
115
|
+
REP displays too many locales? Make sure to set `config.i18n.available_locales`, since it defaults to *all* locales in Rails.
|
115
116
|
|
116
117
|
Views
|
117
118
|
---------------------
|
@@ -119,7 +120,7 @@ Views
|
|
119
120
|
You can render all REP views inside your app layout (this will need styling to look nice if you don't use bootstrap):
|
120
121
|
|
121
122
|
# # Use admin layout with REP:
|
122
|
-
# RailsEmailPreview::
|
123
|
+
# RailsEmailPreview::EmailsController.layout 'admin'
|
123
124
|
# # If you are using a custom layout, you will want to make app routes available to REP:
|
124
125
|
# Rails.application.config.to_prepare { RailsEmailPreview.inline_main_app_routes! }
|
125
126
|
|
data/Rakefile
CHANGED
@@ -1,29 +1,17 @@
|
|
1
1
|
# encoding: UTF-8
|
2
|
-
require 'rubygems'
|
3
2
|
begin
|
4
3
|
require 'bundler/setup'
|
5
4
|
rescue LoadError
|
6
5
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
7
6
|
end
|
8
7
|
|
9
|
-
|
10
|
-
|
8
|
+
# Load dummy app tasks
|
9
|
+
APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
|
10
|
+
load 'rails/tasks/engine.rake'
|
11
11
|
|
12
|
-
|
12
|
+
Bundler::GemHelper.install_tasks
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
t.libs << 'test'
|
17
|
-
t.pattern = 'test/**/*_test.rb'
|
18
|
-
t.verbose = false
|
19
|
-
end
|
20
|
-
|
21
|
-
task :default => :test
|
14
|
+
require 'rspec/core/rake_task'
|
15
|
+
RSpec::Core::RakeTask.new(:spec)
|
22
16
|
|
23
|
-
|
24
|
-
rdoc.rdoc_dir = 'rdoc'
|
25
|
-
rdoc.title = 'RailsEmailPreview'
|
26
|
-
rdoc.options << '--line-numbers' << '--inline-source'
|
27
|
-
rdoc.rdoc_files.include('README.rdoc')
|
28
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
29
|
-
end
|
17
|
+
task default: :spec
|
@@ -0,0 +1 @@
|
|
1
|
+
#= require turbolinks
|
@@ -43,7 +43,7 @@ audio:not([controls]) {
|
|
43
43
|
html {
|
44
44
|
font-family: sans-serif;
|
45
45
|
-webkit-text-size-adjust: 100%;
|
46
|
-
|
46
|
+
-ms-text-size-adjust: 100%;
|
47
47
|
}
|
48
48
|
|
49
49
|
body {
|
@@ -80,7 +80,7 @@ dfn {
|
|
80
80
|
hr {
|
81
81
|
height: 0;
|
82
82
|
-moz-box-sizing: content-box;
|
83
|
-
|
83
|
+
box-sizing: content-box;
|
84
84
|
}
|
85
85
|
|
86
86
|
mark {
|
@@ -187,8 +187,8 @@ input[type="radio"] {
|
|
187
187
|
|
188
188
|
input[type="search"] {
|
189
189
|
-webkit-box-sizing: content-box;
|
190
|
-
|
191
|
-
|
190
|
+
-moz-box-sizing: content-box;
|
191
|
+
box-sizing: content-box;
|
192
192
|
-webkit-appearance: textfield;
|
193
193
|
}
|
194
194
|
|
@@ -290,8 +290,8 @@ table {
|
|
290
290
|
*:before,
|
291
291
|
*:after {
|
292
292
|
-webkit-box-sizing: border-box;
|
293
|
-
|
294
|
-
|
293
|
+
-moz-box-sizing: border-box;
|
294
|
+
box-sizing: border-box;
|
295
295
|
}
|
296
296
|
|
297
297
|
html {
|
@@ -354,6 +354,19 @@ img {
|
|
354
354
|
border-radius: 6px;
|
355
355
|
}
|
356
356
|
|
357
|
+
.img-thumbnail {
|
358
|
+
display: inline-block;
|
359
|
+
height: auto;
|
360
|
+
max-width: 100%;
|
361
|
+
padding: 4px;
|
362
|
+
line-height: 1.428571429;
|
363
|
+
background-color: #ffffff;
|
364
|
+
border: 1px solid #dddddd;
|
365
|
+
border-radius: 4px;
|
366
|
+
-webkit-transition: all 0.2s ease-in-out;
|
367
|
+
transition: all 0.2s ease-in-out;
|
368
|
+
}
|
369
|
+
|
357
370
|
.img-circle {
|
358
371
|
border-radius: 50%;
|
359
372
|
}
|
@@ -487,12 +500,12 @@ h6 {
|
|
487
500
|
|
488
501
|
h1,
|
489
502
|
.h1 {
|
490
|
-
font-size:
|
503
|
+
font-size: 36px;
|
491
504
|
}
|
492
505
|
|
493
506
|
h2,
|
494
507
|
.h2 {
|
495
|
-
font-size:
|
508
|
+
font-size: 30px;
|
496
509
|
}
|
497
510
|
|
498
511
|
h3,
|
@@ -733,6 +746,8 @@ pre code {
|
|
733
746
|
}
|
734
747
|
|
735
748
|
.container {
|
749
|
+
padding-right: 15px;
|
750
|
+
padding-left: 15px;
|
736
751
|
margin-right: auto;
|
737
752
|
margin-left: auto;
|
738
753
|
}
|
@@ -757,6 +772,11 @@ pre code {
|
|
757
772
|
clear: both;
|
758
773
|
}
|
759
774
|
|
775
|
+
.row {
|
776
|
+
margin-right: -15px;
|
777
|
+
margin-left: -15px;
|
778
|
+
}
|
779
|
+
|
760
780
|
.row:before,
|
761
781
|
.row:after {
|
762
782
|
display: table;
|
@@ -777,18 +797,6 @@ pre code {
|
|
777
797
|
clear: both;
|
778
798
|
}
|
779
799
|
|
780
|
-
@media (min-width: 768px) {
|
781
|
-
.container .row {
|
782
|
-
margin-right: -15px;
|
783
|
-
margin-left: -15px;
|
784
|
-
}
|
785
|
-
}
|
786
|
-
|
787
|
-
.row .row {
|
788
|
-
margin-right: -15px;
|
789
|
-
margin-left: -15px;
|
790
|
-
}
|
791
|
-
|
792
800
|
.col-xs-1,
|
793
801
|
.col-xs-2,
|
794
802
|
.col-xs-3,
|
@@ -907,7 +915,7 @@ pre code {
|
|
907
915
|
|
908
916
|
@media (min-width: 768px) {
|
909
917
|
.container {
|
910
|
-
max-width:
|
918
|
+
max-width: 750px;
|
911
919
|
}
|
912
920
|
.col-sm-1,
|
913
921
|
.col-sm-2,
|
@@ -1061,7 +1069,7 @@ pre code {
|
|
1061
1069
|
|
1062
1070
|
@media (min-width: 992px) {
|
1063
1071
|
.container {
|
1064
|
-
max-width:
|
1072
|
+
max-width: 970px;
|
1065
1073
|
}
|
1066
1074
|
.col-md-1,
|
1067
1075
|
.col-md-2,
|
@@ -1112,6 +1120,9 @@ pre code {
|
|
1112
1120
|
.col-md-12 {
|
1113
1121
|
width: 100%;
|
1114
1122
|
}
|
1123
|
+
.col-md-push-0 {
|
1124
|
+
left: auto;
|
1125
|
+
}
|
1115
1126
|
.col-md-push-1 {
|
1116
1127
|
left: 8.333333333333332%;
|
1117
1128
|
}
|
@@ -1145,6 +1156,9 @@ pre code {
|
|
1145
1156
|
.col-md-push-11 {
|
1146
1157
|
left: 91.66666666666666%;
|
1147
1158
|
}
|
1159
|
+
.col-md-pull-0 {
|
1160
|
+
right: auto;
|
1161
|
+
}
|
1148
1162
|
.col-md-pull-1 {
|
1149
1163
|
right: 8.333333333333332%;
|
1150
1164
|
}
|
@@ -1178,6 +1192,9 @@ pre code {
|
|
1178
1192
|
.col-md-pull-11 {
|
1179
1193
|
right: 91.66666666666666%;
|
1180
1194
|
}
|
1195
|
+
.col-md-offset-0 {
|
1196
|
+
margin-left: 0;
|
1197
|
+
}
|
1181
1198
|
.col-md-offset-1 {
|
1182
1199
|
margin-left: 8.333333333333332%;
|
1183
1200
|
}
|
@@ -1215,7 +1232,7 @@ pre code {
|
|
1215
1232
|
|
1216
1233
|
@media (min-width: 1200px) {
|
1217
1234
|
.container {
|
1218
|
-
max-width:
|
1235
|
+
max-width: 1170px;
|
1219
1236
|
}
|
1220
1237
|
.col-lg-1,
|
1221
1238
|
.col-lg-2,
|
@@ -1266,6 +1283,9 @@ pre code {
|
|
1266
1283
|
.col-lg-12 {
|
1267
1284
|
width: 100%;
|
1268
1285
|
}
|
1286
|
+
.col-lg-push-0 {
|
1287
|
+
left: auto;
|
1288
|
+
}
|
1269
1289
|
.col-lg-push-1 {
|
1270
1290
|
left: 8.333333333333332%;
|
1271
1291
|
}
|
@@ -1299,6 +1319,9 @@ pre code {
|
|
1299
1319
|
.col-lg-push-11 {
|
1300
1320
|
left: 91.66666666666666%;
|
1301
1321
|
}
|
1322
|
+
.col-lg-pull-0 {
|
1323
|
+
right: auto;
|
1324
|
+
}
|
1302
1325
|
.col-lg-pull-1 {
|
1303
1326
|
right: 8.333333333333332%;
|
1304
1327
|
}
|
@@ -1332,6 +1355,9 @@ pre code {
|
|
1332
1355
|
.col-lg-pull-11 {
|
1333
1356
|
right: 91.66666666666666%;
|
1334
1357
|
}
|
1358
|
+
.col-lg-offset-0 {
|
1359
|
+
margin-left: 0;
|
1360
|
+
}
|
1335
1361
|
.col-lg-offset-1 {
|
1336
1362
|
margin-left: 8.333333333333332%;
|
1337
1363
|
}
|
@@ -1395,6 +1421,7 @@ th {
|
|
1395
1421
|
|
1396
1422
|
.table thead > tr > th {
|
1397
1423
|
vertical-align: bottom;
|
1424
|
+
border-bottom: 2px solid #dddddd;
|
1398
1425
|
}
|
1399
1426
|
|
1400
1427
|
.table caption + thead tr:first-child th,
|
@@ -1436,6 +1463,11 @@ th {
|
|
1436
1463
|
border: 1px solid #dddddd;
|
1437
1464
|
}
|
1438
1465
|
|
1466
|
+
.table-bordered > thead > tr > th,
|
1467
|
+
.table-bordered > thead > tr > td {
|
1468
|
+
border-bottom-width: 2px;
|
1469
|
+
}
|
1470
|
+
|
1439
1471
|
.table-striped > tbody > tr:nth-child(odd) > td,
|
1440
1472
|
.table-striped > tbody > tr:nth-child(odd) > th {
|
1441
1473
|
background-color: #f9f9f9;
|
@@ -1446,13 +1478,13 @@ th {
|
|
1446
1478
|
background-color: #f5f5f5;
|
1447
1479
|
}
|
1448
1480
|
|
1449
|
-
table col[class
|
1481
|
+
table col[class*="col-"] {
|
1450
1482
|
display: table-column;
|
1451
1483
|
float: none;
|
1452
1484
|
}
|
1453
1485
|
|
1454
|
-
table td[class
|
1455
|
-
table th[class
|
1486
|
+
table td[class*="col-"],
|
1487
|
+
table th[class*="col-"] {
|
1456
1488
|
display: table-cell;
|
1457
1489
|
float: none;
|
1458
1490
|
}
|
@@ -1490,7 +1522,8 @@ table th[class^="col-"] {
|
|
1490
1522
|
|
1491
1523
|
.table-hover > tbody > tr > td.success:hover,
|
1492
1524
|
.table-hover > tbody > tr > th.success:hover,
|
1493
|
-
.table-hover > tbody > tr.success:hover > td
|
1525
|
+
.table-hover > tbody > tr.success:hover > td,
|
1526
|
+
.table-hover > tbody > tr.success:hover > th {
|
1494
1527
|
background-color: #d0e9c6;
|
1495
1528
|
border-color: #c9e2b3;
|
1496
1529
|
}
|
@@ -1513,7 +1546,8 @@ table th[class^="col-"] {
|
|
1513
1546
|
|
1514
1547
|
.table-hover > tbody > tr > td.danger:hover,
|
1515
1548
|
.table-hover > tbody > tr > th.danger:hover,
|
1516
|
-
.table-hover > tbody > tr.danger:hover > td
|
1549
|
+
.table-hover > tbody > tr.danger:hover > td,
|
1550
|
+
.table-hover > tbody > tr.danger:hover > th {
|
1517
1551
|
background-color: #ebcccc;
|
1518
1552
|
border-color: #e6c1c7;
|
1519
1553
|
}
|
@@ -1536,11 +1570,61 @@ table th[class^="col-"] {
|
|
1536
1570
|
|
1537
1571
|
.table-hover > tbody > tr > td.warning:hover,
|
1538
1572
|
.table-hover > tbody > tr > th.warning:hover,
|
1539
|
-
.table-hover > tbody > tr.warning:hover > td
|
1573
|
+
.table-hover > tbody > tr.warning:hover > td,
|
1574
|
+
.table-hover > tbody > tr.warning:hover > th {
|
1540
1575
|
background-color: #faf2cc;
|
1541
1576
|
border-color: #f8e5be;
|
1542
1577
|
}
|
1543
1578
|
|
1579
|
+
@media (max-width: 768px) {
|
1580
|
+
.table-responsive {
|
1581
|
+
width: 100%;
|
1582
|
+
margin-bottom: 15px;
|
1583
|
+
overflow-x: scroll;
|
1584
|
+
overflow-y: hidden;
|
1585
|
+
border: 1px solid #dddddd;
|
1586
|
+
}
|
1587
|
+
.table-responsive > .table {
|
1588
|
+
margin-bottom: 0;
|
1589
|
+
background-color: #fff;
|
1590
|
+
}
|
1591
|
+
.table-responsive > .table > thead > tr > th,
|
1592
|
+
.table-responsive > .table > tbody > tr > th,
|
1593
|
+
.table-responsive > .table > tfoot > tr > th,
|
1594
|
+
.table-responsive > .table > thead > tr > td,
|
1595
|
+
.table-responsive > .table > tbody > tr > td,
|
1596
|
+
.table-responsive > .table > tfoot > tr > td {
|
1597
|
+
white-space: nowrap;
|
1598
|
+
}
|
1599
|
+
.table-responsive > .table-bordered {
|
1600
|
+
border: 0;
|
1601
|
+
}
|
1602
|
+
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
1603
|
+
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
1604
|
+
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
1605
|
+
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
1606
|
+
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
1607
|
+
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
1608
|
+
border-left: 0;
|
1609
|
+
}
|
1610
|
+
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
1611
|
+
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
1612
|
+
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
1613
|
+
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
1614
|
+
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
1615
|
+
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
1616
|
+
border-right: 0;
|
1617
|
+
}
|
1618
|
+
.table-responsive > .table-bordered > thead > tr:last-child > th,
|
1619
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
1620
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
1621
|
+
.table-responsive > .table-bordered > thead > tr:last-child > td,
|
1622
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
1623
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
1624
|
+
border-bottom: 0;
|
1625
|
+
}
|
1626
|
+
}
|
1627
|
+
|
1544
1628
|
fieldset {
|
1545
1629
|
padding: 0;
|
1546
1630
|
margin: 0;
|
@@ -1567,8 +1651,8 @@ label {
|
|
1567
1651
|
|
1568
1652
|
input[type="search"] {
|
1569
1653
|
-webkit-box-sizing: border-box;
|
1570
|
-
|
1571
|
-
|
1654
|
+
-moz-box-sizing: border-box;
|
1655
|
+
box-sizing: border-box;
|
1572
1656
|
}
|
1573
1657
|
|
1574
1658
|
input[type="radio"],
|
@@ -1637,16 +1721,16 @@ input[type="number"]::-webkit-inner-spin-button {
|
|
1637
1721
|
border: 1px solid #cccccc;
|
1638
1722
|
border-radius: 4px;
|
1639
1723
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1640
|
-
|
1724
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1641
1725
|
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
1642
|
-
|
1726
|
+
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
1643
1727
|
}
|
1644
1728
|
|
1645
1729
|
.form-control:focus {
|
1646
1730
|
border-color: #66afe9;
|
1647
1731
|
outline: 0;
|
1648
1732
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
1649
|
-
|
1733
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
1650
1734
|
}
|
1651
1735
|
|
1652
1736
|
.form-control[disabled],
|
@@ -1711,10 +1795,14 @@ textarea.form-control {
|
|
1711
1795
|
margin-left: 10px;
|
1712
1796
|
}
|
1713
1797
|
|
1798
|
+
input[type="radio"][disabled],
|
1799
|
+
input[type="checkbox"][disabled],
|
1714
1800
|
.radio[disabled],
|
1715
1801
|
.radio-inline[disabled],
|
1716
1802
|
.checkbox[disabled],
|
1717
1803
|
.checkbox-inline[disabled],
|
1804
|
+
fieldset[disabled] input[type="radio"],
|
1805
|
+
fieldset[disabled] input[type="checkbox"],
|
1718
1806
|
fieldset[disabled] .radio,
|
1719
1807
|
fieldset[disabled] .radio-inline,
|
1720
1808
|
fieldset[disabled] .checkbox,
|
@@ -1764,13 +1852,13 @@ textarea.input-lg {
|
|
1764
1852
|
.has-warning .form-control {
|
1765
1853
|
border-color: #c09853;
|
1766
1854
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1767
|
-
|
1855
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1768
1856
|
}
|
1769
1857
|
|
1770
1858
|
.has-warning .form-control:focus {
|
1771
1859
|
border-color: #a47e3c;
|
1772
1860
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
1773
|
-
|
1861
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
|
1774
1862
|
}
|
1775
1863
|
|
1776
1864
|
.has-warning .input-group-addon {
|
@@ -1787,13 +1875,13 @@ textarea.input-lg {
|
|
1787
1875
|
.has-error .form-control {
|
1788
1876
|
border-color: #b94a48;
|
1789
1877
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1790
|
-
|
1878
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1791
1879
|
}
|
1792
1880
|
|
1793
1881
|
.has-error .form-control:focus {
|
1794
1882
|
border-color: #953b39;
|
1795
1883
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
1796
|
-
|
1884
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
|
1797
1885
|
}
|
1798
1886
|
|
1799
1887
|
.has-error .input-group-addon {
|
@@ -1810,13 +1898,13 @@ textarea.input-lg {
|
|
1810
1898
|
.has-success .form-control {
|
1811
1899
|
border-color: #468847;
|
1812
1900
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1813
|
-
|
1901
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
1814
1902
|
}
|
1815
1903
|
|
1816
1904
|
.has-success .form-control:focus {
|
1817
1905
|
border-color: #356635;
|
1818
1906
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
1819
|
-
|
1907
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
|
1820
1908
|
}
|
1821
1909
|
|
1822
1910
|
.has-success .input-group-addon {
|
@@ -1826,7 +1914,7 @@ textarea.input-lg {
|
|
1826
1914
|
}
|
1827
1915
|
|
1828
1916
|
.form-control-static {
|
1829
|
-
padding-top:
|
1917
|
+
padding-top: 7px;
|
1830
1918
|
margin-bottom: 0;
|
1831
1919
|
}
|
1832
1920
|
|
@@ -1861,9 +1949,18 @@ textarea.input-lg {
|
|
1861
1949
|
}
|
1862
1950
|
|
1863
1951
|
.form-horizontal .control-label,
|
1952
|
+
.form-horizontal .radio,
|
1953
|
+
.form-horizontal .checkbox,
|
1864
1954
|
.form-horizontal .radio-inline,
|
1865
1955
|
.form-horizontal .checkbox-inline {
|
1866
|
-
padding-top:
|
1956
|
+
padding-top: 7px;
|
1957
|
+
margin-top: 0;
|
1958
|
+
margin-bottom: 0;
|
1959
|
+
}
|
1960
|
+
|
1961
|
+
.form-horizontal .form-group {
|
1962
|
+
margin-right: -15px;
|
1963
|
+
margin-left: -15px;
|
1867
1964
|
}
|
1868
1965
|
|
1869
1966
|
.form-horizontal .form-group:before,
|
@@ -1886,18 +1983,6 @@ textarea.input-lg {
|
|
1886
1983
|
clear: both;
|
1887
1984
|
}
|
1888
1985
|
|
1889
|
-
@media (min-width: 768px) {
|
1890
|
-
.container .form-horizontal .form-group {
|
1891
|
-
margin-right: -15px;
|
1892
|
-
margin-left: -15px;
|
1893
|
-
}
|
1894
|
-
}
|
1895
|
-
|
1896
|
-
.form-horizontal .form-group .row {
|
1897
|
-
margin-right: -15px;
|
1898
|
-
margin-left: -15px;
|
1899
|
-
}
|
1900
|
-
|
1901
1986
|
@media (min-width: 768px) {
|
1902
1987
|
.form-horizontal .control-label {
|
1903
1988
|
text-align: right;
|
@@ -1909,7 +1994,7 @@ textarea.input-lg {
|
|
1909
1994
|
padding: 6px 12px;
|
1910
1995
|
margin-bottom: 0;
|
1911
1996
|
font-size: 14px;
|
1912
|
-
font-weight:
|
1997
|
+
font-weight: normal;
|
1913
1998
|
line-height: 1.428571429;
|
1914
1999
|
text-align: center;
|
1915
2000
|
white-space: nowrap;
|
@@ -1918,10 +2003,10 @@ textarea.input-lg {
|
|
1918
2003
|
border: 1px solid transparent;
|
1919
2004
|
border-radius: 4px;
|
1920
2005
|
-webkit-user-select: none;
|
1921
|
-
|
1922
|
-
|
1923
|
-
|
1924
|
-
|
2006
|
+
-moz-user-select: none;
|
2007
|
+
-ms-user-select: none;
|
2008
|
+
-o-user-select: none;
|
2009
|
+
user-select: none;
|
1925
2010
|
}
|
1926
2011
|
|
1927
2012
|
.btn:focus {
|
@@ -1938,9 +2023,10 @@ textarea.input-lg {
|
|
1938
2023
|
|
1939
2024
|
.btn:active,
|
1940
2025
|
.btn.active {
|
2026
|
+
background-image: none;
|
1941
2027
|
outline: 0;
|
1942
2028
|
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
1943
|
-
|
2029
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
1944
2030
|
}
|
1945
2031
|
|
1946
2032
|
.btn.disabled,
|
@@ -1951,7 +2037,7 @@ fieldset[disabled] .btn {
|
|
1951
2037
|
opacity: 0.65;
|
1952
2038
|
filter: alpha(opacity=65);
|
1953
2039
|
-webkit-box-shadow: none;
|
1954
|
-
|
2040
|
+
box-shadow: none;
|
1955
2041
|
}
|
1956
2042
|
|
1957
2043
|
.btn-default {
|
@@ -1963,12 +2049,19 @@ fieldset[disabled] .btn {
|
|
1963
2049
|
.btn-default:hover,
|
1964
2050
|
.btn-default:focus,
|
1965
2051
|
.btn-default:active,
|
1966
|
-
.btn-default.active
|
2052
|
+
.btn-default.active,
|
2053
|
+
.open .dropdown-toggle.btn-default {
|
1967
2054
|
color: #333333;
|
1968
2055
|
background-color: #ebebeb;
|
1969
2056
|
border-color: #adadad;
|
1970
2057
|
}
|
1971
2058
|
|
2059
|
+
.btn-default:active,
|
2060
|
+
.btn-default.active,
|
2061
|
+
.open .dropdown-toggle.btn-default {
|
2062
|
+
background-image: none;
|
2063
|
+
}
|
2064
|
+
|
1972
2065
|
.btn-default.disabled,
|
1973
2066
|
.btn-default[disabled],
|
1974
2067
|
fieldset[disabled] .btn-default,
|
@@ -1997,12 +2090,19 @@ fieldset[disabled] .btn-default.active {
|
|
1997
2090
|
.btn-primary:hover,
|
1998
2091
|
.btn-primary:focus,
|
1999
2092
|
.btn-primary:active,
|
2000
|
-
.btn-primary.active
|
2093
|
+
.btn-primary.active,
|
2094
|
+
.open .dropdown-toggle.btn-primary {
|
2001
2095
|
color: #ffffff;
|
2002
2096
|
background-color: #3276b1;
|
2003
2097
|
border-color: #285e8e;
|
2004
2098
|
}
|
2005
2099
|
|
2100
|
+
.btn-primary:active,
|
2101
|
+
.btn-primary.active,
|
2102
|
+
.open .dropdown-toggle.btn-primary {
|
2103
|
+
background-image: none;
|
2104
|
+
}
|
2105
|
+
|
2006
2106
|
.btn-primary.disabled,
|
2007
2107
|
.btn-primary[disabled],
|
2008
2108
|
fieldset[disabled] .btn-primary,
|
@@ -2031,12 +2131,19 @@ fieldset[disabled] .btn-primary.active {
|
|
2031
2131
|
.btn-warning:hover,
|
2032
2132
|
.btn-warning:focus,
|
2033
2133
|
.btn-warning:active,
|
2034
|
-
.btn-warning.active
|
2134
|
+
.btn-warning.active,
|
2135
|
+
.open .dropdown-toggle.btn-warning {
|
2035
2136
|
color: #ffffff;
|
2036
2137
|
background-color: #ed9c28;
|
2037
2138
|
border-color: #d58512;
|
2038
2139
|
}
|
2039
2140
|
|
2141
|
+
.btn-warning:active,
|
2142
|
+
.btn-warning.active,
|
2143
|
+
.open .dropdown-toggle.btn-warning {
|
2144
|
+
background-image: none;
|
2145
|
+
}
|
2146
|
+
|
2040
2147
|
.btn-warning.disabled,
|
2041
2148
|
.btn-warning[disabled],
|
2042
2149
|
fieldset[disabled] .btn-warning,
|
@@ -2065,12 +2172,19 @@ fieldset[disabled] .btn-warning.active {
|
|
2065
2172
|
.btn-danger:hover,
|
2066
2173
|
.btn-danger:focus,
|
2067
2174
|
.btn-danger:active,
|
2068
|
-
.btn-danger.active
|
2175
|
+
.btn-danger.active,
|
2176
|
+
.open .dropdown-toggle.btn-danger {
|
2069
2177
|
color: #ffffff;
|
2070
2178
|
background-color: #d2322d;
|
2071
2179
|
border-color: #ac2925;
|
2072
2180
|
}
|
2073
2181
|
|
2182
|
+
.btn-danger:active,
|
2183
|
+
.btn-danger.active,
|
2184
|
+
.open .dropdown-toggle.btn-danger {
|
2185
|
+
background-image: none;
|
2186
|
+
}
|
2187
|
+
|
2074
2188
|
.btn-danger.disabled,
|
2075
2189
|
.btn-danger[disabled],
|
2076
2190
|
fieldset[disabled] .btn-danger,
|
@@ -2099,12 +2213,19 @@ fieldset[disabled] .btn-danger.active {
|
|
2099
2213
|
.btn-success:hover,
|
2100
2214
|
.btn-success:focus,
|
2101
2215
|
.btn-success:active,
|
2102
|
-
.btn-success.active
|
2216
|
+
.btn-success.active,
|
2217
|
+
.open .dropdown-toggle.btn-success {
|
2103
2218
|
color: #ffffff;
|
2104
2219
|
background-color: #47a447;
|
2105
2220
|
border-color: #398439;
|
2106
2221
|
}
|
2107
2222
|
|
2223
|
+
.btn-success:active,
|
2224
|
+
.btn-success.active,
|
2225
|
+
.open .dropdown-toggle.btn-success {
|
2226
|
+
background-image: none;
|
2227
|
+
}
|
2228
|
+
|
2108
2229
|
.btn-success.disabled,
|
2109
2230
|
.btn-success[disabled],
|
2110
2231
|
fieldset[disabled] .btn-success,
|
@@ -2133,12 +2254,19 @@ fieldset[disabled] .btn-success.active {
|
|
2133
2254
|
.btn-info:hover,
|
2134
2255
|
.btn-info:focus,
|
2135
2256
|
.btn-info:active,
|
2136
|
-
.btn-info.active
|
2257
|
+
.btn-info.active,
|
2258
|
+
.open .dropdown-toggle.btn-info {
|
2137
2259
|
color: #ffffff;
|
2138
2260
|
background-color: #39b3d7;
|
2139
2261
|
border-color: #269abc;
|
2140
2262
|
}
|
2141
2263
|
|
2264
|
+
.btn-info:active,
|
2265
|
+
.btn-info.active,
|
2266
|
+
.open .dropdown-toggle.btn-info {
|
2267
|
+
background-image: none;
|
2268
|
+
}
|
2269
|
+
|
2142
2270
|
.btn-info.disabled,
|
2143
2271
|
.btn-info[disabled],
|
2144
2272
|
fieldset[disabled] .btn-info,
|
@@ -2171,7 +2299,7 @@ fieldset[disabled] .btn-info.active {
|
|
2171
2299
|
fieldset[disabled] .btn-link {
|
2172
2300
|
background-color: transparent;
|
2173
2301
|
-webkit-box-shadow: none;
|
2174
|
-
|
2302
|
+
box-shadow: none;
|
2175
2303
|
}
|
2176
2304
|
|
2177
2305
|
.btn-link,
|
@@ -2212,7 +2340,7 @@ fieldset[disabled] .btn-link:focus {
|
|
2212
2340
|
}
|
2213
2341
|
|
2214
2342
|
.btn-xs {
|
2215
|
-
padding:
|
2343
|
+
padding: 1px 5px;
|
2216
2344
|
}
|
2217
2345
|
|
2218
2346
|
.btn-block {
|
@@ -2235,7 +2363,7 @@ input[type="button"].btn-block {
|
|
2235
2363
|
.fade {
|
2236
2364
|
opacity: 0;
|
2237
2365
|
-webkit-transition: opacity 0.15s linear;
|
2238
|
-
|
2366
|
+
transition: opacity 0.15s linear;
|
2239
2367
|
}
|
2240
2368
|
|
2241
2369
|
.fade.in {
|
@@ -2255,161 +2383,7 @@ input[type="button"].btn-block {
|
|
2255
2383
|
height: 0;
|
2256
2384
|
overflow: hidden;
|
2257
2385
|
-webkit-transition: height 0.35s ease;
|
2258
|
-
|
2259
|
-
}
|
2260
|
-
|
2261
|
-
.input-group {
|
2262
|
-
position: relative;
|
2263
|
-
display: table;
|
2264
|
-
border-collapse: separate;
|
2265
|
-
}
|
2266
|
-
|
2267
|
-
.input-group.col {
|
2268
|
-
float: none;
|
2269
|
-
padding-right: 0;
|
2270
|
-
padding-left: 0;
|
2271
|
-
}
|
2272
|
-
|
2273
|
-
.input-group .form-control {
|
2274
|
-
width: 100%;
|
2275
|
-
margin-bottom: 0;
|
2276
|
-
}
|
2277
|
-
|
2278
|
-
.input-group-lg > .form-control,
|
2279
|
-
.input-group-lg > .input-group-addon,
|
2280
|
-
.input-group-lg > .input-group-btn > .btn {
|
2281
|
-
height: 45px;
|
2282
|
-
padding: 10px 16px;
|
2283
|
-
font-size: 18px;
|
2284
|
-
line-height: 1.33;
|
2285
|
-
border-radius: 6px;
|
2286
|
-
}
|
2287
|
-
|
2288
|
-
select.input-group-lg > .form-control,
|
2289
|
-
select.input-group-lg > .input-group-addon,
|
2290
|
-
select.input-group-lg > .input-group-btn > .btn {
|
2291
|
-
height: 45px;
|
2292
|
-
line-height: 45px;
|
2293
|
-
}
|
2294
|
-
|
2295
|
-
textarea.input-group-lg > .form-control,
|
2296
|
-
textarea.input-group-lg > .input-group-addon,
|
2297
|
-
textarea.input-group-lg > .input-group-btn > .btn {
|
2298
|
-
height: auto;
|
2299
|
-
}
|
2300
|
-
|
2301
|
-
.input-group-sm > .form-control,
|
2302
|
-
.input-group-sm > .input-group-addon,
|
2303
|
-
.input-group-sm > .input-group-btn > .btn {
|
2304
|
-
height: 30px;
|
2305
|
-
padding: 5px 10px;
|
2306
|
-
font-size: 12px;
|
2307
|
-
line-height: 1.5;
|
2308
|
-
border-radius: 3px;
|
2309
|
-
}
|
2310
|
-
|
2311
|
-
select.input-group-sm > .form-control,
|
2312
|
-
select.input-group-sm > .input-group-addon,
|
2313
|
-
select.input-group-sm > .input-group-btn > .btn {
|
2314
|
-
height: 30px;
|
2315
|
-
line-height: 30px;
|
2316
|
-
}
|
2317
|
-
|
2318
|
-
textarea.input-group-sm > .form-control,
|
2319
|
-
textarea.input-group-sm > .input-group-addon,
|
2320
|
-
textarea.input-group-sm > .input-group-btn > .btn {
|
2321
|
-
height: auto;
|
2322
|
-
}
|
2323
|
-
|
2324
|
-
.input-group-addon,
|
2325
|
-
.input-group-btn,
|
2326
|
-
.input-group .form-control {
|
2327
|
-
display: table-cell;
|
2328
|
-
}
|
2329
|
-
|
2330
|
-
.input-group-addon:not(:first-child):not(:last-child),
|
2331
|
-
.input-group-btn:not(:first-child):not(:last-child),
|
2332
|
-
.input-group .form-control:not(:first-child):not(:last-child) {
|
2333
|
-
border-radius: 0;
|
2334
|
-
}
|
2335
|
-
|
2336
|
-
.input-group-addon,
|
2337
|
-
.input-group-btn {
|
2338
|
-
width: 1%;
|
2339
|
-
white-space: nowrap;
|
2340
|
-
vertical-align: middle;
|
2341
|
-
}
|
2342
|
-
|
2343
|
-
.input-group-addon {
|
2344
|
-
padding: 6px 12px;
|
2345
|
-
font-size: 14px;
|
2346
|
-
font-weight: normal;
|
2347
|
-
line-height: 1;
|
2348
|
-
text-align: center;
|
2349
|
-
background-color: #eeeeee;
|
2350
|
-
border: 1px solid #cccccc;
|
2351
|
-
border-radius: 4px;
|
2352
|
-
}
|
2353
|
-
|
2354
|
-
.input-group-addon.input-sm {
|
2355
|
-
padding: 5px 10px;
|
2356
|
-
font-size: 12px;
|
2357
|
-
border-radius: 3px;
|
2358
|
-
}
|
2359
|
-
|
2360
|
-
.input-group-addon.input-lg {
|
2361
|
-
padding: 10px 16px;
|
2362
|
-
font-size: 18px;
|
2363
|
-
border-radius: 6px;
|
2364
|
-
}
|
2365
|
-
|
2366
|
-
.input-group-addon input[type="radio"],
|
2367
|
-
.input-group-addon input[type="checkbox"] {
|
2368
|
-
margin-top: 0;
|
2369
|
-
}
|
2370
|
-
|
2371
|
-
.input-group .form-control:first-child,
|
2372
|
-
.input-group-addon:first-child,
|
2373
|
-
.input-group-btn:first-child > .btn,
|
2374
|
-
.input-group-btn:first-child > .dropdown-toggle,
|
2375
|
-
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
|
2376
|
-
border-top-right-radius: 0;
|
2377
|
-
border-bottom-right-radius: 0;
|
2378
|
-
}
|
2379
|
-
|
2380
|
-
.input-group-addon:first-child {
|
2381
|
-
border-right: 0;
|
2382
|
-
}
|
2383
|
-
|
2384
|
-
.input-group .form-control:last-child,
|
2385
|
-
.input-group-addon:last-child,
|
2386
|
-
.input-group-btn:last-child > .btn,
|
2387
|
-
.input-group-btn:last-child > .dropdown-toggle,
|
2388
|
-
.input-group-btn:first-child > .btn:not(:first-child) {
|
2389
|
-
border-bottom-left-radius: 0;
|
2390
|
-
border-top-left-radius: 0;
|
2391
|
-
}
|
2392
|
-
|
2393
|
-
.input-group-addon:last-child {
|
2394
|
-
border-left: 0;
|
2395
|
-
}
|
2396
|
-
|
2397
|
-
.input-group-btn {
|
2398
|
-
position: relative;
|
2399
|
-
white-space: nowrap;
|
2400
|
-
}
|
2401
|
-
|
2402
|
-
.input-group-btn > .btn {
|
2403
|
-
position: relative;
|
2404
|
-
}
|
2405
|
-
|
2406
|
-
.input-group-btn > .btn + .btn {
|
2407
|
-
margin-left: -4px;
|
2408
|
-
}
|
2409
|
-
|
2410
|
-
.input-group-btn > .btn:hover,
|
2411
|
-
.input-group-btn > .btn:active {
|
2412
|
-
z-index: 2;
|
2386
|
+
transition: height 0.35s ease;
|
2413
2387
|
}
|
2414
2388
|
|
2415
2389
|
.caret {
|
@@ -2420,6 +2394,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|
2420
2394
|
vertical-align: middle;
|
2421
2395
|
border-top: 4px solid #000000;
|
2422
2396
|
border-right: 4px solid transparent;
|
2397
|
+
border-bottom: 0 dotted;
|
2423
2398
|
border-left: 4px solid transparent;
|
2424
2399
|
content: "";
|
2425
2400
|
}
|
@@ -2449,7 +2424,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|
2449
2424
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
2450
2425
|
border-radius: 4px;
|
2451
2426
|
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
2452
|
-
|
2427
|
+
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
2453
2428
|
background-clip: padding-box;
|
2454
2429
|
}
|
2455
2430
|
|
@@ -2538,7 +2513,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|
2538
2513
|
|
2539
2514
|
.dropup .caret,
|
2540
2515
|
.navbar-fixed-bottom .dropdown .caret {
|
2541
|
-
border-top: 0;
|
2516
|
+
border-top: 0 dotted;
|
2542
2517
|
border-bottom: 4px solid #000000;
|
2543
2518
|
content: "";
|
2544
2519
|
}
|
@@ -2550,312 +2525,438 @@ textarea.input-group-sm > .input-group-btn > .btn {
|
|
2550
2525
|
margin-bottom: 1px;
|
2551
2526
|
}
|
2552
2527
|
|
2553
|
-
|
2554
|
-
|
2555
|
-
|
2528
|
+
@media (min-width: 768px) {
|
2529
|
+
.navbar-right .dropdown-menu {
|
2530
|
+
right: 0;
|
2531
|
+
left: auto;
|
2532
|
+
}
|
2556
2533
|
}
|
2557
2534
|
|
2558
|
-
.
|
2559
|
-
|
2560
|
-
display: block;
|
2561
|
-
padding: 10px 15px;
|
2562
|
-
margin-bottom: -1px;
|
2563
|
-
background-color: #ffffff;
|
2564
|
-
border: 1px solid #dddddd;
|
2535
|
+
.btn-default .caret {
|
2536
|
+
border-top-color: #333333;
|
2565
2537
|
}
|
2566
2538
|
|
2567
|
-
.
|
2568
|
-
|
2569
|
-
|
2539
|
+
.btn-primary .caret,
|
2540
|
+
.btn-success .caret,
|
2541
|
+
.btn-warning .caret,
|
2542
|
+
.btn-danger .caret,
|
2543
|
+
.btn-info .caret {
|
2544
|
+
border-top-color: #fff;
|
2570
2545
|
}
|
2571
2546
|
|
2572
|
-
.
|
2573
|
-
|
2574
|
-
border-bottom-right-radius: 4px;
|
2575
|
-
border-bottom-left-radius: 4px;
|
2547
|
+
.dropup .btn-default .caret {
|
2548
|
+
border-bottom-color: #333333;
|
2576
2549
|
}
|
2577
2550
|
|
2578
|
-
.
|
2579
|
-
|
2551
|
+
.dropup .btn-primary .caret,
|
2552
|
+
.dropup .btn-success .caret,
|
2553
|
+
.dropup .btn-warning .caret,
|
2554
|
+
.dropup .btn-danger .caret,
|
2555
|
+
.dropup .btn-info .caret {
|
2556
|
+
border-bottom-color: #fff;
|
2580
2557
|
}
|
2581
2558
|
|
2582
|
-
.
|
2583
|
-
|
2559
|
+
.btn-group,
|
2560
|
+
.btn-group-vertical {
|
2561
|
+
position: relative;
|
2562
|
+
display: inline-block;
|
2563
|
+
vertical-align: middle;
|
2584
2564
|
}
|
2585
2565
|
|
2586
|
-
|
2587
|
-
|
2566
|
+
.btn-group > .btn,
|
2567
|
+
.btn-group-vertical > .btn {
|
2568
|
+
position: relative;
|
2569
|
+
float: left;
|
2588
2570
|
}
|
2589
2571
|
|
2590
|
-
|
2591
|
-
|
2572
|
+
.btn-group > .btn:hover,
|
2573
|
+
.btn-group-vertical > .btn:hover,
|
2574
|
+
.btn-group > .btn:focus,
|
2575
|
+
.btn-group-vertical > .btn:focus,
|
2576
|
+
.btn-group > .btn:active,
|
2577
|
+
.btn-group-vertical > .btn:active,
|
2578
|
+
.btn-group > .btn.active,
|
2579
|
+
.btn-group-vertical > .btn.active {
|
2580
|
+
z-index: 2;
|
2592
2581
|
}
|
2593
2582
|
|
2594
|
-
|
2595
|
-
|
2596
|
-
|
2597
|
-
background-color: #f5f5f5;
|
2583
|
+
.btn-group > .btn:focus,
|
2584
|
+
.btn-group-vertical > .btn:focus {
|
2585
|
+
outline: none;
|
2598
2586
|
}
|
2599
2587
|
|
2600
|
-
.
|
2601
|
-
.
|
2602
|
-
.
|
2603
|
-
|
2604
|
-
|
2605
|
-
background-color: #428bca;
|
2606
|
-
border-color: #428bca;
|
2588
|
+
.btn-group .btn + .btn,
|
2589
|
+
.btn-group .btn + .btn-group,
|
2590
|
+
.btn-group .btn-group + .btn,
|
2591
|
+
.btn-group .btn-group + .btn-group {
|
2592
|
+
margin-left: -1px;
|
2607
2593
|
}
|
2608
2594
|
|
2609
|
-
.
|
2610
|
-
.
|
2611
|
-
|
2612
|
-
|
2595
|
+
.btn-toolbar:before,
|
2596
|
+
.btn-toolbar:after {
|
2597
|
+
display: table;
|
2598
|
+
content: " ";
|
2613
2599
|
}
|
2614
2600
|
|
2615
|
-
.
|
2616
|
-
|
2617
|
-
.list-group-item.active:focus .list-group-item-text {
|
2618
|
-
color: #e1edf7;
|
2601
|
+
.btn-toolbar:after {
|
2602
|
+
clear: both;
|
2619
2603
|
}
|
2620
2604
|
|
2621
|
-
.
|
2622
|
-
|
2623
|
-
|
2605
|
+
.btn-toolbar:before,
|
2606
|
+
.btn-toolbar:after {
|
2607
|
+
display: table;
|
2608
|
+
content: " ";
|
2624
2609
|
}
|
2625
2610
|
|
2626
|
-
.
|
2627
|
-
|
2628
|
-
line-height: 1.3;
|
2611
|
+
.btn-toolbar:after {
|
2612
|
+
clear: both;
|
2629
2613
|
}
|
2630
2614
|
|
2631
|
-
.
|
2632
|
-
|
2633
|
-
background-color: #ffffff;
|
2634
|
-
border: 1px solid #dddddd;
|
2635
|
-
border-radius: 4px;
|
2636
|
-
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
2637
|
-
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
2615
|
+
.btn-toolbar .btn-group {
|
2616
|
+
float: left;
|
2638
2617
|
}
|
2639
2618
|
|
2640
|
-
.
|
2641
|
-
|
2619
|
+
.btn-toolbar > .btn + .btn,
|
2620
|
+
.btn-toolbar > .btn-group + .btn,
|
2621
|
+
.btn-toolbar > .btn + .btn-group,
|
2622
|
+
.btn-toolbar > .btn-group + .btn-group {
|
2623
|
+
margin-left: 5px;
|
2642
2624
|
}
|
2643
2625
|
|
2644
|
-
.
|
2645
|
-
|
2626
|
+
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
2627
|
+
border-radius: 0;
|
2646
2628
|
}
|
2647
2629
|
|
2648
|
-
.
|
2649
|
-
|
2630
|
+
.btn-group > .btn:first-child {
|
2631
|
+
margin-left: 0;
|
2650
2632
|
}
|
2651
2633
|
|
2652
|
-
.
|
2634
|
+
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
|
2653
2635
|
border-top-right-radius: 0;
|
2654
|
-
border-
|
2636
|
+
border-bottom-right-radius: 0;
|
2655
2637
|
}
|
2656
2638
|
|
2657
|
-
.
|
2658
|
-
|
2639
|
+
.btn-group > .btn:last-child:not(:first-child),
|
2640
|
+
.btn-group > .dropdown-toggle:not(:first-child) {
|
2641
|
+
border-bottom-left-radius: 0;
|
2642
|
+
border-top-left-radius: 0;
|
2659
2643
|
}
|
2660
2644
|
|
2661
|
-
.
|
2662
|
-
|
2645
|
+
.btn-group > .btn-group {
|
2646
|
+
float: left;
|
2663
2647
|
}
|
2664
2648
|
|
2665
|
-
.
|
2666
|
-
|
2667
|
-
background-color: #f5f5f5;
|
2668
|
-
border-bottom: 1px solid #dddddd;
|
2669
|
-
border-top-right-radius: 3px;
|
2670
|
-
border-top-left-radius: 3px;
|
2649
|
+
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
2650
|
+
border-radius: 0;
|
2671
2651
|
}
|
2672
2652
|
|
2673
|
-
.
|
2674
|
-
|
2675
|
-
|
2676
|
-
|
2653
|
+
.btn-group > .btn-group:first-child > .btn:last-child,
|
2654
|
+
.btn-group > .btn-group:first-child > .dropdown-toggle {
|
2655
|
+
border-top-right-radius: 0;
|
2656
|
+
border-bottom-right-radius: 0;
|
2677
2657
|
}
|
2678
2658
|
|
2679
|
-
.
|
2680
|
-
|
2659
|
+
.btn-group > .btn-group:last-child > .btn:first-child {
|
2660
|
+
border-bottom-left-radius: 0;
|
2661
|
+
border-top-left-radius: 0;
|
2681
2662
|
}
|
2682
2663
|
|
2683
|
-
.
|
2684
|
-
|
2685
|
-
|
2686
|
-
border-top: 1px solid #dddddd;
|
2687
|
-
border-bottom-right-radius: 3px;
|
2688
|
-
border-bottom-left-radius: 3px;
|
2664
|
+
.btn-group .dropdown-toggle:active,
|
2665
|
+
.btn-group.open .dropdown-toggle {
|
2666
|
+
outline: 0;
|
2689
2667
|
}
|
2690
2668
|
|
2691
|
-
.
|
2692
|
-
|
2693
|
-
|
2694
|
-
|
2669
|
+
.btn-group-xs > .btn {
|
2670
|
+
padding: 5px 10px;
|
2671
|
+
padding: 1px 5px;
|
2672
|
+
font-size: 12px;
|
2673
|
+
line-height: 1.5;
|
2674
|
+
border-radius: 3px;
|
2695
2675
|
}
|
2696
2676
|
|
2697
|
-
.
|
2698
|
-
|
2677
|
+
.btn-group-sm > .btn {
|
2678
|
+
padding: 5px 10px;
|
2679
|
+
font-size: 12px;
|
2680
|
+
line-height: 1.5;
|
2681
|
+
border-radius: 3px;
|
2699
2682
|
}
|
2700
2683
|
|
2701
|
-
.
|
2702
|
-
|
2684
|
+
.btn-group-lg > .btn {
|
2685
|
+
padding: 10px 16px;
|
2686
|
+
font-size: 18px;
|
2687
|
+
line-height: 1.33;
|
2688
|
+
border-radius: 6px;
|
2703
2689
|
}
|
2704
2690
|
|
2705
|
-
.
|
2706
|
-
|
2691
|
+
.btn-group > .btn + .dropdown-toggle {
|
2692
|
+
padding-right: 8px;
|
2693
|
+
padding-left: 8px;
|
2707
2694
|
}
|
2708
2695
|
|
2709
|
-
.
|
2710
|
-
|
2696
|
+
.btn-group > .btn-lg + .dropdown-toggle {
|
2697
|
+
padding-right: 12px;
|
2698
|
+
padding-left: 12px;
|
2711
2699
|
}
|
2712
2700
|
|
2713
|
-
.
|
2714
|
-
|
2701
|
+
.btn-group.open .dropdown-toggle {
|
2702
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
2703
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
2715
2704
|
}
|
2716
2705
|
|
2717
|
-
.
|
2718
|
-
|
2706
|
+
.btn .caret {
|
2707
|
+
margin-left: 0;
|
2719
2708
|
}
|
2720
2709
|
|
2721
|
-
.
|
2722
|
-
|
2723
|
-
|
2724
|
-
border-color: #428bca;
|
2710
|
+
.btn-lg .caret {
|
2711
|
+
border-width: 5px 5px 0;
|
2712
|
+
border-bottom-width: 0;
|
2725
2713
|
}
|
2726
2714
|
|
2727
|
-
.
|
2728
|
-
border-
|
2715
|
+
.dropup .btn-lg .caret {
|
2716
|
+
border-width: 0 5px 5px;
|
2729
2717
|
}
|
2730
2718
|
|
2731
|
-
.
|
2732
|
-
|
2719
|
+
.btn-group-vertical > .btn,
|
2720
|
+
.btn-group-vertical > .btn-group {
|
2721
|
+
display: block;
|
2722
|
+
float: none;
|
2723
|
+
width: 100%;
|
2724
|
+
max-width: 100%;
|
2733
2725
|
}
|
2734
2726
|
|
2735
|
-
.
|
2736
|
-
|
2727
|
+
.btn-group-vertical > .btn-group:before,
|
2728
|
+
.btn-group-vertical > .btn-group:after {
|
2729
|
+
display: table;
|
2730
|
+
content: " ";
|
2737
2731
|
}
|
2738
2732
|
|
2739
|
-
.
|
2740
|
-
|
2741
|
-
background-color: #dff0d8;
|
2742
|
-
border-color: #d6e9c6;
|
2733
|
+
.btn-group-vertical > .btn-group:after {
|
2734
|
+
clear: both;
|
2743
2735
|
}
|
2744
2736
|
|
2745
|
-
.
|
2746
|
-
|
2737
|
+
.btn-group-vertical > .btn-group:before,
|
2738
|
+
.btn-group-vertical > .btn-group:after {
|
2739
|
+
display: table;
|
2740
|
+
content: " ";
|
2747
2741
|
}
|
2748
2742
|
|
2749
|
-
.
|
2750
|
-
|
2743
|
+
.btn-group-vertical > .btn-group:after {
|
2744
|
+
clear: both;
|
2751
2745
|
}
|
2752
2746
|
|
2753
|
-
.
|
2754
|
-
|
2747
|
+
.btn-group-vertical > .btn-group > .btn {
|
2748
|
+
float: none;
|
2755
2749
|
}
|
2756
2750
|
|
2757
|
-
.
|
2758
|
-
|
2759
|
-
|
2760
|
-
|
2751
|
+
.btn-group-vertical > .btn + .btn,
|
2752
|
+
.btn-group-vertical > .btn + .btn-group,
|
2753
|
+
.btn-group-vertical > .btn-group + .btn,
|
2754
|
+
.btn-group-vertical > .btn-group + .btn-group {
|
2755
|
+
margin-top: -1px;
|
2756
|
+
margin-left: 0;
|
2761
2757
|
}
|
2762
2758
|
|
2763
|
-
.
|
2764
|
-
border-
|
2759
|
+
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
|
2760
|
+
border-radius: 0;
|
2765
2761
|
}
|
2766
2762
|
|
2767
|
-
.
|
2768
|
-
border-
|
2763
|
+
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
2764
|
+
border-top-right-radius: 4px;
|
2765
|
+
border-bottom-right-radius: 0;
|
2766
|
+
border-bottom-left-radius: 0;
|
2769
2767
|
}
|
2770
2768
|
|
2771
|
-
.
|
2772
|
-
border-
|
2769
|
+
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
2770
|
+
border-top-right-radius: 0;
|
2771
|
+
border-bottom-left-radius: 4px;
|
2772
|
+
border-top-left-radius: 0;
|
2773
2773
|
}
|
2774
2774
|
|
2775
|
-
.
|
2776
|
-
|
2777
|
-
background-color: #f2dede;
|
2778
|
-
border-color: #eed3d7;
|
2775
|
+
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
2776
|
+
border-radius: 0;
|
2779
2777
|
}
|
2780
2778
|
|
2781
|
-
.
|
2782
|
-
|
2779
|
+
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
|
2780
|
+
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
|
2781
|
+
border-bottom-right-radius: 0;
|
2782
|
+
border-bottom-left-radius: 0;
|
2783
2783
|
}
|
2784
2784
|
|
2785
|
-
.
|
2786
|
-
border-
|
2785
|
+
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
|
2786
|
+
border-top-right-radius: 0;
|
2787
|
+
border-top-left-radius: 0;
|
2787
2788
|
}
|
2788
2789
|
|
2789
|
-
.
|
2790
|
-
|
2790
|
+
.btn-group-justified {
|
2791
|
+
display: table;
|
2792
|
+
width: 100%;
|
2793
|
+
border-collapse: separate;
|
2794
|
+
table-layout: fixed;
|
2791
2795
|
}
|
2792
2796
|
|
2793
|
-
.
|
2794
|
-
|
2795
|
-
|
2796
|
-
|
2797
|
+
.btn-group-justified .btn {
|
2798
|
+
display: table-cell;
|
2799
|
+
float: none;
|
2800
|
+
width: 1%;
|
2797
2801
|
}
|
2798
2802
|
|
2799
|
-
|
2800
|
-
|
2803
|
+
[data-toggle="buttons"] > .btn > input[type="radio"],
|
2804
|
+
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
|
2805
|
+
display: none;
|
2801
2806
|
}
|
2802
2807
|
|
2803
|
-
.
|
2804
|
-
|
2808
|
+
.input-group {
|
2809
|
+
position: relative;
|
2810
|
+
display: table;
|
2811
|
+
border-collapse: separate;
|
2805
2812
|
}
|
2806
2813
|
|
2807
|
-
.
|
2808
|
-
|
2809
|
-
padding:
|
2810
|
-
|
2811
|
-
background-color: #f5f5f5;
|
2812
|
-
border: 1px solid #e3e3e3;
|
2813
|
-
border-radius: 4px;
|
2814
|
-
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
2815
|
-
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
2814
|
+
.input-group.col {
|
2815
|
+
float: none;
|
2816
|
+
padding-right: 0;
|
2817
|
+
padding-left: 0;
|
2816
2818
|
}
|
2817
2819
|
|
2818
|
-
.
|
2819
|
-
|
2820
|
-
|
2820
|
+
.input-group .form-control {
|
2821
|
+
width: 100%;
|
2822
|
+
margin-bottom: 0;
|
2821
2823
|
}
|
2822
2824
|
|
2823
|
-
.
|
2824
|
-
|
2825
|
+
.input-group-lg > .form-control,
|
2826
|
+
.input-group-lg > .input-group-addon,
|
2827
|
+
.input-group-lg > .input-group-btn > .btn {
|
2828
|
+
height: 45px;
|
2829
|
+
padding: 10px 16px;
|
2830
|
+
font-size: 18px;
|
2831
|
+
line-height: 1.33;
|
2825
2832
|
border-radius: 6px;
|
2826
2833
|
}
|
2827
2834
|
|
2828
|
-
.
|
2829
|
-
|
2835
|
+
select.input-group-lg > .form-control,
|
2836
|
+
select.input-group-lg > .input-group-addon,
|
2837
|
+
select.input-group-lg > .input-group-btn > .btn {
|
2838
|
+
height: 45px;
|
2839
|
+
line-height: 45px;
|
2840
|
+
}
|
2841
|
+
|
2842
|
+
textarea.input-group-lg > .form-control,
|
2843
|
+
textarea.input-group-lg > .input-group-addon,
|
2844
|
+
textarea.input-group-lg > .input-group-btn > .btn {
|
2845
|
+
height: auto;
|
2846
|
+
}
|
2847
|
+
|
2848
|
+
.input-group-sm > .form-control,
|
2849
|
+
.input-group-sm > .input-group-addon,
|
2850
|
+
.input-group-sm > .input-group-btn > .btn {
|
2851
|
+
height: 30px;
|
2852
|
+
padding: 5px 10px;
|
2853
|
+
font-size: 12px;
|
2854
|
+
line-height: 1.5;
|
2830
2855
|
border-radius: 3px;
|
2831
2856
|
}
|
2832
2857
|
|
2833
|
-
.
|
2834
|
-
|
2835
|
-
|
2836
|
-
|
2858
|
+
select.input-group-sm > .form-control,
|
2859
|
+
select.input-group-sm > .input-group-addon,
|
2860
|
+
select.input-group-sm > .input-group-btn > .btn {
|
2861
|
+
height: 30px;
|
2862
|
+
line-height: 30px;
|
2863
|
+
}
|
2864
|
+
|
2865
|
+
textarea.input-group-sm > .form-control,
|
2866
|
+
textarea.input-group-sm > .input-group-addon,
|
2867
|
+
textarea.input-group-sm > .input-group-btn > .btn {
|
2868
|
+
height: auto;
|
2869
|
+
}
|
2870
|
+
|
2871
|
+
.input-group-addon,
|
2872
|
+
.input-group-btn,
|
2873
|
+
.input-group .form-control {
|
2874
|
+
display: table-cell;
|
2875
|
+
}
|
2876
|
+
|
2877
|
+
.input-group-addon:not(:first-child):not(:last-child),
|
2878
|
+
.input-group-btn:not(:first-child):not(:last-child),
|
2879
|
+
.input-group .form-control:not(:first-child):not(:last-child) {
|
2880
|
+
border-radius: 0;
|
2881
|
+
}
|
2882
|
+
|
2883
|
+
.input-group-addon,
|
2884
|
+
.input-group-btn {
|
2885
|
+
width: 1%;
|
2886
|
+
white-space: nowrap;
|
2887
|
+
vertical-align: middle;
|
2888
|
+
}
|
2889
|
+
|
2890
|
+
.input-group-addon {
|
2891
|
+
padding: 6px 12px;
|
2892
|
+
font-size: 14px;
|
2893
|
+
font-weight: normal;
|
2837
2894
|
line-height: 1;
|
2838
|
-
|
2839
|
-
|
2840
|
-
|
2841
|
-
|
2895
|
+
text-align: center;
|
2896
|
+
background-color: #eeeeee;
|
2897
|
+
border: 1px solid #cccccc;
|
2898
|
+
border-radius: 4px;
|
2842
2899
|
}
|
2843
2900
|
|
2844
|
-
.
|
2845
|
-
|
2846
|
-
|
2847
|
-
|
2848
|
-
cursor: pointer;
|
2849
|
-
opacity: 0.5;
|
2850
|
-
filter: alpha(opacity=50);
|
2901
|
+
.input-group-addon.input-sm {
|
2902
|
+
padding: 5px 10px;
|
2903
|
+
font-size: 12px;
|
2904
|
+
border-radius: 3px;
|
2851
2905
|
}
|
2852
2906
|
|
2853
|
-
|
2854
|
-
padding:
|
2855
|
-
|
2856
|
-
|
2857
|
-
|
2858
|
-
|
2907
|
+
.input-group-addon.input-lg {
|
2908
|
+
padding: 10px 16px;
|
2909
|
+
font-size: 18px;
|
2910
|
+
border-radius: 6px;
|
2911
|
+
}
|
2912
|
+
|
2913
|
+
.input-group-addon input[type="radio"],
|
2914
|
+
.input-group-addon input[type="checkbox"] {
|
2915
|
+
margin-top: 0;
|
2916
|
+
}
|
2917
|
+
|
2918
|
+
.input-group .form-control:first-child,
|
2919
|
+
.input-group-addon:first-child,
|
2920
|
+
.input-group-btn:first-child > .btn,
|
2921
|
+
.input-group-btn:first-child > .dropdown-toggle,
|
2922
|
+
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
|
2923
|
+
border-top-right-radius: 0;
|
2924
|
+
border-bottom-right-radius: 0;
|
2925
|
+
}
|
2926
|
+
|
2927
|
+
.input-group-addon:first-child {
|
2928
|
+
border-right: 0;
|
2929
|
+
}
|
2930
|
+
|
2931
|
+
.input-group .form-control:last-child,
|
2932
|
+
.input-group-addon:last-child,
|
2933
|
+
.input-group-btn:last-child > .btn,
|
2934
|
+
.input-group-btn:last-child > .dropdown-toggle,
|
2935
|
+
.input-group-btn:first-child > .btn:not(:first-child) {
|
2936
|
+
border-bottom-left-radius: 0;
|
2937
|
+
border-top-left-radius: 0;
|
2938
|
+
}
|
2939
|
+
|
2940
|
+
.input-group-addon:last-child {
|
2941
|
+
border-left: 0;
|
2942
|
+
}
|
2943
|
+
|
2944
|
+
.input-group-btn {
|
2945
|
+
position: relative;
|
2946
|
+
white-space: nowrap;
|
2947
|
+
}
|
2948
|
+
|
2949
|
+
.input-group-btn > .btn {
|
2950
|
+
position: relative;
|
2951
|
+
}
|
2952
|
+
|
2953
|
+
.input-group-btn > .btn + .btn {
|
2954
|
+
margin-left: -4px;
|
2955
|
+
}
|
2956
|
+
|
2957
|
+
.input-group-btn > .btn:hover,
|
2958
|
+
.input-group-btn > .btn:active {
|
2959
|
+
z-index: 2;
|
2859
2960
|
}
|
2860
2961
|
|
2861
2962
|
.nav {
|
@@ -2913,21 +3014,13 @@ button.close {
|
|
2913
3014
|
background-color: transparent;
|
2914
3015
|
}
|
2915
3016
|
|
2916
|
-
.nav.open > a,
|
2917
|
-
.nav.open > a:hover,
|
2918
|
-
.nav.open > a:focus {
|
2919
|
-
color: #
|
2920
|
-
background-color: #428bca;
|
3017
|
+
.nav .open > a,
|
3018
|
+
.nav .open > a:hover,
|
3019
|
+
.nav .open > a:focus {
|
3020
|
+
background-color: #eeeeee;
|
2921
3021
|
border-color: #428bca;
|
2922
3022
|
}
|
2923
3023
|
|
2924
|
-
.nav.open > a .caret,
|
2925
|
-
.nav.open > a:hover .caret,
|
2926
|
-
.nav.open > a:focus .caret {
|
2927
|
-
border-top-color: #ffffff;
|
2928
|
-
border-bottom-color: #ffffff;
|
2929
|
-
}
|
2930
|
-
|
2931
3024
|
.nav .nav-divider {
|
2932
3025
|
height: 1px;
|
2933
3026
|
margin: 9px 0;
|
@@ -2956,7 +3049,7 @@ button.close {
|
|
2956
3049
|
}
|
2957
3050
|
|
2958
3051
|
.nav-tabs > li > a:hover {
|
2959
|
-
border-color: #eeeeee;
|
3052
|
+
border-color: #eeeeee #eeeeee #dddddd;
|
2960
3053
|
}
|
2961
3054
|
|
2962
3055
|
.nav-tabs > li.active > a,
|
@@ -2975,15 +3068,20 @@ button.close {
|
|
2975
3068
|
}
|
2976
3069
|
|
2977
3070
|
.nav-tabs.nav-justified > li {
|
2978
|
-
display: table-cell;
|
2979
3071
|
float: none;
|
2980
|
-
width: 1%;
|
2981
3072
|
}
|
2982
3073
|
|
2983
3074
|
.nav-tabs.nav-justified > li > a {
|
2984
3075
|
text-align: center;
|
2985
3076
|
}
|
2986
3077
|
|
3078
|
+
@media (min-width: 768px) {
|
3079
|
+
.nav-tabs.nav-justified > li {
|
3080
|
+
display: table-cell;
|
3081
|
+
width: 1%;
|
3082
|
+
}
|
3083
|
+
}
|
3084
|
+
|
2987
3085
|
.nav-tabs.nav-justified > li > a {
|
2988
3086
|
margin-right: 0;
|
2989
3087
|
border-bottom: 1px solid #dddddd;
|
@@ -3026,15 +3124,20 @@ button.close {
|
|
3026
3124
|
}
|
3027
3125
|
|
3028
3126
|
.nav-justified > li {
|
3029
|
-
display: table-cell;
|
3030
3127
|
float: none;
|
3031
|
-
width: 1%;
|
3032
3128
|
}
|
3033
3129
|
|
3034
3130
|
.nav-justified > li > a {
|
3035
3131
|
text-align: center;
|
3036
3132
|
}
|
3037
3133
|
|
3134
|
+
@media (min-width: 768px) {
|
3135
|
+
.nav-justified > li {
|
3136
|
+
display: table-cell;
|
3137
|
+
width: 1%;
|
3138
|
+
}
|
3139
|
+
}
|
3140
|
+
|
3038
3141
|
.nav-tabs-justified {
|
3039
3142
|
border-bottom: 0;
|
3040
3143
|
}
|
@@ -3096,10 +3199,10 @@ button.close {
|
|
3096
3199
|
|
3097
3200
|
.navbar {
|
3098
3201
|
position: relative;
|
3202
|
+
z-index: 1000;
|
3099
3203
|
min-height: 50px;
|
3100
3204
|
margin-bottom: 20px;
|
3101
|
-
|
3102
|
-
border: 1px solid #e7e7e7;
|
3205
|
+
border: 1px solid transparent;
|
3103
3206
|
}
|
3104
3207
|
|
3105
3208
|
.navbar:before,
|
@@ -3128,11 +3231,6 @@ button.close {
|
|
3128
3231
|
}
|
3129
3232
|
}
|
3130
3233
|
|
3131
|
-
.navbar-header {
|
3132
|
-
padding-right: 15px;
|
3133
|
-
padding-left: 15px;
|
3134
|
-
}
|
3135
|
-
|
3136
3234
|
.navbar-header:before,
|
3137
3235
|
.navbar-header:after {
|
3138
3236
|
display: table;
|
@@ -3164,8 +3262,7 @@ button.close {
|
|
3164
3262
|
padding-right: 15px;
|
3165
3263
|
padding-left: 15px;
|
3166
3264
|
overflow-x: visible;
|
3167
|
-
|
3168
|
-
border-top: 1px solid #e6e6e6;
|
3265
|
+
border-top: 1px solid transparent;
|
3169
3266
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
3170
3267
|
-webkit-overflow-scrolling: touch;
|
3171
3268
|
}
|
@@ -3190,11 +3287,13 @@ button.close {
|
|
3190
3287
|
clear: both;
|
3191
3288
|
}
|
3192
3289
|
|
3290
|
+
.navbar-collapse.in {
|
3291
|
+
overflow-y: auto;
|
3292
|
+
}
|
3293
|
+
|
3193
3294
|
@media (min-width: 768px) {
|
3194
3295
|
.navbar-collapse {
|
3195
3296
|
width: auto;
|
3196
|
-
padding-right: 0;
|
3197
|
-
padding-left: 0;
|
3198
3297
|
border-top: 0;
|
3199
3298
|
box-shadow: none;
|
3200
3299
|
}
|
@@ -3204,11 +3303,40 @@ button.close {
|
|
3204
3303
|
padding-bottom: 0;
|
3205
3304
|
overflow: visible !important;
|
3206
3305
|
}
|
3306
|
+
.navbar-collapse.in {
|
3307
|
+
overflow-y: visible;
|
3308
|
+
}
|
3309
|
+
.navbar-collapse .navbar-nav.navbar-left:first-child {
|
3310
|
+
margin-left: -15px;
|
3311
|
+
}
|
3312
|
+
.navbar-collapse .navbar-nav.navbar-right:last-child {
|
3313
|
+
margin-right: -15px;
|
3314
|
+
}
|
3315
|
+
.navbar-collapse .navbar-text:last-child {
|
3316
|
+
margin-right: 0;
|
3317
|
+
}
|
3318
|
+
}
|
3319
|
+
|
3320
|
+
.container > .navbar-header,
|
3321
|
+
.container > .navbar-collapse {
|
3322
|
+
margin-right: -15px;
|
3323
|
+
margin-left: -15px;
|
3324
|
+
}
|
3325
|
+
|
3326
|
+
@media (min-width: 768px) {
|
3327
|
+
.container > .navbar-header,
|
3328
|
+
.container > .navbar-collapse {
|
3329
|
+
margin-right: 0;
|
3330
|
+
margin-left: 0;
|
3331
|
+
}
|
3332
|
+
}
|
3333
|
+
|
3334
|
+
.navbar-static-top {
|
3335
|
+
border-width: 0 0 1px;
|
3207
3336
|
}
|
3208
3337
|
|
3209
3338
|
@media (min-width: 768px) {
|
3210
3339
|
.navbar-static-top {
|
3211
|
-
border-width: 0 0 1px;
|
3212
3340
|
border-radius: 0;
|
3213
3341
|
}
|
3214
3342
|
}
|
@@ -3218,7 +3346,6 @@ button.close {
|
|
3218
3346
|
position: fixed;
|
3219
3347
|
right: 0;
|
3220
3348
|
left: 0;
|
3221
|
-
z-index: 1030;
|
3222
3349
|
border-width: 0 0 1px;
|
3223
3350
|
}
|
3224
3351
|
|
@@ -3231,6 +3358,7 @@ button.close {
|
|
3231
3358
|
|
3232
3359
|
.navbar-fixed-top {
|
3233
3360
|
top: 0;
|
3361
|
+
z-index: 1030;
|
3234
3362
|
}
|
3235
3363
|
|
3236
3364
|
.navbar-fixed-bottom {
|
@@ -3240,18 +3368,20 @@ button.close {
|
|
3240
3368
|
|
3241
3369
|
.navbar-brand {
|
3242
3370
|
float: left;
|
3243
|
-
padding
|
3244
|
-
padding-bottom: 15px;
|
3371
|
+
padding: 15px 15px;
|
3245
3372
|
font-size: 18px;
|
3246
3373
|
line-height: 20px;
|
3247
|
-
color: #777777;
|
3248
3374
|
}
|
3249
3375
|
|
3250
3376
|
.navbar-brand:hover,
|
3251
3377
|
.navbar-brand:focus {
|
3252
|
-
color: #5e5e5e;
|
3253
3378
|
text-decoration: none;
|
3254
|
-
|
3379
|
+
}
|
3380
|
+
|
3381
|
+
@media (min-width: 768px) {
|
3382
|
+
.navbar > .container .navbar-brand {
|
3383
|
+
margin-left: -15px;
|
3384
|
+
}
|
3255
3385
|
}
|
3256
3386
|
|
3257
3387
|
.navbar-toggle {
|
@@ -3259,22 +3389,17 @@ button.close {
|
|
3259
3389
|
float: right;
|
3260
3390
|
padding: 9px 10px;
|
3261
3391
|
margin-top: 8px;
|
3392
|
+
margin-right: 15px;
|
3262
3393
|
margin-bottom: 8px;
|
3263
3394
|
background-color: transparent;
|
3264
|
-
border: 1px solid
|
3395
|
+
border: 1px solid transparent;
|
3265
3396
|
border-radius: 4px;
|
3266
3397
|
}
|
3267
3398
|
|
3268
|
-
.navbar-toggle:hover,
|
3269
|
-
.navbar-toggle:focus {
|
3270
|
-
background-color: #dddddd;
|
3271
|
-
}
|
3272
|
-
|
3273
3399
|
.navbar-toggle .icon-bar {
|
3274
3400
|
display: block;
|
3275
3401
|
width: 22px;
|
3276
3402
|
height: 2px;
|
3277
|
-
background-color: #cccccc;
|
3278
3403
|
border-radius: 1px;
|
3279
3404
|
}
|
3280
3405
|
|
@@ -3284,45 +3409,18 @@ button.close {
|
|
3284
3409
|
|
3285
3410
|
@media (min-width: 768px) {
|
3286
3411
|
.navbar-toggle {
|
3287
|
-
position: relative;
|
3288
|
-
top: auto;
|
3289
|
-
left: auto;
|
3290
3412
|
display: none;
|
3291
3413
|
}
|
3292
3414
|
}
|
3293
3415
|
|
3294
3416
|
.navbar-nav {
|
3295
|
-
|
3296
|
-
padding-bottom: 7.5px;
|
3297
|
-
margin-right: -15px;
|
3298
|
-
margin-left: -15px;
|
3417
|
+
margin: 7.5px -15px;
|
3299
3418
|
}
|
3300
3419
|
|
3301
3420
|
.navbar-nav > li > a {
|
3302
3421
|
padding-top: 10px;
|
3303
3422
|
padding-bottom: 10px;
|
3304
3423
|
line-height: 20px;
|
3305
|
-
color: #777777;
|
3306
|
-
}
|
3307
|
-
|
3308
|
-
.navbar-nav > li > a:hover,
|
3309
|
-
.navbar-nav > li > a:focus {
|
3310
|
-
color: #333333;
|
3311
|
-
background-color: transparent;
|
3312
|
-
}
|
3313
|
-
|
3314
|
-
.navbar-nav > .active > a,
|
3315
|
-
.navbar-nav > .active > a:hover,
|
3316
|
-
.navbar-nav > .active > a:focus {
|
3317
|
-
color: #555555;
|
3318
|
-
background-color: #e7e7e7;
|
3319
|
-
}
|
3320
|
-
|
3321
|
-
.navbar-nav > .disabled > a,
|
3322
|
-
.navbar-nav > .disabled > a:hover,
|
3323
|
-
.navbar-nav > .disabled > a:focus {
|
3324
|
-
color: #cccccc;
|
3325
|
-
background-color: transparent;
|
3326
3424
|
}
|
3327
3425
|
|
3328
3426
|
@media (max-width: 767px) {
|
@@ -3341,33 +3439,16 @@ button.close {
|
|
3341
3439
|
}
|
3342
3440
|
.navbar-nav .open .dropdown-menu > li > a {
|
3343
3441
|
line-height: 20px;
|
3344
|
-
color: #777777;
|
3345
3442
|
}
|
3346
3443
|
.navbar-nav .open .dropdown-menu > li > a:hover,
|
3347
3444
|
.navbar-nav .open .dropdown-menu > li > a:focus {
|
3348
|
-
color: #333333;
|
3349
|
-
background-color: transparent;
|
3350
3445
|
background-image: none;
|
3351
3446
|
}
|
3352
|
-
.navbar-nav .open .dropdown-menu > .active > a,
|
3353
|
-
.navbar-nav .open .dropdown-menu > .active > a:hover,
|
3354
|
-
.navbar-nav .open .dropdown-menu > .active > a:focus {
|
3355
|
-
color: #555555;
|
3356
|
-
background-color: #e7e7e7;
|
3357
|
-
}
|
3358
|
-
.navbar-nav .open .dropdown-menu > .disabled > a,
|
3359
|
-
.navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
3360
|
-
.navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
3361
|
-
color: #cccccc;
|
3362
|
-
background-color: transparent;
|
3363
|
-
}
|
3364
3447
|
}
|
3365
3448
|
|
3366
3449
|
@media (min-width: 768px) {
|
3367
3450
|
.navbar-nav {
|
3368
3451
|
float: left;
|
3369
|
-
padding-top: 0;
|
3370
|
-
padding-bottom: 0;
|
3371
3452
|
margin: 0;
|
3372
3453
|
}
|
3373
3454
|
.navbar-nav > li {
|
@@ -3386,10 +3467,6 @@ button.close {
|
|
3386
3467
|
.navbar-right {
|
3387
3468
|
float: right !important;
|
3388
3469
|
}
|
3389
|
-
.navbar-right .dropdown-menu {
|
3390
|
-
right: 0;
|
3391
|
-
left: auto;
|
3392
|
-
}
|
3393
3470
|
}
|
3394
3471
|
|
3395
3472
|
.navbar-form {
|
@@ -3398,8 +3475,10 @@ button.close {
|
|
3398
3475
|
margin-right: -15px;
|
3399
3476
|
margin-bottom: 8px;
|
3400
3477
|
margin-left: -15px;
|
3401
|
-
border-top: 1px solid
|
3402
|
-
border-bottom: 1px solid
|
3478
|
+
border-top: 1px solid transparent;
|
3479
|
+
border-bottom: 1px solid transparent;
|
3480
|
+
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
3481
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
3403
3482
|
}
|
3404
3483
|
|
3405
3484
|
@media (min-width: 768px) {
|
@@ -3439,6 +3518,8 @@ button.close {
|
|
3439
3518
|
margin-right: 0;
|
3440
3519
|
margin-left: 0;
|
3441
3520
|
border: 0;
|
3521
|
+
-webkit-box-shadow: none;
|
3522
|
+
box-shadow: none;
|
3442
3523
|
}
|
3443
3524
|
}
|
3444
3525
|
|
@@ -3453,31 +3534,6 @@ button.close {
|
|
3453
3534
|
border-bottom-left-radius: 0;
|
3454
3535
|
}
|
3455
3536
|
|
3456
|
-
.navbar-nav > .dropdown > a:hover .caret,
|
3457
|
-
.navbar-nav > .dropdown > a:focus .caret {
|
3458
|
-
border-top-color: #333333;
|
3459
|
-
border-bottom-color: #333333;
|
3460
|
-
}
|
3461
|
-
|
3462
|
-
.navbar-nav > .open > a,
|
3463
|
-
.navbar-nav > .open > a:hover,
|
3464
|
-
.navbar-nav > .open > a:focus {
|
3465
|
-
color: #555555;
|
3466
|
-
background-color: #e7e7e7;
|
3467
|
-
}
|
3468
|
-
|
3469
|
-
.navbar-nav > .open > a .caret,
|
3470
|
-
.navbar-nav > .open > a:hover .caret,
|
3471
|
-
.navbar-nav > .open > a:focus .caret {
|
3472
|
-
border-top-color: #555555;
|
3473
|
-
border-bottom-color: #555555;
|
3474
|
-
}
|
3475
|
-
|
3476
|
-
.navbar-nav > .dropdown > a .caret {
|
3477
|
-
border-top-color: #777777;
|
3478
|
-
border-bottom-color: #777777;
|
3479
|
-
}
|
3480
|
-
|
3481
3537
|
.navbar-nav.pull-right > li > .dropdown-menu,
|
3482
3538
|
.navbar-nav > li > .dropdown-menu.pull-right {
|
3483
3539
|
right: 0;
|
@@ -3493,14 +3549,129 @@ button.close {
|
|
3493
3549
|
float: left;
|
3494
3550
|
margin-top: 15px;
|
3495
3551
|
margin-bottom: 15px;
|
3552
|
+
}
|
3553
|
+
|
3554
|
+
@media (min-width: 768px) {
|
3555
|
+
.navbar-text {
|
3556
|
+
margin-right: 15px;
|
3557
|
+
margin-left: 15px;
|
3558
|
+
}
|
3559
|
+
}
|
3560
|
+
|
3561
|
+
.navbar-default {
|
3562
|
+
background-color: #f8f8f8;
|
3563
|
+
border-color: #e7e7e7;
|
3564
|
+
}
|
3565
|
+
|
3566
|
+
.navbar-default .navbar-brand {
|
3567
|
+
color: #777777;
|
3568
|
+
}
|
3569
|
+
|
3570
|
+
.navbar-default .navbar-brand:hover,
|
3571
|
+
.navbar-default .navbar-brand:focus {
|
3572
|
+
color: #5e5e5e;
|
3573
|
+
background-color: transparent;
|
3574
|
+
}
|
3575
|
+
|
3576
|
+
.navbar-default .navbar-text {
|
3577
|
+
color: #777777;
|
3578
|
+
}
|
3579
|
+
|
3580
|
+
.navbar-default .navbar-nav > li > a {
|
3496
3581
|
color: #777777;
|
3497
3582
|
}
|
3498
3583
|
|
3499
|
-
.navbar-
|
3584
|
+
.navbar-default .navbar-nav > li > a:hover,
|
3585
|
+
.navbar-default .navbar-nav > li > a:focus {
|
3586
|
+
color: #333333;
|
3587
|
+
background-color: transparent;
|
3588
|
+
}
|
3589
|
+
|
3590
|
+
.navbar-default .navbar-nav > .active > a,
|
3591
|
+
.navbar-default .navbar-nav > .active > a:hover,
|
3592
|
+
.navbar-default .navbar-nav > .active > a:focus {
|
3593
|
+
color: #555555;
|
3594
|
+
background-color: #e7e7e7;
|
3595
|
+
}
|
3596
|
+
|
3597
|
+
.navbar-default .navbar-nav > .disabled > a,
|
3598
|
+
.navbar-default .navbar-nav > .disabled > a:hover,
|
3599
|
+
.navbar-default .navbar-nav > .disabled > a:focus {
|
3600
|
+
color: #cccccc;
|
3601
|
+
background-color: transparent;
|
3602
|
+
}
|
3603
|
+
|
3604
|
+
.navbar-default .navbar-toggle {
|
3605
|
+
border-color: #dddddd;
|
3606
|
+
}
|
3607
|
+
|
3608
|
+
.navbar-default .navbar-toggle:hover,
|
3609
|
+
.navbar-default .navbar-toggle:focus {
|
3610
|
+
background-color: #dddddd;
|
3611
|
+
}
|
3612
|
+
|
3613
|
+
.navbar-default .navbar-toggle .icon-bar {
|
3614
|
+
background-color: #cccccc;
|
3615
|
+
}
|
3616
|
+
|
3617
|
+
.navbar-default .navbar-collapse,
|
3618
|
+
.navbar-default .navbar-form {
|
3619
|
+
border-color: #e6e6e6;
|
3620
|
+
}
|
3621
|
+
|
3622
|
+
.navbar-default .navbar-nav > .dropdown > a:hover .caret,
|
3623
|
+
.navbar-default .navbar-nav > .dropdown > a:focus .caret {
|
3624
|
+
border-top-color: #333333;
|
3625
|
+
border-bottom-color: #333333;
|
3626
|
+
}
|
3627
|
+
|
3628
|
+
.navbar-default .navbar-nav > .open > a,
|
3629
|
+
.navbar-default .navbar-nav > .open > a:hover,
|
3630
|
+
.navbar-default .navbar-nav > .open > a:focus {
|
3631
|
+
color: #555555;
|
3632
|
+
background-color: #e7e7e7;
|
3633
|
+
}
|
3634
|
+
|
3635
|
+
.navbar-default .navbar-nav > .open > a .caret,
|
3636
|
+
.navbar-default .navbar-nav > .open > a:hover .caret,
|
3637
|
+
.navbar-default .navbar-nav > .open > a:focus .caret {
|
3638
|
+
border-top-color: #555555;
|
3639
|
+
border-bottom-color: #555555;
|
3640
|
+
}
|
3641
|
+
|
3642
|
+
.navbar-default .navbar-nav > .dropdown > a .caret {
|
3643
|
+
border-top-color: #777777;
|
3644
|
+
border-bottom-color: #777777;
|
3645
|
+
}
|
3646
|
+
|
3647
|
+
@media (max-width: 767px) {
|
3648
|
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a {
|
3649
|
+
color: #777777;
|
3650
|
+
}
|
3651
|
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
|
3652
|
+
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
|
3653
|
+
color: #333333;
|
3654
|
+
background-color: transparent;
|
3655
|
+
}
|
3656
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
|
3657
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
|
3658
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
|
3659
|
+
color: #555555;
|
3660
|
+
background-color: #e7e7e7;
|
3661
|
+
}
|
3662
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
|
3663
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
|
3664
|
+
.navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
|
3665
|
+
color: #cccccc;
|
3666
|
+
background-color: transparent;
|
3667
|
+
}
|
3668
|
+
}
|
3669
|
+
|
3670
|
+
.navbar-default .navbar-link {
|
3500
3671
|
color: #777777;
|
3501
3672
|
}
|
3502
3673
|
|
3503
|
-
.navbar-link:hover {
|
3674
|
+
.navbar-default .navbar-link:hover {
|
3504
3675
|
color: #333333;
|
3505
3676
|
}
|
3506
3677
|
|
@@ -3560,8 +3731,9 @@ button.close {
|
|
3560
3731
|
background-color: #ffffff;
|
3561
3732
|
}
|
3562
3733
|
|
3563
|
-
.navbar-inverse .navbar-collapse
|
3564
|
-
|
3734
|
+
.navbar-inverse .navbar-collapse,
|
3735
|
+
.navbar-inverse .navbar-form {
|
3736
|
+
border-color: #101010;
|
3565
3737
|
}
|
3566
3738
|
|
3567
3739
|
.navbar-inverse .navbar-nav > .open > a,
|
@@ -3622,1241 +3794,1388 @@ button.close {
|
|
3622
3794
|
color: #ffffff;
|
3623
3795
|
}
|
3624
3796
|
|
3625
|
-
.
|
3626
|
-
|
3797
|
+
.breadcrumb {
|
3798
|
+
padding: 8px 15px;
|
3799
|
+
margin-bottom: 20px;
|
3800
|
+
list-style: none;
|
3801
|
+
background-color: #f5f5f5;
|
3802
|
+
border-radius: 4px;
|
3627
3803
|
}
|
3628
3804
|
|
3629
|
-
.
|
3630
|
-
|
3631
|
-
.btn-warning .caret,
|
3632
|
-
.btn-danger .caret,
|
3633
|
-
.btn-info .caret {
|
3634
|
-
border-top-color: #fff;
|
3805
|
+
.breadcrumb > li {
|
3806
|
+
display: inline-block;
|
3635
3807
|
}
|
3636
3808
|
|
3637
|
-
.
|
3638
|
-
|
3809
|
+
.breadcrumb > li + li:before {
|
3810
|
+
padding: 0 5px;
|
3811
|
+
color: #cccccc;
|
3812
|
+
content: "/\00a0";
|
3639
3813
|
}
|
3640
3814
|
|
3641
|
-
.
|
3642
|
-
|
3643
|
-
.btn-warning .dropup .caret,
|
3644
|
-
.btn-danger .dropup .caret,
|
3645
|
-
.btn-info .dropup .caret {
|
3646
|
-
border-bottom-color: #fff;
|
3815
|
+
.breadcrumb > .active {
|
3816
|
+
color: #999999;
|
3647
3817
|
}
|
3648
3818
|
|
3649
|
-
.
|
3650
|
-
.btn-group-vertical {
|
3651
|
-
position: relative;
|
3819
|
+
.pagination {
|
3652
3820
|
display: inline-block;
|
3653
|
-
|
3821
|
+
padding-left: 0;
|
3822
|
+
margin: 20px 0;
|
3823
|
+
border-radius: 4px;
|
3654
3824
|
}
|
3655
3825
|
|
3656
|
-
.
|
3657
|
-
|
3826
|
+
.pagination > li {
|
3827
|
+
display: inline;
|
3828
|
+
}
|
3829
|
+
|
3830
|
+
.pagination > li > a,
|
3831
|
+
.pagination > li > span {
|
3658
3832
|
position: relative;
|
3659
3833
|
float: left;
|
3834
|
+
padding: 6px 12px;
|
3835
|
+
margin-left: -1px;
|
3836
|
+
line-height: 1.428571429;
|
3837
|
+
text-decoration: none;
|
3838
|
+
background-color: #ffffff;
|
3839
|
+
border: 1px solid #dddddd;
|
3660
3840
|
}
|
3661
3841
|
|
3662
|
-
.
|
3663
|
-
.
|
3664
|
-
|
3665
|
-
|
3666
|
-
|
3667
|
-
.btn-group-vertical > .btn:active,
|
3668
|
-
.btn-group > .btn.active,
|
3669
|
-
.btn-group-vertical > .btn.active {
|
3670
|
-
z-index: 2;
|
3842
|
+
.pagination > li:first-child > a,
|
3843
|
+
.pagination > li:first-child > span {
|
3844
|
+
margin-left: 0;
|
3845
|
+
border-bottom-left-radius: 4px;
|
3846
|
+
border-top-left-radius: 4px;
|
3671
3847
|
}
|
3672
3848
|
|
3673
|
-
.
|
3674
|
-
.
|
3675
|
-
|
3849
|
+
.pagination > li:last-child > a,
|
3850
|
+
.pagination > li:last-child > span {
|
3851
|
+
border-top-right-radius: 4px;
|
3852
|
+
border-bottom-right-radius: 4px;
|
3676
3853
|
}
|
3677
3854
|
|
3678
|
-
.
|
3679
|
-
.
|
3680
|
-
.
|
3681
|
-
.
|
3682
|
-
|
3855
|
+
.pagination > li > a:hover,
|
3856
|
+
.pagination > li > span:hover,
|
3857
|
+
.pagination > li > a:focus,
|
3858
|
+
.pagination > li > span:focus {
|
3859
|
+
background-color: #eeeeee;
|
3683
3860
|
}
|
3684
3861
|
|
3685
|
-
.
|
3686
|
-
.
|
3687
|
-
|
3688
|
-
|
3862
|
+
.pagination > .active > a,
|
3863
|
+
.pagination > .active > span,
|
3864
|
+
.pagination > .active > a:hover,
|
3865
|
+
.pagination > .active > span:hover,
|
3866
|
+
.pagination > .active > a:focus,
|
3867
|
+
.pagination > .active > span:focus {
|
3868
|
+
z-index: 2;
|
3869
|
+
color: #ffffff;
|
3870
|
+
cursor: default;
|
3871
|
+
background-color: #428bca;
|
3872
|
+
border-color: #428bca;
|
3689
3873
|
}
|
3690
3874
|
|
3691
|
-
.
|
3692
|
-
|
3875
|
+
.pagination > .disabled > span,
|
3876
|
+
.pagination > .disabled > a,
|
3877
|
+
.pagination > .disabled > a:hover,
|
3878
|
+
.pagination > .disabled > a:focus {
|
3879
|
+
color: #999999;
|
3880
|
+
cursor: not-allowed;
|
3881
|
+
background-color: #ffffff;
|
3882
|
+
border-color: #dddddd;
|
3693
3883
|
}
|
3694
3884
|
|
3695
|
-
.
|
3696
|
-
.
|
3697
|
-
|
3698
|
-
|
3885
|
+
.pagination-lg > li > a,
|
3886
|
+
.pagination-lg > li > span {
|
3887
|
+
padding: 10px 16px;
|
3888
|
+
font-size: 18px;
|
3699
3889
|
}
|
3700
3890
|
|
3701
|
-
.
|
3702
|
-
|
3891
|
+
.pagination-lg > li:first-child > a,
|
3892
|
+
.pagination-lg > li:first-child > span {
|
3893
|
+
border-bottom-left-radius: 6px;
|
3894
|
+
border-top-left-radius: 6px;
|
3703
3895
|
}
|
3704
3896
|
|
3705
|
-
.
|
3706
|
-
|
3897
|
+
.pagination-lg > li:last-child > a,
|
3898
|
+
.pagination-lg > li:last-child > span {
|
3899
|
+
border-top-right-radius: 6px;
|
3900
|
+
border-bottom-right-radius: 6px;
|
3707
3901
|
}
|
3708
3902
|
|
3709
|
-
.
|
3710
|
-
.
|
3711
|
-
|
3712
|
-
|
3713
|
-
margin-left: 5px;
|
3903
|
+
.pagination-sm > li > a,
|
3904
|
+
.pagination-sm > li > span {
|
3905
|
+
padding: 5px 10px;
|
3906
|
+
font-size: 12px;
|
3714
3907
|
}
|
3715
3908
|
|
3716
|
-
.
|
3717
|
-
|
3909
|
+
.pagination-sm > li:first-child > a,
|
3910
|
+
.pagination-sm > li:first-child > span {
|
3911
|
+
border-bottom-left-radius: 3px;
|
3912
|
+
border-top-left-radius: 3px;
|
3718
3913
|
}
|
3719
3914
|
|
3720
|
-
.
|
3721
|
-
|
3915
|
+
.pagination-sm > li:last-child > a,
|
3916
|
+
.pagination-sm > li:last-child > span {
|
3917
|
+
border-top-right-radius: 3px;
|
3918
|
+
border-bottom-right-radius: 3px;
|
3722
3919
|
}
|
3723
3920
|
|
3724
|
-
.
|
3725
|
-
|
3726
|
-
|
3921
|
+
.pager {
|
3922
|
+
padding-left: 0;
|
3923
|
+
margin: 20px 0;
|
3924
|
+
text-align: center;
|
3925
|
+
list-style: none;
|
3727
3926
|
}
|
3728
3927
|
|
3729
|
-
.
|
3730
|
-
.
|
3731
|
-
|
3732
|
-
|
3928
|
+
.pager:before,
|
3929
|
+
.pager:after {
|
3930
|
+
display: table;
|
3931
|
+
content: " ";
|
3733
3932
|
}
|
3734
3933
|
|
3735
|
-
.
|
3736
|
-
|
3934
|
+
.pager:after {
|
3935
|
+
clear: both;
|
3737
3936
|
}
|
3738
3937
|
|
3739
|
-
.
|
3740
|
-
|
3938
|
+
.pager:before,
|
3939
|
+
.pager:after {
|
3940
|
+
display: table;
|
3941
|
+
content: " ";
|
3741
3942
|
}
|
3742
3943
|
|
3743
|
-
.
|
3744
|
-
|
3745
|
-
border-top-right-radius: 0;
|
3746
|
-
border-bottom-right-radius: 0;
|
3944
|
+
.pager:after {
|
3945
|
+
clear: both;
|
3747
3946
|
}
|
3748
3947
|
|
3749
|
-
.
|
3750
|
-
|
3751
|
-
border-top-left-radius: 0;
|
3948
|
+
.pager li {
|
3949
|
+
display: inline;
|
3752
3950
|
}
|
3753
3951
|
|
3754
|
-
.
|
3755
|
-
.
|
3756
|
-
|
3952
|
+
.pager li > a,
|
3953
|
+
.pager li > span {
|
3954
|
+
display: inline-block;
|
3955
|
+
padding: 5px 14px;
|
3956
|
+
background-color: #ffffff;
|
3957
|
+
border: 1px solid #dddddd;
|
3958
|
+
border-radius: 15px;
|
3757
3959
|
}
|
3758
3960
|
|
3759
|
-
.
|
3760
|
-
|
3761
|
-
|
3762
|
-
|
3763
|
-
line-height: 1.5;
|
3764
|
-
border-radius: 3px;
|
3961
|
+
.pager li > a:hover,
|
3962
|
+
.pager li > a:focus {
|
3963
|
+
text-decoration: none;
|
3964
|
+
background-color: #eeeeee;
|
3765
3965
|
}
|
3766
3966
|
|
3767
|
-
.
|
3768
|
-
|
3769
|
-
|
3770
|
-
line-height: 1.5;
|
3771
|
-
border-radius: 3px;
|
3967
|
+
.pager .next > a,
|
3968
|
+
.pager .next > span {
|
3969
|
+
float: right;
|
3772
3970
|
}
|
3773
3971
|
|
3774
|
-
.
|
3775
|
-
|
3776
|
-
|
3777
|
-
line-height: 1.33;
|
3778
|
-
border-radius: 6px;
|
3972
|
+
.pager .previous > a,
|
3973
|
+
.pager .previous > span {
|
3974
|
+
float: left;
|
3779
3975
|
}
|
3780
3976
|
|
3781
|
-
.
|
3782
|
-
|
3783
|
-
|
3977
|
+
.pager .disabled > a,
|
3978
|
+
.pager .disabled > a:hover,
|
3979
|
+
.pager .disabled > a:focus,
|
3980
|
+
.pager .disabled > span {
|
3981
|
+
color: #999999;
|
3982
|
+
cursor: not-allowed;
|
3983
|
+
background-color: #ffffff;
|
3784
3984
|
}
|
3785
3985
|
|
3786
|
-
.
|
3787
|
-
|
3788
|
-
padding
|
3986
|
+
.label {
|
3987
|
+
display: inline;
|
3988
|
+
padding: .2em .6em .3em;
|
3989
|
+
font-size: 75%;
|
3990
|
+
font-weight: bold;
|
3991
|
+
line-height: 1;
|
3992
|
+
color: #ffffff;
|
3993
|
+
text-align: center;
|
3994
|
+
white-space: nowrap;
|
3995
|
+
vertical-align: baseline;
|
3996
|
+
border-radius: .25em;
|
3789
3997
|
}
|
3790
3998
|
|
3791
|
-
.
|
3792
|
-
|
3793
|
-
|
3999
|
+
.label[href]:hover,
|
4000
|
+
.label[href]:focus {
|
4001
|
+
color: #ffffff;
|
4002
|
+
text-decoration: none;
|
4003
|
+
cursor: pointer;
|
3794
4004
|
}
|
3795
4005
|
|
3796
|
-
.
|
3797
|
-
|
4006
|
+
.label:empty {
|
4007
|
+
display: none;
|
3798
4008
|
}
|
3799
4009
|
|
3800
|
-
.
|
3801
|
-
|
4010
|
+
.label-default {
|
4011
|
+
background-color: #999999;
|
3802
4012
|
}
|
3803
4013
|
|
3804
|
-
.
|
3805
|
-
|
4014
|
+
.label-default[href]:hover,
|
4015
|
+
.label-default[href]:focus {
|
4016
|
+
background-color: #808080;
|
3806
4017
|
}
|
3807
4018
|
|
3808
|
-
.
|
3809
|
-
|
3810
|
-
display: block;
|
3811
|
-
float: none;
|
3812
|
-
width: 100%;
|
3813
|
-
max-width: 100%;
|
4019
|
+
.label-primary {
|
4020
|
+
background-color: #428bca;
|
3814
4021
|
}
|
3815
4022
|
|
3816
|
-
.
|
3817
|
-
.
|
3818
|
-
|
3819
|
-
content: " ";
|
4023
|
+
.label-primary[href]:hover,
|
4024
|
+
.label-primary[href]:focus {
|
4025
|
+
background-color: #3071a9;
|
3820
4026
|
}
|
3821
4027
|
|
3822
|
-
.
|
3823
|
-
|
4028
|
+
.label-success {
|
4029
|
+
background-color: #5cb85c;
|
3824
4030
|
}
|
3825
4031
|
|
3826
|
-
.
|
3827
|
-
.
|
3828
|
-
|
3829
|
-
content: " ";
|
4032
|
+
.label-success[href]:hover,
|
4033
|
+
.label-success[href]:focus {
|
4034
|
+
background-color: #449d44;
|
3830
4035
|
}
|
3831
4036
|
|
3832
|
-
.
|
3833
|
-
|
4037
|
+
.label-info {
|
4038
|
+
background-color: #5bc0de;
|
3834
4039
|
}
|
3835
4040
|
|
3836
|
-
.
|
3837
|
-
|
4041
|
+
.label-info[href]:hover,
|
4042
|
+
.label-info[href]:focus {
|
4043
|
+
background-color: #31b0d5;
|
3838
4044
|
}
|
3839
4045
|
|
3840
|
-
.
|
3841
|
-
|
3842
|
-
.btn-group-vertical > .btn-group + .btn,
|
3843
|
-
.btn-group-vertical > .btn-group + .btn-group {
|
3844
|
-
margin-top: -1px;
|
3845
|
-
margin-left: 0;
|
4046
|
+
.label-warning {
|
4047
|
+
background-color: #f0ad4e;
|
3846
4048
|
}
|
3847
4049
|
|
3848
|
-
.
|
3849
|
-
|
4050
|
+
.label-warning[href]:hover,
|
4051
|
+
.label-warning[href]:focus {
|
4052
|
+
background-color: #ec971f;
|
3850
4053
|
}
|
3851
4054
|
|
3852
|
-
.
|
3853
|
-
|
3854
|
-
border-bottom-right-radius: 0;
|
3855
|
-
border-bottom-left-radius: 0;
|
4055
|
+
.label-danger {
|
4056
|
+
background-color: #d9534f;
|
3856
4057
|
}
|
3857
4058
|
|
3858
|
-
.
|
3859
|
-
|
3860
|
-
|
3861
|
-
border-top-left-radius: 0;
|
4059
|
+
.label-danger[href]:hover,
|
4060
|
+
.label-danger[href]:focus {
|
4061
|
+
background-color: #c9302c;
|
3862
4062
|
}
|
3863
4063
|
|
3864
|
-
.
|
3865
|
-
|
4064
|
+
.badge {
|
4065
|
+
display: inline-block;
|
4066
|
+
min-width: 10px;
|
4067
|
+
padding: 3px 7px;
|
4068
|
+
font-size: 12px;
|
4069
|
+
font-weight: bold;
|
4070
|
+
line-height: 1;
|
4071
|
+
color: #ffffff;
|
4072
|
+
text-align: center;
|
4073
|
+
white-space: nowrap;
|
4074
|
+
vertical-align: baseline;
|
4075
|
+
background-color: #999999;
|
4076
|
+
border-radius: 10px;
|
3866
4077
|
}
|
3867
4078
|
|
3868
|
-
.
|
3869
|
-
|
3870
|
-
border-bottom-right-radius: 0;
|
3871
|
-
border-bottom-left-radius: 0;
|
4079
|
+
.badge:empty {
|
4080
|
+
display: none;
|
3872
4081
|
}
|
3873
4082
|
|
3874
|
-
.
|
3875
|
-
|
3876
|
-
|
4083
|
+
a.badge:hover,
|
4084
|
+
a.badge:focus {
|
4085
|
+
color: #ffffff;
|
4086
|
+
text-decoration: none;
|
4087
|
+
cursor: pointer;
|
3877
4088
|
}
|
3878
4089
|
|
3879
|
-
.btn
|
3880
|
-
|
3881
|
-
|
3882
|
-
border-collapse: separate;
|
3883
|
-
table-layout: fixed;
|
4090
|
+
.btn .badge {
|
4091
|
+
position: relative;
|
4092
|
+
top: -1px;
|
3884
4093
|
}
|
3885
4094
|
|
3886
|
-
.
|
3887
|
-
|
3888
|
-
|
3889
|
-
|
4095
|
+
a.list-group-item.active > .badge,
|
4096
|
+
.nav-pills > .active > a > .badge {
|
4097
|
+
color: #428bca;
|
4098
|
+
background-color: #ffffff;
|
3890
4099
|
}
|
3891
4100
|
|
3892
|
-
|
3893
|
-
|
3894
|
-
display: none;
|
3895
|
-
}
|
3896
|
-
|
3897
|
-
.breadcrumb {
|
3898
|
-
padding: 8px 15px;
|
3899
|
-
margin-bottom: 20px;
|
3900
|
-
list-style: none;
|
3901
|
-
background-color: #f5f5f5;
|
3902
|
-
border-radius: 4px;
|
4101
|
+
.nav-pills > li > a > .badge {
|
4102
|
+
margin-left: 3px;
|
3903
4103
|
}
|
3904
4104
|
|
3905
|
-
.
|
3906
|
-
|
4105
|
+
.jumbotron {
|
4106
|
+
padding: 30px;
|
4107
|
+
margin-bottom: 30px;
|
4108
|
+
font-size: 21px;
|
4109
|
+
font-weight: 200;
|
4110
|
+
line-height: 2.1428571435;
|
4111
|
+
color: inherit;
|
4112
|
+
background-color: #eeeeee;
|
3907
4113
|
}
|
3908
4114
|
|
3909
|
-
.
|
3910
|
-
|
3911
|
-
color:
|
3912
|
-
content: "/\00a0";
|
4115
|
+
.jumbotron h1 {
|
4116
|
+
line-height: 1;
|
4117
|
+
color: inherit;
|
3913
4118
|
}
|
3914
4119
|
|
3915
|
-
.
|
3916
|
-
|
4120
|
+
.jumbotron p {
|
4121
|
+
line-height: 1.4;
|
3917
4122
|
}
|
3918
4123
|
|
3919
|
-
.
|
3920
|
-
|
3921
|
-
padding-left: 0;
|
3922
|
-
margin: 20px 0;
|
3923
|
-
border-radius: 4px;
|
4124
|
+
.container .jumbotron {
|
4125
|
+
border-radius: 6px;
|
3924
4126
|
}
|
3925
4127
|
|
3926
|
-
|
3927
|
-
|
4128
|
+
@media screen and (min-width: 768px) {
|
4129
|
+
.jumbotron {
|
4130
|
+
padding-top: 48px;
|
4131
|
+
padding-bottom: 48px;
|
4132
|
+
}
|
4133
|
+
.container .jumbotron {
|
4134
|
+
padding-right: 60px;
|
4135
|
+
padding-left: 60px;
|
4136
|
+
}
|
4137
|
+
.jumbotron h1 {
|
4138
|
+
font-size: 63px;
|
4139
|
+
}
|
3928
4140
|
}
|
3929
4141
|
|
3930
|
-
.
|
3931
|
-
|
3932
|
-
|
3933
|
-
|
4142
|
+
.thumbnail {
|
4143
|
+
display: inline-block;
|
4144
|
+
display: block;
|
4145
|
+
height: auto;
|
4146
|
+
max-width: 100%;
|
4147
|
+
padding: 4px;
|
3934
4148
|
line-height: 1.428571429;
|
3935
|
-
text-decoration: none;
|
3936
4149
|
background-color: #ffffff;
|
3937
4150
|
border: 1px solid #dddddd;
|
3938
|
-
border-
|
4151
|
+
border-radius: 4px;
|
4152
|
+
-webkit-transition: all 0.2s ease-in-out;
|
4153
|
+
transition: all 0.2s ease-in-out;
|
3939
4154
|
}
|
3940
4155
|
|
3941
|
-
.
|
3942
|
-
|
3943
|
-
|
3944
|
-
|
3945
|
-
border-top-left-radius: 4px;
|
4156
|
+
.thumbnail > img {
|
4157
|
+
display: block;
|
4158
|
+
height: auto;
|
4159
|
+
max-width: 100%;
|
3946
4160
|
}
|
3947
4161
|
|
3948
|
-
.
|
3949
|
-
.
|
3950
|
-
border-
|
3951
|
-
border-bottom-right-radius: 4px;
|
4162
|
+
a.thumbnail:hover,
|
4163
|
+
a.thumbnail:focus {
|
4164
|
+
border-color: #428bca;
|
3952
4165
|
}
|
3953
4166
|
|
3954
|
-
.
|
3955
|
-
|
3956
|
-
|
3957
|
-
.pagination > .active > span {
|
3958
|
-
background-color: #f5f5f5;
|
4167
|
+
.thumbnail > img {
|
4168
|
+
margin-right: auto;
|
4169
|
+
margin-left: auto;
|
3959
4170
|
}
|
3960
4171
|
|
3961
|
-
.
|
3962
|
-
|
3963
|
-
color: #
|
3964
|
-
cursor: default;
|
4172
|
+
.thumbnail .caption {
|
4173
|
+
padding: 9px;
|
4174
|
+
color: #333333;
|
3965
4175
|
}
|
3966
4176
|
|
3967
|
-
.
|
3968
|
-
|
3969
|
-
|
3970
|
-
|
3971
|
-
|
3972
|
-
cursor: not-allowed;
|
3973
|
-
background-color: #ffffff;
|
4177
|
+
.alert {
|
4178
|
+
padding: 15px;
|
4179
|
+
margin-bottom: 20px;
|
4180
|
+
border: 1px solid transparent;
|
4181
|
+
border-radius: 4px;
|
3974
4182
|
}
|
3975
4183
|
|
3976
|
-
.
|
3977
|
-
|
3978
|
-
|
3979
|
-
font-size: 18px;
|
4184
|
+
.alert h4 {
|
4185
|
+
margin-top: 0;
|
4186
|
+
color: inherit;
|
3980
4187
|
}
|
3981
4188
|
|
3982
|
-
.
|
3983
|
-
|
3984
|
-
border-bottom-left-radius: 6px;
|
3985
|
-
border-top-left-radius: 6px;
|
4189
|
+
.alert .alert-link {
|
4190
|
+
font-weight: bold;
|
3986
4191
|
}
|
3987
4192
|
|
3988
|
-
.
|
3989
|
-
.
|
3990
|
-
|
3991
|
-
border-bottom-right-radius: 6px;
|
4193
|
+
.alert > p,
|
4194
|
+
.alert > ul {
|
4195
|
+
margin-bottom: 0;
|
3992
4196
|
}
|
3993
4197
|
|
3994
|
-
.
|
3995
|
-
|
3996
|
-
padding: 5px 10px;
|
3997
|
-
font-size: 12px;
|
4198
|
+
.alert > p + p {
|
4199
|
+
margin-top: 5px;
|
3998
4200
|
}
|
3999
4201
|
|
4000
|
-
.
|
4001
|
-
|
4002
|
-
border-bottom-left-radius: 3px;
|
4003
|
-
border-top-left-radius: 3px;
|
4202
|
+
.alert-dismissable {
|
4203
|
+
padding-right: 35px;
|
4004
4204
|
}
|
4005
4205
|
|
4006
|
-
.
|
4007
|
-
|
4008
|
-
|
4009
|
-
|
4206
|
+
.alert-dismissable .close {
|
4207
|
+
position: relative;
|
4208
|
+
top: -2px;
|
4209
|
+
right: -21px;
|
4210
|
+
color: inherit;
|
4010
4211
|
}
|
4011
4212
|
|
4012
|
-
.
|
4013
|
-
|
4014
|
-
|
4015
|
-
|
4016
|
-
list-style: none;
|
4213
|
+
.alert-success {
|
4214
|
+
color: #468847;
|
4215
|
+
background-color: #dff0d8;
|
4216
|
+
border-color: #d6e9c6;
|
4017
4217
|
}
|
4018
4218
|
|
4019
|
-
.
|
4020
|
-
|
4021
|
-
display: table;
|
4022
|
-
content: " ";
|
4219
|
+
.alert-success hr {
|
4220
|
+
border-top-color: #c9e2b3;
|
4023
4221
|
}
|
4024
4222
|
|
4025
|
-
.
|
4026
|
-
|
4223
|
+
.alert-success .alert-link {
|
4224
|
+
color: #356635;
|
4027
4225
|
}
|
4028
4226
|
|
4029
|
-
.
|
4030
|
-
|
4031
|
-
|
4032
|
-
|
4227
|
+
.alert-info {
|
4228
|
+
color: #3a87ad;
|
4229
|
+
background-color: #d9edf7;
|
4230
|
+
border-color: #bce8f1;
|
4033
4231
|
}
|
4034
4232
|
|
4035
|
-
.
|
4036
|
-
|
4233
|
+
.alert-info hr {
|
4234
|
+
border-top-color: #a6e1ec;
|
4037
4235
|
}
|
4038
4236
|
|
4039
|
-
.
|
4040
|
-
|
4237
|
+
.alert-info .alert-link {
|
4238
|
+
color: #2d6987;
|
4041
4239
|
}
|
4042
4240
|
|
4043
|
-
.
|
4044
|
-
|
4045
|
-
|
4046
|
-
|
4047
|
-
background-color: #ffffff;
|
4048
|
-
border: 1px solid #dddddd;
|
4049
|
-
border-radius: 15px;
|
4241
|
+
.alert-warning {
|
4242
|
+
color: #c09853;
|
4243
|
+
background-color: #fcf8e3;
|
4244
|
+
border-color: #fbeed5;
|
4050
4245
|
}
|
4051
4246
|
|
4052
|
-
.
|
4053
|
-
|
4054
|
-
text-decoration: none;
|
4055
|
-
background-color: #f5f5f5;
|
4247
|
+
.alert-warning hr {
|
4248
|
+
border-top-color: #f8e5be;
|
4056
4249
|
}
|
4057
4250
|
|
4058
|
-
.
|
4059
|
-
|
4060
|
-
float: right;
|
4251
|
+
.alert-warning .alert-link {
|
4252
|
+
color: #a47e3c;
|
4061
4253
|
}
|
4062
4254
|
|
4063
|
-
.
|
4064
|
-
|
4065
|
-
|
4255
|
+
.alert-danger {
|
4256
|
+
color: #b94a48;
|
4257
|
+
background-color: #f2dede;
|
4258
|
+
border-color: #eed3d7;
|
4066
4259
|
}
|
4067
4260
|
|
4068
|
-
.
|
4069
|
-
|
4070
|
-
.pager .disabled > a:focus,
|
4071
|
-
.pager .disabled > span {
|
4072
|
-
color: #999999;
|
4073
|
-
cursor: not-allowed;
|
4074
|
-
background-color: #ffffff;
|
4261
|
+
.alert-danger hr {
|
4262
|
+
border-top-color: #e6c1c7;
|
4075
4263
|
}
|
4076
4264
|
|
4077
|
-
.
|
4078
|
-
|
4265
|
+
.alert-danger .alert-link {
|
4266
|
+
color: #953b39;
|
4079
4267
|
}
|
4080
4268
|
|
4081
|
-
|
4082
|
-
|
4083
|
-
|
4084
|
-
|
4085
|
-
|
4086
|
-
|
4087
|
-
|
4088
|
-
display: none;
|
4089
|
-
overflow: auto;
|
4090
|
-
overflow-y: scroll;
|
4269
|
+
@-webkit-keyframes progress-bar-stripes {
|
4270
|
+
from {
|
4271
|
+
background-position: 40px 0;
|
4272
|
+
}
|
4273
|
+
to {
|
4274
|
+
background-position: 0 0;
|
4275
|
+
}
|
4091
4276
|
}
|
4092
4277
|
|
4093
|
-
|
4094
|
-
|
4095
|
-
|
4096
|
-
|
4097
|
-
|
4098
|
-
|
4099
|
-
|
4100
|
-
transition: transform 0.3s ease-out;
|
4278
|
+
@-moz-keyframes progress-bar-stripes {
|
4279
|
+
from {
|
4280
|
+
background-position: 40px 0;
|
4281
|
+
}
|
4282
|
+
to {
|
4283
|
+
background-position: 0 0;
|
4284
|
+
}
|
4101
4285
|
}
|
4102
4286
|
|
4103
|
-
|
4104
|
-
|
4105
|
-
|
4106
|
-
|
4287
|
+
@-o-keyframes progress-bar-stripes {
|
4288
|
+
from {
|
4289
|
+
background-position: 0 0;
|
4290
|
+
}
|
4291
|
+
to {
|
4292
|
+
background-position: 40px 0;
|
4293
|
+
}
|
4107
4294
|
}
|
4108
4295
|
|
4109
|
-
|
4110
|
-
|
4111
|
-
|
4112
|
-
|
4113
|
-
|
4114
|
-
|
4296
|
+
@keyframes progress-bar-stripes {
|
4297
|
+
from {
|
4298
|
+
background-position: 40px 0;
|
4299
|
+
}
|
4300
|
+
to {
|
4301
|
+
background-position: 0 0;
|
4302
|
+
}
|
4115
4303
|
}
|
4116
4304
|
|
4117
|
-
.
|
4305
|
+
.progress {
|
4306
|
+
height: 20px;
|
4307
|
+
margin-bottom: 20px;
|
4308
|
+
overflow: hidden;
|
4309
|
+
background-color: #f5f5f5;
|
4310
|
+
border-radius: 4px;
|
4311
|
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
4312
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
4313
|
+
}
|
4314
|
+
|
4315
|
+
.progress-bar {
|
4316
|
+
float: left;
|
4317
|
+
width: 0;
|
4318
|
+
height: 100%;
|
4319
|
+
font-size: 12px;
|
4320
|
+
color: #ffffff;
|
4321
|
+
text-align: center;
|
4322
|
+
background-color: #428bca;
|
4323
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
4324
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
4325
|
+
-webkit-transition: width 0.6s ease;
|
4326
|
+
transition: width 0.6s ease;
|
4327
|
+
}
|
4328
|
+
|
4329
|
+
.progress-striped .progress-bar {
|
4330
|
+
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));
|
4331
|
+
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);
|
4332
|
+
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);
|
4333
|
+
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);
|
4334
|
+
background-size: 40px 40px;
|
4335
|
+
}
|
4336
|
+
|
4337
|
+
.progress.active .progress-bar {
|
4338
|
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
4339
|
+
-moz-animation: progress-bar-stripes 2s linear infinite;
|
4340
|
+
-ms-animation: progress-bar-stripes 2s linear infinite;
|
4341
|
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
4342
|
+
animation: progress-bar-stripes 2s linear infinite;
|
4343
|
+
}
|
4344
|
+
|
4345
|
+
.progress-bar-success {
|
4346
|
+
background-color: #5cb85c;
|
4347
|
+
}
|
4348
|
+
|
4349
|
+
.progress-striped .progress-bar-success {
|
4350
|
+
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));
|
4351
|
+
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);
|
4352
|
+
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);
|
4353
|
+
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);
|
4354
|
+
}
|
4355
|
+
|
4356
|
+
.progress-bar-info {
|
4357
|
+
background-color: #5bc0de;
|
4358
|
+
}
|
4359
|
+
|
4360
|
+
.progress-striped .progress-bar-info {
|
4361
|
+
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));
|
4362
|
+
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);
|
4363
|
+
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);
|
4364
|
+
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);
|
4365
|
+
}
|
4366
|
+
|
4367
|
+
.progress-bar-warning {
|
4368
|
+
background-color: #f0ad4e;
|
4369
|
+
}
|
4370
|
+
|
4371
|
+
.progress-striped .progress-bar-warning {
|
4372
|
+
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));
|
4373
|
+
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);
|
4374
|
+
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);
|
4375
|
+
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);
|
4376
|
+
}
|
4377
|
+
|
4378
|
+
.progress-bar-danger {
|
4379
|
+
background-color: #d9534f;
|
4380
|
+
}
|
4381
|
+
|
4382
|
+
.progress-striped .progress-bar-danger {
|
4383
|
+
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));
|
4384
|
+
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);
|
4385
|
+
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);
|
4386
|
+
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);
|
4387
|
+
}
|
4388
|
+
|
4389
|
+
.media,
|
4390
|
+
.media-body {
|
4391
|
+
overflow: hidden;
|
4392
|
+
zoom: 1;
|
4393
|
+
}
|
4394
|
+
|
4395
|
+
.media,
|
4396
|
+
.media .media {
|
4397
|
+
margin-top: 15px;
|
4398
|
+
}
|
4399
|
+
|
4400
|
+
.media:first-child {
|
4401
|
+
margin-top: 0;
|
4402
|
+
}
|
4403
|
+
|
4404
|
+
.media-object {
|
4405
|
+
display: block;
|
4406
|
+
}
|
4407
|
+
|
4408
|
+
.media-heading {
|
4409
|
+
margin: 0 0 5px;
|
4410
|
+
}
|
4411
|
+
|
4412
|
+
.media > .pull-left {
|
4413
|
+
margin-right: 10px;
|
4414
|
+
}
|
4415
|
+
|
4416
|
+
.media > .pull-right {
|
4417
|
+
margin-left: 10px;
|
4418
|
+
}
|
4419
|
+
|
4420
|
+
.media-list {
|
4421
|
+
padding-left: 0;
|
4422
|
+
list-style: none;
|
4423
|
+
}
|
4424
|
+
|
4425
|
+
.list-group {
|
4426
|
+
padding-left: 0;
|
4427
|
+
margin-bottom: 20px;
|
4428
|
+
}
|
4429
|
+
|
4430
|
+
.list-group-item {
|
4118
4431
|
position: relative;
|
4432
|
+
display: block;
|
4433
|
+
padding: 10px 15px;
|
4434
|
+
margin-bottom: -1px;
|
4119
4435
|
background-color: #ffffff;
|
4120
|
-
border: 1px solid #
|
4121
|
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
4122
|
-
border-radius: 6px;
|
4123
|
-
outline: none;
|
4124
|
-
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
4125
|
-
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
4126
|
-
background-clip: padding-box;
|
4436
|
+
border: 1px solid #dddddd;
|
4127
4437
|
}
|
4128
4438
|
|
4129
|
-
.
|
4130
|
-
|
4131
|
-
top:
|
4132
|
-
right: 0;
|
4133
|
-
bottom: 0;
|
4134
|
-
left: 0;
|
4135
|
-
z-index: 1030;
|
4136
|
-
background-color: #000000;
|
4439
|
+
.list-group-item:first-child {
|
4440
|
+
border-top-right-radius: 4px;
|
4441
|
+
border-top-left-radius: 4px;
|
4137
4442
|
}
|
4138
4443
|
|
4139
|
-
.
|
4140
|
-
|
4141
|
-
|
4444
|
+
.list-group-item:last-child {
|
4445
|
+
margin-bottom: 0;
|
4446
|
+
border-bottom-right-radius: 4px;
|
4447
|
+
border-bottom-left-radius: 4px;
|
4142
4448
|
}
|
4143
4449
|
|
4144
|
-
.
|
4145
|
-
|
4146
|
-
filter: alpha(opacity=50);
|
4450
|
+
.list-group-item > .badge {
|
4451
|
+
float: right;
|
4147
4452
|
}
|
4148
4453
|
|
4149
|
-
.
|
4150
|
-
|
4151
|
-
padding: 15px;
|
4152
|
-
border-bottom: 1px solid #e5e5e5;
|
4454
|
+
.list-group-item > .badge + .badge {
|
4455
|
+
margin-right: 5px;
|
4153
4456
|
}
|
4154
4457
|
|
4155
|
-
.
|
4156
|
-
|
4458
|
+
a.list-group-item {
|
4459
|
+
color: #555555;
|
4157
4460
|
}
|
4158
4461
|
|
4159
|
-
.
|
4160
|
-
|
4161
|
-
line-height: 1.428571429;
|
4462
|
+
a.list-group-item .list-group-item-heading {
|
4463
|
+
color: #333333;
|
4162
4464
|
}
|
4163
4465
|
|
4164
|
-
.
|
4165
|
-
|
4166
|
-
|
4466
|
+
a.list-group-item:hover,
|
4467
|
+
a.list-group-item:focus {
|
4468
|
+
text-decoration: none;
|
4469
|
+
background-color: #f5f5f5;
|
4167
4470
|
}
|
4168
4471
|
|
4169
|
-
.
|
4170
|
-
|
4171
|
-
|
4172
|
-
|
4173
|
-
|
4472
|
+
.list-group-item.active,
|
4473
|
+
.list-group-item.active:hover,
|
4474
|
+
.list-group-item.active:focus {
|
4475
|
+
z-index: 2;
|
4476
|
+
color: #ffffff;
|
4477
|
+
background-color: #428bca;
|
4478
|
+
border-color: #428bca;
|
4174
4479
|
}
|
4175
4480
|
|
4176
|
-
.
|
4177
|
-
.
|
4178
|
-
|
4179
|
-
|
4481
|
+
.list-group-item.active .list-group-item-heading,
|
4482
|
+
.list-group-item.active:hover .list-group-item-heading,
|
4483
|
+
.list-group-item.active:focus .list-group-item-heading {
|
4484
|
+
color: inherit;
|
4180
4485
|
}
|
4181
4486
|
|
4182
|
-
.
|
4183
|
-
|
4487
|
+
.list-group-item.active .list-group-item-text,
|
4488
|
+
.list-group-item.active:hover .list-group-item-text,
|
4489
|
+
.list-group-item.active:focus .list-group-item-text {
|
4490
|
+
color: #e1edf7;
|
4184
4491
|
}
|
4185
4492
|
|
4186
|
-
.
|
4187
|
-
|
4493
|
+
.list-group-item-heading {
|
4494
|
+
margin-top: 0;
|
4495
|
+
margin-bottom: 5px;
|
4496
|
+
}
|
4497
|
+
|
4498
|
+
.list-group-item-text {
|
4499
|
+
margin-bottom: 0;
|
4500
|
+
line-height: 1.3;
|
4501
|
+
}
|
4502
|
+
|
4503
|
+
.panel {
|
4504
|
+
margin-bottom: 20px;
|
4505
|
+
background-color: #ffffff;
|
4506
|
+
border: 1px solid transparent;
|
4507
|
+
border-radius: 4px;
|
4508
|
+
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
4509
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
4510
|
+
}
|
4511
|
+
|
4512
|
+
.panel-body {
|
4513
|
+
padding: 15px;
|
4514
|
+
}
|
4515
|
+
|
4516
|
+
.panel-body:before,
|
4517
|
+
.panel-body:after {
|
4188
4518
|
display: table;
|
4189
4519
|
content: " ";
|
4190
4520
|
}
|
4191
4521
|
|
4192
|
-
.
|
4522
|
+
.panel-body:after {
|
4193
4523
|
clear: both;
|
4194
4524
|
}
|
4195
4525
|
|
4196
|
-
.
|
4197
|
-
|
4198
|
-
|
4526
|
+
.panel-body:before,
|
4527
|
+
.panel-body:after {
|
4528
|
+
display: table;
|
4529
|
+
content: " ";
|
4199
4530
|
}
|
4200
4531
|
|
4201
|
-
.
|
4202
|
-
|
4532
|
+
.panel-body:after {
|
4533
|
+
clear: both;
|
4203
4534
|
}
|
4204
4535
|
|
4205
|
-
.
|
4206
|
-
margin-
|
4536
|
+
.panel > .list-group {
|
4537
|
+
margin-bottom: 0;
|
4207
4538
|
}
|
4208
4539
|
|
4209
|
-
|
4210
|
-
|
4211
|
-
right: auto;
|
4212
|
-
left: 50%;
|
4213
|
-
width: 600px;
|
4214
|
-
padding-top: 30px;
|
4215
|
-
padding-bottom: 30px;
|
4216
|
-
}
|
4217
|
-
.modal-content {
|
4218
|
-
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
4219
|
-
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
4220
|
-
}
|
4540
|
+
.panel > .list-group .list-group-item {
|
4541
|
+
border-width: 1px 0;
|
4221
4542
|
}
|
4222
4543
|
|
4223
|
-
.
|
4224
|
-
|
4225
|
-
|
4226
|
-
display: block;
|
4227
|
-
font-size: 12px;
|
4228
|
-
line-height: 1.4;
|
4229
|
-
opacity: 0;
|
4230
|
-
filter: alpha(opacity=0);
|
4231
|
-
visibility: visible;
|
4544
|
+
.panel > .list-group .list-group-item:first-child {
|
4545
|
+
border-top-right-radius: 0;
|
4546
|
+
border-top-left-radius: 0;
|
4232
4547
|
}
|
4233
4548
|
|
4234
|
-
.
|
4235
|
-
|
4236
|
-
filter: alpha(opacity=90);
|
4549
|
+
.panel > .list-group .list-group-item:last-child {
|
4550
|
+
border-bottom: 0;
|
4237
4551
|
}
|
4238
4552
|
|
4239
|
-
.
|
4240
|
-
|
4241
|
-
margin-top: -3px;
|
4553
|
+
.panel-heading + .list-group .list-group-item:first-child {
|
4554
|
+
border-top-width: 0;
|
4242
4555
|
}
|
4243
4556
|
|
4244
|
-
.
|
4245
|
-
|
4246
|
-
margin-left: 3px;
|
4557
|
+
.panel > .table {
|
4558
|
+
margin-bottom: 0;
|
4247
4559
|
}
|
4248
4560
|
|
4249
|
-
.
|
4250
|
-
|
4251
|
-
margin-top: 3px;
|
4561
|
+
.panel > .panel-body + .table {
|
4562
|
+
border-top: 1px solid #dddddd;
|
4252
4563
|
}
|
4253
4564
|
|
4254
|
-
.
|
4255
|
-
padding:
|
4256
|
-
|
4565
|
+
.panel-heading {
|
4566
|
+
padding: 10px 15px;
|
4567
|
+
border-bottom: 1px solid transparent;
|
4568
|
+
border-top-right-radius: 3px;
|
4569
|
+
border-top-left-radius: 3px;
|
4257
4570
|
}
|
4258
4571
|
|
4259
|
-
.
|
4260
|
-
|
4261
|
-
|
4262
|
-
|
4263
|
-
text-align: center;
|
4264
|
-
text-decoration: none;
|
4265
|
-
background-color: #000000;
|
4266
|
-
border-radius: 4px;
|
4572
|
+
.panel-title {
|
4573
|
+
margin-top: 0;
|
4574
|
+
margin-bottom: 0;
|
4575
|
+
font-size: 16px;
|
4267
4576
|
}
|
4268
4577
|
|
4269
|
-
.
|
4270
|
-
|
4271
|
-
width: 0;
|
4272
|
-
height: 0;
|
4273
|
-
border-color: transparent;
|
4274
|
-
border-style: solid;
|
4578
|
+
.panel-title > a {
|
4579
|
+
color: inherit;
|
4275
4580
|
}
|
4276
4581
|
|
4277
|
-
.
|
4278
|
-
|
4279
|
-
|
4280
|
-
|
4281
|
-
border-
|
4282
|
-
border-
|
4582
|
+
.panel-footer {
|
4583
|
+
padding: 10px 15px;
|
4584
|
+
background-color: #f5f5f5;
|
4585
|
+
border-top: 1px solid #dddddd;
|
4586
|
+
border-bottom-right-radius: 3px;
|
4587
|
+
border-bottom-left-radius: 3px;
|
4283
4588
|
}
|
4284
4589
|
|
4285
|
-
.
|
4286
|
-
bottom: 0;
|
4287
|
-
|
4288
|
-
border-
|
4289
|
-
border-width: 5px 5px 0;
|
4590
|
+
.panel-group .panel {
|
4591
|
+
margin-bottom: 0;
|
4592
|
+
overflow: hidden;
|
4593
|
+
border-radius: 4px;
|
4290
4594
|
}
|
4291
4595
|
|
4292
|
-
.
|
4293
|
-
|
4294
|
-
bottom: 0;
|
4295
|
-
border-top-color: #000000;
|
4296
|
-
border-width: 5px 5px 0;
|
4596
|
+
.panel-group .panel + .panel {
|
4597
|
+
margin-top: 5px;
|
4297
4598
|
}
|
4298
4599
|
|
4299
|
-
.
|
4300
|
-
|
4301
|
-
left: 0;
|
4302
|
-
margin-top: -5px;
|
4303
|
-
border-right-color: #000000;
|
4304
|
-
border-width: 5px 5px 5px 0;
|
4600
|
+
.panel-group .panel-heading {
|
4601
|
+
border-bottom: 0;
|
4305
4602
|
}
|
4306
|
-
|
4307
|
-
.
|
4308
|
-
top:
|
4309
|
-
right: 0;
|
4310
|
-
margin-top: -5px;
|
4311
|
-
border-left-color: #000000;
|
4312
|
-
border-width: 5px 0 5px 5px;
|
4603
|
+
|
4604
|
+
.panel-group .panel-heading + .panel-collapse .panel-body {
|
4605
|
+
border-top: 1px solid #dddddd;
|
4313
4606
|
}
|
4314
4607
|
|
4315
|
-
.
|
4316
|
-
top: 0;
|
4317
|
-
left: 50%;
|
4318
|
-
margin-left: -5px;
|
4319
|
-
border-bottom-color: #000000;
|
4320
|
-
border-width: 0 5px 5px;
|
4608
|
+
.panel-group .panel-footer {
|
4609
|
+
border-top: 0;
|
4321
4610
|
}
|
4322
4611
|
|
4323
|
-
.
|
4324
|
-
|
4325
|
-
left: 5px;
|
4326
|
-
border-bottom-color: #000000;
|
4327
|
-
border-width: 0 5px 5px;
|
4612
|
+
.panel-group .panel-footer + .panel-collapse .panel-body {
|
4613
|
+
border-bottom: 1px solid #dddddd;
|
4328
4614
|
}
|
4329
4615
|
|
4330
|
-
.
|
4331
|
-
|
4332
|
-
right: 5px;
|
4333
|
-
border-bottom-color: #000000;
|
4334
|
-
border-width: 0 5px 5px;
|
4616
|
+
.panel-default {
|
4617
|
+
border-color: #dddddd;
|
4335
4618
|
}
|
4336
4619
|
|
4337
|
-
.
|
4338
|
-
|
4339
|
-
|
4340
|
-
|
4341
|
-
z-index: 1010;
|
4342
|
-
display: none;
|
4343
|
-
max-width: 276px;
|
4344
|
-
padding: 1px;
|
4345
|
-
text-align: left;
|
4346
|
-
white-space: normal;
|
4347
|
-
background-color: #ffffff;
|
4348
|
-
border: 1px solid #cccccc;
|
4349
|
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
4350
|
-
border-radius: 6px;
|
4351
|
-
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
4352
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
4353
|
-
background-clip: padding-box;
|
4620
|
+
.panel-default > .panel-heading {
|
4621
|
+
color: #333333;
|
4622
|
+
background-color: #f5f5f5;
|
4623
|
+
border-color: #dddddd;
|
4354
4624
|
}
|
4355
4625
|
|
4356
|
-
.
|
4357
|
-
|
4626
|
+
.panel-default > .panel-heading + .panel-collapse .panel-body {
|
4627
|
+
border-top-color: #dddddd;
|
4358
4628
|
}
|
4359
4629
|
|
4360
|
-
.
|
4361
|
-
|
4630
|
+
.panel-default > .panel-footer + .panel-collapse .panel-body {
|
4631
|
+
border-bottom-color: #dddddd;
|
4362
4632
|
}
|
4363
4633
|
|
4364
|
-
.
|
4365
|
-
|
4634
|
+
.panel-primary {
|
4635
|
+
border-color: #428bca;
|
4366
4636
|
}
|
4367
4637
|
|
4368
|
-
.
|
4369
|
-
|
4638
|
+
.panel-primary > .panel-heading {
|
4639
|
+
color: #ffffff;
|
4640
|
+
background-color: #428bca;
|
4641
|
+
border-color: #428bca;
|
4370
4642
|
}
|
4371
4643
|
|
4372
|
-
.
|
4373
|
-
|
4374
|
-
margin: 0;
|
4375
|
-
font-size: 14px;
|
4376
|
-
font-weight: normal;
|
4377
|
-
line-height: 18px;
|
4378
|
-
background-color: #f7f7f7;
|
4379
|
-
border-bottom: 1px solid #ebebeb;
|
4380
|
-
border-radius: 5px 5px 0 0;
|
4644
|
+
.panel-primary > .panel-heading + .panel-collapse .panel-body {
|
4645
|
+
border-top-color: #428bca;
|
4381
4646
|
}
|
4382
4647
|
|
4383
|
-
.
|
4384
|
-
|
4648
|
+
.panel-primary > .panel-footer + .panel-collapse .panel-body {
|
4649
|
+
border-bottom-color: #428bca;
|
4385
4650
|
}
|
4386
4651
|
|
4387
|
-
.
|
4388
|
-
|
4389
|
-
position: absolute;
|
4390
|
-
display: block;
|
4391
|
-
width: 0;
|
4392
|
-
height: 0;
|
4393
|
-
border-color: transparent;
|
4394
|
-
border-style: solid;
|
4652
|
+
.panel-success {
|
4653
|
+
border-color: #d6e9c6;
|
4395
4654
|
}
|
4396
4655
|
|
4397
|
-
.
|
4398
|
-
|
4656
|
+
.panel-success > .panel-heading {
|
4657
|
+
color: #468847;
|
4658
|
+
background-color: #dff0d8;
|
4659
|
+
border-color: #d6e9c6;
|
4399
4660
|
}
|
4400
4661
|
|
4401
|
-
.
|
4402
|
-
border-
|
4403
|
-
content: "";
|
4662
|
+
.panel-success > .panel-heading + .panel-collapse .panel-body {
|
4663
|
+
border-top-color: #d6e9c6;
|
4404
4664
|
}
|
4405
4665
|
|
4406
|
-
.
|
4407
|
-
bottom:
|
4408
|
-
left: 50%;
|
4409
|
-
margin-left: -11px;
|
4410
|
-
border-top-color: #999999;
|
4411
|
-
border-top-color: rgba(0, 0, 0, 0.25);
|
4412
|
-
border-bottom-width: 0;
|
4666
|
+
.panel-success > .panel-footer + .panel-collapse .panel-body {
|
4667
|
+
border-bottom-color: #d6e9c6;
|
4413
4668
|
}
|
4414
4669
|
|
4415
|
-
.
|
4416
|
-
|
4417
|
-
margin-left: -10px;
|
4418
|
-
border-top-color: #ffffff;
|
4419
|
-
border-bottom-width: 0;
|
4420
|
-
content: " ";
|
4670
|
+
.panel-warning {
|
4671
|
+
border-color: #fbeed5;
|
4421
4672
|
}
|
4422
4673
|
|
4423
|
-
.
|
4424
|
-
|
4425
|
-
|
4426
|
-
|
4427
|
-
border-right-color: #999999;
|
4428
|
-
border-right-color: rgba(0, 0, 0, 0.25);
|
4429
|
-
border-left-width: 0;
|
4674
|
+
.panel-warning > .panel-heading {
|
4675
|
+
color: #c09853;
|
4676
|
+
background-color: #fcf8e3;
|
4677
|
+
border-color: #fbeed5;
|
4430
4678
|
}
|
4431
4679
|
|
4432
|
-
.
|
4433
|
-
|
4434
|
-
left: 1px;
|
4435
|
-
border-right-color: #ffffff;
|
4436
|
-
border-left-width: 0;
|
4437
|
-
content: " ";
|
4680
|
+
.panel-warning > .panel-heading + .panel-collapse .panel-body {
|
4681
|
+
border-top-color: #fbeed5;
|
4438
4682
|
}
|
4439
4683
|
|
4440
|
-
.
|
4441
|
-
|
4442
|
-
left: 50%;
|
4443
|
-
margin-left: -11px;
|
4444
|
-
border-bottom-color: #999999;
|
4445
|
-
border-bottom-color: rgba(0, 0, 0, 0.25);
|
4446
|
-
border-top-width: 0;
|
4684
|
+
.panel-warning > .panel-footer + .panel-collapse .panel-body {
|
4685
|
+
border-bottom-color: #fbeed5;
|
4447
4686
|
}
|
4448
4687
|
|
4449
|
-
.
|
4450
|
-
|
4451
|
-
margin-left: -10px;
|
4452
|
-
border-bottom-color: #ffffff;
|
4453
|
-
border-top-width: 0;
|
4454
|
-
content: " ";
|
4688
|
+
.panel-danger {
|
4689
|
+
border-color: #eed3d7;
|
4455
4690
|
}
|
4456
4691
|
|
4457
|
-
.
|
4458
|
-
|
4459
|
-
|
4460
|
-
|
4461
|
-
border-left-color: #999999;
|
4462
|
-
border-left-color: rgba(0, 0, 0, 0.25);
|
4463
|
-
border-right-width: 0;
|
4692
|
+
.panel-danger > .panel-heading {
|
4693
|
+
color: #b94a48;
|
4694
|
+
background-color: #f2dede;
|
4695
|
+
border-color: #eed3d7;
|
4464
4696
|
}
|
4465
4697
|
|
4466
|
-
.
|
4467
|
-
|
4468
|
-
bottom: -10px;
|
4469
|
-
border-left-color: #ffffff;
|
4470
|
-
border-right-width: 0;
|
4471
|
-
content: " ";
|
4698
|
+
.panel-danger > .panel-heading + .panel-collapse .panel-body {
|
4699
|
+
border-top-color: #eed3d7;
|
4472
4700
|
}
|
4473
4701
|
|
4474
|
-
.
|
4475
|
-
|
4476
|
-
margin-bottom: 20px;
|
4477
|
-
color: #c09853;
|
4478
|
-
background-color: #fcf8e3;
|
4479
|
-
border: 1px solid #fbeed5;
|
4480
|
-
border-radius: 4px;
|
4702
|
+
.panel-danger > .panel-footer + .panel-collapse .panel-body {
|
4703
|
+
border-bottom-color: #eed3d7;
|
4481
4704
|
}
|
4482
4705
|
|
4483
|
-
.
|
4484
|
-
|
4485
|
-
color: inherit;
|
4706
|
+
.panel-info {
|
4707
|
+
border-color: #bce8f1;
|
4486
4708
|
}
|
4487
4709
|
|
4488
|
-
.
|
4489
|
-
|
4710
|
+
.panel-info > .panel-heading {
|
4711
|
+
color: #3a87ad;
|
4712
|
+
background-color: #d9edf7;
|
4713
|
+
border-color: #bce8f1;
|
4490
4714
|
}
|
4491
4715
|
|
4492
|
-
.
|
4493
|
-
|
4494
|
-
color: #a47e3c;
|
4716
|
+
.panel-info > .panel-heading + .panel-collapse .panel-body {
|
4717
|
+
border-top-color: #bce8f1;
|
4495
4718
|
}
|
4496
4719
|
|
4497
|
-
.
|
4498
|
-
|
4499
|
-
margin-bottom: 0;
|
4720
|
+
.panel-info > .panel-footer + .panel-collapse .panel-body {
|
4721
|
+
border-bottom-color: #bce8f1;
|
4500
4722
|
}
|
4501
4723
|
|
4502
|
-
.
|
4503
|
-
|
4724
|
+
.well {
|
4725
|
+
min-height: 20px;
|
4726
|
+
padding: 19px;
|
4727
|
+
margin-bottom: 20px;
|
4728
|
+
background-color: #f5f5f5;
|
4729
|
+
border: 1px solid #e3e3e3;
|
4730
|
+
border-radius: 4px;
|
4731
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
4732
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
4504
4733
|
}
|
4505
4734
|
|
4506
|
-
.
|
4507
|
-
|
4735
|
+
.well blockquote {
|
4736
|
+
border-color: #ddd;
|
4737
|
+
border-color: rgba(0, 0, 0, 0.15);
|
4508
4738
|
}
|
4509
4739
|
|
4510
|
-
.
|
4511
|
-
|
4512
|
-
|
4513
|
-
right: -21px;
|
4514
|
-
color: inherit;
|
4740
|
+
.well-lg {
|
4741
|
+
padding: 24px;
|
4742
|
+
border-radius: 6px;
|
4515
4743
|
}
|
4516
4744
|
|
4517
|
-
.
|
4518
|
-
|
4519
|
-
|
4520
|
-
border-color: #d6e9c6;
|
4745
|
+
.well-sm {
|
4746
|
+
padding: 9px;
|
4747
|
+
border-radius: 3px;
|
4521
4748
|
}
|
4522
4749
|
|
4523
|
-
.
|
4524
|
-
|
4750
|
+
.close {
|
4751
|
+
float: right;
|
4752
|
+
font-size: 21px;
|
4753
|
+
font-weight: bold;
|
4754
|
+
line-height: 1;
|
4755
|
+
color: #000000;
|
4756
|
+
text-shadow: 0 1px 0 #ffffff;
|
4757
|
+
opacity: 0.2;
|
4758
|
+
filter: alpha(opacity=20);
|
4525
4759
|
}
|
4526
4760
|
|
4527
|
-
.
|
4528
|
-
|
4761
|
+
.close:hover,
|
4762
|
+
.close:focus {
|
4763
|
+
color: #000000;
|
4764
|
+
text-decoration: none;
|
4765
|
+
cursor: pointer;
|
4766
|
+
opacity: 0.5;
|
4767
|
+
filter: alpha(opacity=50);
|
4529
4768
|
}
|
4530
4769
|
|
4531
|
-
.
|
4532
|
-
|
4533
|
-
|
4534
|
-
|
4770
|
+
button.close {
|
4771
|
+
padding: 0;
|
4772
|
+
cursor: pointer;
|
4773
|
+
background: transparent;
|
4774
|
+
border: 0;
|
4775
|
+
-webkit-appearance: none;
|
4535
4776
|
}
|
4536
4777
|
|
4537
|
-
.
|
4538
|
-
|
4778
|
+
.modal-open {
|
4779
|
+
overflow: hidden;
|
4780
|
+
}
|
4781
|
+
|
4782
|
+
body.modal-open,
|
4783
|
+
.modal-open .navbar-fixed-top,
|
4784
|
+
.modal-open .navbar-fixed-bottom {
|
4785
|
+
margin-right: 15px;
|
4539
4786
|
}
|
4540
4787
|
|
4541
|
-
.
|
4542
|
-
|
4788
|
+
.modal {
|
4789
|
+
position: fixed;
|
4790
|
+
top: 0;
|
4791
|
+
right: 0;
|
4792
|
+
bottom: 0;
|
4793
|
+
left: 0;
|
4794
|
+
z-index: 1040;
|
4795
|
+
display: none;
|
4796
|
+
overflow: auto;
|
4797
|
+
overflow-y: scroll;
|
4543
4798
|
}
|
4544
4799
|
|
4545
|
-
.
|
4546
|
-
|
4547
|
-
|
4548
|
-
|
4800
|
+
.modal.fade .modal-dialog {
|
4801
|
+
-webkit-transform: translate(0, -25%);
|
4802
|
+
-ms-transform: translate(0, -25%);
|
4803
|
+
transform: translate(0, -25%);
|
4804
|
+
-webkit-transition: -webkit-transform 0.3s ease-out;
|
4805
|
+
-moz-transition: -moz-transform 0.3s ease-out;
|
4806
|
+
-o-transition: -o-transform 0.3s ease-out;
|
4807
|
+
transition: transform 0.3s ease-out;
|
4549
4808
|
}
|
4550
4809
|
|
4551
|
-
.
|
4552
|
-
|
4810
|
+
.modal.in .modal-dialog {
|
4811
|
+
-webkit-transform: translate(0, 0);
|
4812
|
+
-ms-transform: translate(0, 0);
|
4813
|
+
transform: translate(0, 0);
|
4553
4814
|
}
|
4554
4815
|
|
4555
|
-
.
|
4556
|
-
|
4816
|
+
.modal-dialog {
|
4817
|
+
z-index: 1050;
|
4818
|
+
width: auto;
|
4819
|
+
padding: 10px;
|
4820
|
+
margin-right: auto;
|
4821
|
+
margin-left: auto;
|
4557
4822
|
}
|
4558
4823
|
|
4559
|
-
.
|
4560
|
-
|
4561
|
-
padding: 4px;
|
4562
|
-
line-height: 1.428571429;
|
4824
|
+
.modal-content {
|
4825
|
+
position: relative;
|
4563
4826
|
background-color: #ffffff;
|
4564
|
-
border: 1px solid #
|
4565
|
-
border
|
4566
|
-
-
|
4567
|
-
|
4827
|
+
border: 1px solid #999999;
|
4828
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
4829
|
+
border-radius: 6px;
|
4830
|
+
outline: none;
|
4831
|
+
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
4832
|
+
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
4833
|
+
background-clip: padding-box;
|
4568
4834
|
}
|
4569
4835
|
|
4570
|
-
.
|
4571
|
-
|
4836
|
+
.modal-backdrop {
|
4837
|
+
position: fixed;
|
4838
|
+
top: 0;
|
4839
|
+
right: 0;
|
4840
|
+
bottom: 0;
|
4841
|
+
left: 0;
|
4842
|
+
z-index: 1030;
|
4843
|
+
background-color: #000000;
|
4572
4844
|
}
|
4573
4845
|
|
4574
|
-
.
|
4575
|
-
|
4576
|
-
|
4577
|
-
height: auto;
|
4578
|
-
max-width: 100%;
|
4846
|
+
.modal-backdrop.fade {
|
4847
|
+
opacity: 0;
|
4848
|
+
filter: alpha(opacity=0);
|
4579
4849
|
}
|
4580
4850
|
|
4581
|
-
|
4582
|
-
|
4583
|
-
|
4851
|
+
.modal-backdrop.in {
|
4852
|
+
opacity: 0.5;
|
4853
|
+
filter: alpha(opacity=50);
|
4584
4854
|
}
|
4585
4855
|
|
4586
|
-
.
|
4587
|
-
|
4588
|
-
|
4856
|
+
.modal-header {
|
4857
|
+
min-height: 16.428571429px;
|
4858
|
+
padding: 15px;
|
4859
|
+
border-bottom: 1px solid #e5e5e5;
|
4589
4860
|
}
|
4590
4861
|
|
4591
|
-
.
|
4592
|
-
|
4593
|
-
color: #333333;
|
4862
|
+
.modal-header .close {
|
4863
|
+
margin-top: -2px;
|
4594
4864
|
}
|
4595
4865
|
|
4596
|
-
.
|
4597
|
-
|
4598
|
-
|
4599
|
-
zoom: 1;
|
4866
|
+
.modal-title {
|
4867
|
+
margin: 0;
|
4868
|
+
line-height: 1.428571429;
|
4600
4869
|
}
|
4601
4870
|
|
4602
|
-
.
|
4603
|
-
|
4871
|
+
.modal-body {
|
4872
|
+
position: relative;
|
4873
|
+
padding: 20px;
|
4874
|
+
}
|
4875
|
+
|
4876
|
+
.modal-footer {
|
4877
|
+
padding: 19px 20px 20px;
|
4604
4878
|
margin-top: 15px;
|
4879
|
+
text-align: right;
|
4880
|
+
border-top: 1px solid #e5e5e5;
|
4605
4881
|
}
|
4606
4882
|
|
4607
|
-
.
|
4608
|
-
|
4883
|
+
.modal-footer:before,
|
4884
|
+
.modal-footer:after {
|
4885
|
+
display: table;
|
4886
|
+
content: " ";
|
4609
4887
|
}
|
4610
4888
|
|
4611
|
-
.
|
4612
|
-
|
4889
|
+
.modal-footer:after {
|
4890
|
+
clear: both;
|
4613
4891
|
}
|
4614
4892
|
|
4615
|
-
.
|
4616
|
-
|
4893
|
+
.modal-footer:before,
|
4894
|
+
.modal-footer:after {
|
4895
|
+
display: table;
|
4896
|
+
content: " ";
|
4617
4897
|
}
|
4618
4898
|
|
4619
|
-
.
|
4620
|
-
|
4899
|
+
.modal-footer:after {
|
4900
|
+
clear: both;
|
4621
4901
|
}
|
4622
4902
|
|
4623
|
-
.
|
4624
|
-
margin-
|
4903
|
+
.modal-footer .btn + .btn {
|
4904
|
+
margin-bottom: 0;
|
4905
|
+
margin-left: 5px;
|
4625
4906
|
}
|
4626
4907
|
|
4627
|
-
.
|
4628
|
-
|
4629
|
-
list-style: none;
|
4908
|
+
.modal-footer .btn-group .btn + .btn {
|
4909
|
+
margin-left: -1px;
|
4630
4910
|
}
|
4631
4911
|
|
4632
|
-
.
|
4633
|
-
|
4634
|
-
padding: .25em .6em;
|
4635
|
-
font-size: 75%;
|
4636
|
-
font-weight: bold;
|
4637
|
-
line-height: 1;
|
4638
|
-
color: #ffffff;
|
4639
|
-
text-align: center;
|
4640
|
-
white-space: nowrap;
|
4641
|
-
vertical-align: baseline;
|
4642
|
-
border-radius: .25em;
|
4912
|
+
.modal-footer .btn-block + .btn-block {
|
4913
|
+
margin-left: 0;
|
4643
4914
|
}
|
4644
4915
|
|
4645
|
-
|
4646
|
-
.
|
4647
|
-
|
4648
|
-
|
4649
|
-
|
4916
|
+
@media screen and (min-width: 768px) {
|
4917
|
+
.modal-dialog {
|
4918
|
+
right: auto;
|
4919
|
+
left: 50%;
|
4920
|
+
width: 600px;
|
4921
|
+
padding-top: 30px;
|
4922
|
+
padding-bottom: 30px;
|
4923
|
+
}
|
4924
|
+
.modal-content {
|
4925
|
+
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
4926
|
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
4927
|
+
}
|
4650
4928
|
}
|
4651
4929
|
|
4652
|
-
.
|
4653
|
-
|
4930
|
+
.tooltip {
|
4931
|
+
position: absolute;
|
4932
|
+
z-index: 1030;
|
4933
|
+
display: block;
|
4934
|
+
font-size: 12px;
|
4935
|
+
line-height: 1.4;
|
4936
|
+
opacity: 0;
|
4937
|
+
filter: alpha(opacity=0);
|
4938
|
+
visibility: visible;
|
4654
4939
|
}
|
4655
4940
|
|
4656
|
-
.
|
4657
|
-
|
4941
|
+
.tooltip.in {
|
4942
|
+
opacity: 0.9;
|
4943
|
+
filter: alpha(opacity=90);
|
4658
4944
|
}
|
4659
4945
|
|
4660
|
-
.
|
4661
|
-
|
4662
|
-
|
4946
|
+
.tooltip.top {
|
4947
|
+
padding: 5px 0;
|
4948
|
+
margin-top: -3px;
|
4663
4949
|
}
|
4664
4950
|
|
4665
|
-
.
|
4666
|
-
|
4951
|
+
.tooltip.right {
|
4952
|
+
padding: 0 5px;
|
4953
|
+
margin-left: 3px;
|
4667
4954
|
}
|
4668
4955
|
|
4669
|
-
.
|
4670
|
-
|
4671
|
-
|
4956
|
+
.tooltip.bottom {
|
4957
|
+
padding: 5px 0;
|
4958
|
+
margin-top: 3px;
|
4672
4959
|
}
|
4673
4960
|
|
4674
|
-
.
|
4675
|
-
|
4961
|
+
.tooltip.left {
|
4962
|
+
padding: 0 5px;
|
4963
|
+
margin-left: -3px;
|
4676
4964
|
}
|
4677
4965
|
|
4678
|
-
.
|
4679
|
-
|
4680
|
-
|
4966
|
+
.tooltip-inner {
|
4967
|
+
max-width: 200px;
|
4968
|
+
padding: 3px 8px;
|
4969
|
+
color: #ffffff;
|
4970
|
+
text-align: center;
|
4971
|
+
text-decoration: none;
|
4972
|
+
background-color: #000000;
|
4973
|
+
border-radius: 4px;
|
4681
4974
|
}
|
4682
4975
|
|
4683
|
-
.
|
4684
|
-
|
4976
|
+
.tooltip-arrow {
|
4977
|
+
position: absolute;
|
4978
|
+
width: 0;
|
4979
|
+
height: 0;
|
4980
|
+
border-color: transparent;
|
4981
|
+
border-style: solid;
|
4685
4982
|
}
|
4686
4983
|
|
4687
|
-
.
|
4688
|
-
|
4689
|
-
|
4984
|
+
.tooltip.top .tooltip-arrow {
|
4985
|
+
bottom: 0;
|
4986
|
+
left: 50%;
|
4987
|
+
margin-left: -5px;
|
4988
|
+
border-top-color: #000000;
|
4989
|
+
border-width: 5px 5px 0;
|
4690
4990
|
}
|
4691
4991
|
|
4692
|
-
.
|
4693
|
-
|
4992
|
+
.tooltip.top-left .tooltip-arrow {
|
4993
|
+
bottom: 0;
|
4994
|
+
left: 5px;
|
4995
|
+
border-top-color: #000000;
|
4996
|
+
border-width: 5px 5px 0;
|
4694
4997
|
}
|
4695
4998
|
|
4696
|
-
.
|
4697
|
-
|
4698
|
-
|
4999
|
+
.tooltip.top-right .tooltip-arrow {
|
5000
|
+
right: 5px;
|
5001
|
+
bottom: 0;
|
5002
|
+
border-top-color: #000000;
|
5003
|
+
border-width: 5px 5px 0;
|
4699
5004
|
}
|
4700
5005
|
|
4701
|
-
.
|
4702
|
-
|
4703
|
-
|
4704
|
-
|
4705
|
-
|
4706
|
-
|
4707
|
-
line-height: 1;
|
4708
|
-
color: #ffffff;
|
4709
|
-
text-align: center;
|
4710
|
-
white-space: nowrap;
|
4711
|
-
vertical-align: baseline;
|
4712
|
-
background-color: #999999;
|
4713
|
-
border-radius: 10px;
|
5006
|
+
.tooltip.right .tooltip-arrow {
|
5007
|
+
top: 50%;
|
5008
|
+
left: 0;
|
5009
|
+
margin-top: -5px;
|
5010
|
+
border-right-color: #000000;
|
5011
|
+
border-width: 5px 5px 5px 0;
|
4714
5012
|
}
|
4715
5013
|
|
4716
|
-
.
|
4717
|
-
|
5014
|
+
.tooltip.left .tooltip-arrow {
|
5015
|
+
top: 50%;
|
5016
|
+
right: 0;
|
5017
|
+
margin-top: -5px;
|
5018
|
+
border-left-color: #000000;
|
5019
|
+
border-width: 5px 0 5px 5px;
|
4718
5020
|
}
|
4719
5021
|
|
4720
|
-
|
4721
|
-
|
4722
|
-
|
4723
|
-
|
4724
|
-
|
5022
|
+
.tooltip.bottom .tooltip-arrow {
|
5023
|
+
top: 0;
|
5024
|
+
left: 50%;
|
5025
|
+
margin-left: -5px;
|
5026
|
+
border-bottom-color: #000000;
|
5027
|
+
border-width: 0 5px 5px;
|
4725
5028
|
}
|
4726
5029
|
|
4727
|
-
.
|
4728
|
-
|
4729
|
-
|
5030
|
+
.tooltip.bottom-left .tooltip-arrow {
|
5031
|
+
top: 0;
|
5032
|
+
left: 5px;
|
5033
|
+
border-bottom-color: #000000;
|
5034
|
+
border-width: 0 5px 5px;
|
4730
5035
|
}
|
4731
5036
|
|
4732
|
-
|
4733
|
-
|
4734
|
-
|
5037
|
+
.tooltip.bottom-right .tooltip-arrow {
|
5038
|
+
top: 0;
|
5039
|
+
right: 5px;
|
5040
|
+
border-bottom-color: #000000;
|
5041
|
+
border-width: 0 5px 5px;
|
5042
|
+
}
|
5043
|
+
|
5044
|
+
.popover {
|
5045
|
+
position: absolute;
|
5046
|
+
top: 0;
|
5047
|
+
left: 0;
|
5048
|
+
z-index: 1010;
|
5049
|
+
display: none;
|
5050
|
+
max-width: 276px;
|
5051
|
+
padding: 1px;
|
5052
|
+
text-align: left;
|
5053
|
+
white-space: normal;
|
4735
5054
|
background-color: #ffffff;
|
5055
|
+
border: 1px solid #cccccc;
|
5056
|
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
5057
|
+
border-radius: 6px;
|
5058
|
+
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
5059
|
+
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
5060
|
+
background-clip: padding-box;
|
4736
5061
|
}
|
4737
5062
|
|
4738
|
-
.
|
4739
|
-
margin-
|
5063
|
+
.popover.top {
|
5064
|
+
margin-top: -10px;
|
4740
5065
|
}
|
4741
5066
|
|
4742
|
-
|
4743
|
-
|
4744
|
-
background-position: 40px 0;
|
4745
|
-
}
|
4746
|
-
to {
|
4747
|
-
background-position: 0 0;
|
4748
|
-
}
|
5067
|
+
.popover.right {
|
5068
|
+
margin-left: 10px;
|
4749
5069
|
}
|
4750
5070
|
|
4751
|
-
|
4752
|
-
|
4753
|
-
background-position: 40px 0;
|
4754
|
-
}
|
4755
|
-
to {
|
4756
|
-
background-position: 0 0;
|
4757
|
-
}
|
5071
|
+
.popover.bottom {
|
5072
|
+
margin-top: 10px;
|
4758
5073
|
}
|
4759
5074
|
|
4760
|
-
|
4761
|
-
|
4762
|
-
background-position: 0 0;
|
4763
|
-
}
|
4764
|
-
to {
|
4765
|
-
background-position: 40px 0;
|
4766
|
-
}
|
5075
|
+
.popover.left {
|
5076
|
+
margin-left: -10px;
|
4767
5077
|
}
|
4768
5078
|
|
4769
|
-
|
4770
|
-
|
4771
|
-
|
4772
|
-
|
4773
|
-
|
4774
|
-
|
4775
|
-
|
5079
|
+
.popover-title {
|
5080
|
+
padding: 8px 14px;
|
5081
|
+
margin: 0;
|
5082
|
+
font-size: 14px;
|
5083
|
+
font-weight: normal;
|
5084
|
+
line-height: 18px;
|
5085
|
+
background-color: #f7f7f7;
|
5086
|
+
border-bottom: 1px solid #ebebeb;
|
5087
|
+
border-radius: 5px 5px 0 0;
|
4776
5088
|
}
|
4777
5089
|
|
4778
|
-
.
|
4779
|
-
|
4780
|
-
margin-bottom: 20px;
|
4781
|
-
overflow: hidden;
|
4782
|
-
background-color: #f5f5f5;
|
4783
|
-
border-radius: 4px;
|
4784
|
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
4785
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
5090
|
+
.popover-content {
|
5091
|
+
padding: 9px 14px;
|
4786
5092
|
}
|
4787
5093
|
|
4788
|
-
.
|
4789
|
-
|
5094
|
+
.popover .arrow,
|
5095
|
+
.popover .arrow:after {
|
5096
|
+
position: absolute;
|
5097
|
+
display: block;
|
4790
5098
|
width: 0;
|
4791
|
-
height:
|
4792
|
-
|
4793
|
-
|
4794
|
-
text-align: center;
|
4795
|
-
background-color: #428bca;
|
4796
|
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
4797
|
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
4798
|
-
-webkit-transition: width 0.6s ease;
|
4799
|
-
transition: width 0.6s ease;
|
5099
|
+
height: 0;
|
5100
|
+
border-color: transparent;
|
5101
|
+
border-style: solid;
|
4800
5102
|
}
|
4801
5103
|
|
4802
|
-
.
|
4803
|
-
|
4804
|
-
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);
|
4805
|
-
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);
|
4806
|
-
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);
|
4807
|
-
background-size: 40px 40px;
|
5104
|
+
.popover .arrow {
|
5105
|
+
border-width: 11px;
|
4808
5106
|
}
|
4809
5107
|
|
4810
|
-
.
|
4811
|
-
-
|
4812
|
-
|
4813
|
-
-ms-animation: progress-bar-stripes 2s linear infinite;
|
4814
|
-
-o-animation: progress-bar-stripes 2s linear infinite;
|
4815
|
-
animation: progress-bar-stripes 2s linear infinite;
|
5108
|
+
.popover .arrow:after {
|
5109
|
+
border-width: 10px;
|
5110
|
+
content: "";
|
4816
5111
|
}
|
4817
5112
|
|
4818
|
-
.
|
4819
|
-
|
5113
|
+
.popover.top .arrow {
|
5114
|
+
bottom: -11px;
|
5115
|
+
left: 50%;
|
5116
|
+
margin-left: -11px;
|
5117
|
+
border-top-color: #999999;
|
5118
|
+
border-top-color: rgba(0, 0, 0, 0.25);
|
5119
|
+
border-bottom-width: 0;
|
4820
5120
|
}
|
4821
5121
|
|
4822
|
-
.
|
4823
|
-
|
4824
|
-
|
4825
|
-
|
4826
|
-
|
5122
|
+
.popover.top .arrow:after {
|
5123
|
+
bottom: 1px;
|
5124
|
+
margin-left: -10px;
|
5125
|
+
border-top-color: #ffffff;
|
5126
|
+
border-bottom-width: 0;
|
5127
|
+
content: " ";
|
4827
5128
|
}
|
4828
5129
|
|
4829
|
-
.
|
4830
|
-
|
5130
|
+
.popover.right .arrow {
|
5131
|
+
top: 50%;
|
5132
|
+
left: -11px;
|
5133
|
+
margin-top: -11px;
|
5134
|
+
border-right-color: #999999;
|
5135
|
+
border-right-color: rgba(0, 0, 0, 0.25);
|
5136
|
+
border-left-width: 0;
|
4831
5137
|
}
|
4832
5138
|
|
4833
|
-
.
|
4834
|
-
|
4835
|
-
|
4836
|
-
|
4837
|
-
|
5139
|
+
.popover.right .arrow:after {
|
5140
|
+
bottom: -10px;
|
5141
|
+
left: 1px;
|
5142
|
+
border-right-color: #ffffff;
|
5143
|
+
border-left-width: 0;
|
5144
|
+
content: " ";
|
4838
5145
|
}
|
4839
5146
|
|
4840
|
-
.
|
4841
|
-
|
5147
|
+
.popover.bottom .arrow {
|
5148
|
+
top: -11px;
|
5149
|
+
left: 50%;
|
5150
|
+
margin-left: -11px;
|
5151
|
+
border-bottom-color: #999999;
|
5152
|
+
border-bottom-color: rgba(0, 0, 0, 0.25);
|
5153
|
+
border-top-width: 0;
|
4842
5154
|
}
|
4843
5155
|
|
4844
|
-
.
|
4845
|
-
|
4846
|
-
|
4847
|
-
|
4848
|
-
|
5156
|
+
.popover.bottom .arrow:after {
|
5157
|
+
top: 1px;
|
5158
|
+
margin-left: -10px;
|
5159
|
+
border-bottom-color: #ffffff;
|
5160
|
+
border-top-width: 0;
|
5161
|
+
content: " ";
|
4849
5162
|
}
|
4850
5163
|
|
4851
|
-
.
|
4852
|
-
|
5164
|
+
.popover.left .arrow {
|
5165
|
+
top: 50%;
|
5166
|
+
right: -11px;
|
5167
|
+
margin-top: -11px;
|
5168
|
+
border-left-color: #999999;
|
5169
|
+
border-left-color: rgba(0, 0, 0, 0.25);
|
5170
|
+
border-right-width: 0;
|
4853
5171
|
}
|
4854
5172
|
|
4855
|
-
.
|
4856
|
-
|
4857
|
-
|
4858
|
-
|
4859
|
-
|
5173
|
+
.popover.left .arrow:after {
|
5174
|
+
right: 1px;
|
5175
|
+
bottom: -10px;
|
5176
|
+
border-left-color: #ffffff;
|
5177
|
+
border-right-width: 0;
|
5178
|
+
content: " ";
|
4860
5179
|
}
|
4861
5180
|
|
4862
5181
|
.carousel {
|
@@ -4873,7 +5192,7 @@ a.list-group-item.active > .badge,
|
|
4873
5192
|
position: relative;
|
4874
5193
|
display: none;
|
4875
5194
|
-webkit-transition: 0.6s ease-in-out left;
|
4876
|
-
|
5195
|
+
transition: 0.6s ease-in-out left;
|
4877
5196
|
}
|
4878
5197
|
|
4879
5198
|
.carousel-inner > .item > img,
|
@@ -4965,12 +5284,18 @@ a.list-group-item.active > .badge,
|
|
4965
5284
|
}
|
4966
5285
|
|
4967
5286
|
.carousel-control .icon-prev,
|
4968
|
-
.carousel-control .icon-next
|
5287
|
+
.carousel-control .icon-next,
|
5288
|
+
.carousel-control .glyphicon-chevron-left,
|
5289
|
+
.carousel-control .glyphicon-chevron-right {
|
4969
5290
|
position: absolute;
|
4970
5291
|
top: 50%;
|
4971
5292
|
left: 50%;
|
4972
5293
|
z-index: 5;
|
4973
5294
|
display: inline-block;
|
5295
|
+
}
|
5296
|
+
|
5297
|
+
.carousel-control .icon-prev,
|
5298
|
+
.carousel-control .icon-next {
|
4974
5299
|
width: 20px;
|
4975
5300
|
height: 20px;
|
4976
5301
|
margin-top: -10px;
|
@@ -5052,35 +5377,6 @@ a.list-group-item.active > .badge,
|
|
5052
5377
|
}
|
5053
5378
|
}
|
5054
5379
|
|
5055
|
-
.jumbotron {
|
5056
|
-
padding: 30px;
|
5057
|
-
margin-bottom: 30px;
|
5058
|
-
font-size: 21px;
|
5059
|
-
font-weight: 200;
|
5060
|
-
line-height: 2.1428571435;
|
5061
|
-
color: inherit;
|
5062
|
-
background-color: #eeeeee;
|
5063
|
-
}
|
5064
|
-
|
5065
|
-
.jumbotron h1 {
|
5066
|
-
line-height: 1;
|
5067
|
-
color: inherit;
|
5068
|
-
}
|
5069
|
-
|
5070
|
-
.jumbotron p {
|
5071
|
-
line-height: 1.4;
|
5072
|
-
}
|
5073
|
-
|
5074
|
-
@media screen and (min-width: 768px) {
|
5075
|
-
.jumbotron {
|
5076
|
-
padding: 50px 60px;
|
5077
|
-
border-radius: 6px;
|
5078
|
-
}
|
5079
|
-
.jumbotron h1 {
|
5080
|
-
font-size: 63px;
|
5081
|
-
}
|
5082
|
-
}
|
5083
|
-
|
5084
5380
|
.clearfix:before,
|
5085
5381
|
.clearfix:after {
|
5086
5382
|
display: table;
|
@@ -5123,13 +5419,13 @@ a.list-group-item.active > .badge,
|
|
5123
5419
|
position: fixed;
|
5124
5420
|
}
|
5125
5421
|
|
5126
|
-
@-ms-viewport {
|
5127
|
-
|
5422
|
+
@-ms-viewport {
|
5423
|
+
width: device-width;
|
5128
5424
|
}
|
5129
5425
|
|
5130
5426
|
@media screen and (max-width: 400px) {
|
5131
|
-
|
5132
|
-
|
5427
|
+
@-ms-viewport {
|
5428
|
+
width: 320px;
|
5133
5429
|
}
|
5134
5430
|
}
|
5135
5431
|
|
@@ -5139,54 +5435,67 @@ a.list-group-item.active > .badge,
|
|
5139
5435
|
}
|
5140
5436
|
|
5141
5437
|
.visible-xs {
|
5142
|
-
display:
|
5438
|
+
display: none !important;
|
5143
5439
|
}
|
5144
5440
|
|
5145
5441
|
tr.visible-xs {
|
5146
|
-
display:
|
5442
|
+
display: none !important;
|
5147
5443
|
}
|
5148
5444
|
|
5149
5445
|
th.visible-xs,
|
5150
5446
|
td.visible-xs {
|
5151
|
-
display:
|
5447
|
+
display: none !important;
|
5152
5448
|
}
|
5153
5449
|
|
5154
|
-
@media (
|
5450
|
+
@media (max-width: 767px) {
|
5155
5451
|
.visible-xs {
|
5156
|
-
display:
|
5452
|
+
display: block !important;
|
5157
5453
|
}
|
5158
5454
|
tr.visible-xs {
|
5159
|
-
display:
|
5455
|
+
display: table-row !important;
|
5160
5456
|
}
|
5161
5457
|
th.visible-xs,
|
5162
5458
|
td.visible-xs {
|
5163
|
-
display:
|
5459
|
+
display: table-cell !important;
|
5460
|
+
}
|
5461
|
+
}
|
5462
|
+
|
5463
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5464
|
+
.visible-xs.visible-sm {
|
5465
|
+
display: block !important;
|
5466
|
+
}
|
5467
|
+
tr.visible-xs.visible-sm {
|
5468
|
+
display: table-row !important;
|
5469
|
+
}
|
5470
|
+
th.visible-xs.visible-sm,
|
5471
|
+
td.visible-xs.visible-sm {
|
5472
|
+
display: table-cell !important;
|
5164
5473
|
}
|
5165
5474
|
}
|
5166
5475
|
|
5167
5476
|
@media (min-width: 992px) and (max-width: 1199px) {
|
5168
|
-
.visible-xs {
|
5169
|
-
display:
|
5477
|
+
.visible-xs.visible-md {
|
5478
|
+
display: block !important;
|
5170
5479
|
}
|
5171
|
-
tr.visible-xs {
|
5172
|
-
display:
|
5480
|
+
tr.visible-xs.visible-md {
|
5481
|
+
display: table-row !important;
|
5173
5482
|
}
|
5174
|
-
th.visible-xs,
|
5175
|
-
td.visible-xs {
|
5176
|
-
display:
|
5483
|
+
th.visible-xs.visible-md,
|
5484
|
+
td.visible-xs.visible-md {
|
5485
|
+
display: table-cell !important;
|
5177
5486
|
}
|
5178
5487
|
}
|
5179
5488
|
|
5180
5489
|
@media (min-width: 1200px) {
|
5181
|
-
.visible-xs {
|
5182
|
-
display:
|
5490
|
+
.visible-xs.visible-lg {
|
5491
|
+
display: block !important;
|
5183
5492
|
}
|
5184
|
-
tr.visible-xs {
|
5185
|
-
display:
|
5493
|
+
tr.visible-xs.visible-lg {
|
5494
|
+
display: table-row !important;
|
5186
5495
|
}
|
5187
|
-
th.visible-xs,
|
5188
|
-
td.visible-xs {
|
5189
|
-
display:
|
5496
|
+
th.visible-xs.visible-lg,
|
5497
|
+
td.visible-xs.visible-lg {
|
5498
|
+
display: table-cell !important;
|
5190
5499
|
}
|
5191
5500
|
}
|
5192
5501
|
|
@@ -5203,6 +5512,19 @@ td.visible-sm {
|
|
5203
5512
|
display: none !important;
|
5204
5513
|
}
|
5205
5514
|
|
5515
|
+
@media (max-width: 767px) {
|
5516
|
+
.visible-sm.visible-xs {
|
5517
|
+
display: block !important;
|
5518
|
+
}
|
5519
|
+
tr.visible-sm.visible-xs {
|
5520
|
+
display: table-row !important;
|
5521
|
+
}
|
5522
|
+
th.visible-sm.visible-xs,
|
5523
|
+
td.visible-sm.visible-xs {
|
5524
|
+
display: table-cell !important;
|
5525
|
+
}
|
5526
|
+
}
|
5527
|
+
|
5206
5528
|
@media (min-width: 768px) and (max-width: 991px) {
|
5207
5529
|
.visible-sm {
|
5208
5530
|
display: block !important;
|
@@ -5217,28 +5539,28 @@ td.visible-sm {
|
|
5217
5539
|
}
|
5218
5540
|
|
5219
5541
|
@media (min-width: 992px) and (max-width: 1199px) {
|
5220
|
-
.visible-sm {
|
5221
|
-
display:
|
5542
|
+
.visible-sm.visible-md {
|
5543
|
+
display: block !important;
|
5222
5544
|
}
|
5223
|
-
tr.visible-sm {
|
5224
|
-
display:
|
5545
|
+
tr.visible-sm.visible-md {
|
5546
|
+
display: table-row !important;
|
5225
5547
|
}
|
5226
|
-
th.visible-sm,
|
5227
|
-
td.visible-sm {
|
5228
|
-
display:
|
5548
|
+
th.visible-sm.visible-md,
|
5549
|
+
td.visible-sm.visible-md {
|
5550
|
+
display: table-cell !important;
|
5229
5551
|
}
|
5230
5552
|
}
|
5231
5553
|
|
5232
5554
|
@media (min-width: 1200px) {
|
5233
|
-
.visible-sm {
|
5234
|
-
display:
|
5555
|
+
.visible-sm.visible-lg {
|
5556
|
+
display: block !important;
|
5235
5557
|
}
|
5236
|
-
tr.visible-sm {
|
5237
|
-
display:
|
5558
|
+
tr.visible-sm.visible-lg {
|
5559
|
+
display: table-row !important;
|
5238
5560
|
}
|
5239
|
-
th.visible-sm,
|
5240
|
-
td.visible-sm {
|
5241
|
-
display:
|
5561
|
+
th.visible-sm.visible-lg,
|
5562
|
+
td.visible-sm.visible-lg {
|
5563
|
+
display: table-cell !important;
|
5242
5564
|
}
|
5243
5565
|
}
|
5244
5566
|
|
@@ -5255,16 +5577,29 @@ td.visible-md {
|
|
5255
5577
|
display: none !important;
|
5256
5578
|
}
|
5257
5579
|
|
5580
|
+
@media (max-width: 767px) {
|
5581
|
+
.visible-md.visible-xs {
|
5582
|
+
display: block !important;
|
5583
|
+
}
|
5584
|
+
tr.visible-md.visible-xs {
|
5585
|
+
display: table-row !important;
|
5586
|
+
}
|
5587
|
+
th.visible-md.visible-xs,
|
5588
|
+
td.visible-md.visible-xs {
|
5589
|
+
display: table-cell !important;
|
5590
|
+
}
|
5591
|
+
}
|
5592
|
+
|
5258
5593
|
@media (min-width: 768px) and (max-width: 991px) {
|
5259
|
-
.visible-md {
|
5260
|
-
display:
|
5594
|
+
.visible-md.visible-sm {
|
5595
|
+
display: block !important;
|
5261
5596
|
}
|
5262
|
-
tr.visible-md {
|
5263
|
-
display:
|
5597
|
+
tr.visible-md.visible-sm {
|
5598
|
+
display: table-row !important;
|
5264
5599
|
}
|
5265
|
-
th.visible-md,
|
5266
|
-
td.visible-md {
|
5267
|
-
display:
|
5600
|
+
th.visible-md.visible-sm,
|
5601
|
+
td.visible-md.visible-sm {
|
5602
|
+
display: table-cell !important;
|
5268
5603
|
}
|
5269
5604
|
}
|
5270
5605
|
|
@@ -5282,15 +5617,15 @@ td.visible-md {
|
|
5282
5617
|
}
|
5283
5618
|
|
5284
5619
|
@media (min-width: 1200px) {
|
5285
|
-
.visible-md {
|
5286
|
-
display:
|
5620
|
+
.visible-md.visible-lg {
|
5621
|
+
display: block !important;
|
5287
5622
|
}
|
5288
|
-
tr.visible-md {
|
5289
|
-
display:
|
5623
|
+
tr.visible-md.visible-lg {
|
5624
|
+
display: table-row !important;
|
5290
5625
|
}
|
5291
|
-
th.visible-md,
|
5292
|
-
td.visible-md {
|
5293
|
-
display:
|
5626
|
+
th.visible-md.visible-lg,
|
5627
|
+
td.visible-md.visible-lg {
|
5628
|
+
display: table-cell !important;
|
5294
5629
|
}
|
5295
5630
|
}
|
5296
5631
|
|
@@ -5307,29 +5642,42 @@ td.visible-lg {
|
|
5307
5642
|
display: none !important;
|
5308
5643
|
}
|
5309
5644
|
|
5645
|
+
@media (max-width: 767px) {
|
5646
|
+
.visible-lg.visible-xs {
|
5647
|
+
display: block !important;
|
5648
|
+
}
|
5649
|
+
tr.visible-lg.visible-xs {
|
5650
|
+
display: table-row !important;
|
5651
|
+
}
|
5652
|
+
th.visible-lg.visible-xs,
|
5653
|
+
td.visible-lg.visible-xs {
|
5654
|
+
display: table-cell !important;
|
5655
|
+
}
|
5656
|
+
}
|
5657
|
+
|
5310
5658
|
@media (min-width: 768px) and (max-width: 991px) {
|
5311
|
-
.visible-lg {
|
5312
|
-
display:
|
5659
|
+
.visible-lg.visible-sm {
|
5660
|
+
display: block !important;
|
5313
5661
|
}
|
5314
|
-
tr.visible-lg {
|
5315
|
-
display:
|
5662
|
+
tr.visible-lg.visible-sm {
|
5663
|
+
display: table-row !important;
|
5316
5664
|
}
|
5317
|
-
th.visible-lg,
|
5318
|
-
td.visible-lg {
|
5319
|
-
display:
|
5665
|
+
th.visible-lg.visible-sm,
|
5666
|
+
td.visible-lg.visible-sm {
|
5667
|
+
display: table-cell !important;
|
5320
5668
|
}
|
5321
5669
|
}
|
5322
5670
|
|
5323
5671
|
@media (min-width: 992px) and (max-width: 1199px) {
|
5324
|
-
.visible-lg {
|
5325
|
-
display:
|
5672
|
+
.visible-lg.visible-md {
|
5673
|
+
display: block !important;
|
5326
5674
|
}
|
5327
|
-
tr.visible-lg {
|
5328
|
-
display:
|
5675
|
+
tr.visible-lg.visible-md {
|
5676
|
+
display: table-row !important;
|
5329
5677
|
}
|
5330
|
-
th.visible-lg,
|
5331
|
-
td.visible-lg {
|
5332
|
-
display:
|
5678
|
+
th.visible-lg.visible-md,
|
5679
|
+
td.visible-lg.visible-md {
|
5680
|
+
display: table-cell !important;
|
5333
5681
|
}
|
5334
5682
|
}
|
5335
5683
|
|
@@ -5347,54 +5695,67 @@ td.visible-lg {
|
|
5347
5695
|
}
|
5348
5696
|
|
5349
5697
|
.hidden-xs {
|
5350
|
-
display:
|
5698
|
+
display: block !important;
|
5351
5699
|
}
|
5352
5700
|
|
5353
5701
|
tr.hidden-xs {
|
5354
|
-
display:
|
5702
|
+
display: table-row !important;
|
5355
5703
|
}
|
5356
5704
|
|
5357
5705
|
th.hidden-xs,
|
5358
5706
|
td.hidden-xs {
|
5359
|
-
display:
|
5707
|
+
display: table-cell !important;
|
5360
5708
|
}
|
5361
5709
|
|
5362
|
-
@media (
|
5710
|
+
@media (max-width: 767px) {
|
5363
5711
|
.hidden-xs {
|
5364
|
-
display:
|
5712
|
+
display: none !important;
|
5365
5713
|
}
|
5366
5714
|
tr.hidden-xs {
|
5367
|
-
display:
|
5715
|
+
display: none !important;
|
5368
5716
|
}
|
5369
5717
|
th.hidden-xs,
|
5370
5718
|
td.hidden-xs {
|
5371
|
-
display:
|
5719
|
+
display: none !important;
|
5720
|
+
}
|
5721
|
+
}
|
5722
|
+
|
5723
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
5724
|
+
.hidden-xs.hidden-sm {
|
5725
|
+
display: none !important;
|
5726
|
+
}
|
5727
|
+
tr.hidden-xs.hidden-sm {
|
5728
|
+
display: none !important;
|
5729
|
+
}
|
5730
|
+
th.hidden-xs.hidden-sm,
|
5731
|
+
td.hidden-xs.hidden-sm {
|
5732
|
+
display: none !important;
|
5372
5733
|
}
|
5373
5734
|
}
|
5374
5735
|
|
5375
5736
|
@media (min-width: 992px) and (max-width: 1199px) {
|
5376
|
-
.hidden-xs {
|
5377
|
-
display:
|
5737
|
+
.hidden-xs.hidden-md {
|
5738
|
+
display: none !important;
|
5378
5739
|
}
|
5379
|
-
tr.hidden-xs {
|
5380
|
-
display:
|
5740
|
+
tr.hidden-xs.hidden-md {
|
5741
|
+
display: none !important;
|
5381
5742
|
}
|
5382
|
-
th.hidden-xs,
|
5383
|
-
td.hidden-xs {
|
5384
|
-
display:
|
5743
|
+
th.hidden-xs.hidden-md,
|
5744
|
+
td.hidden-xs.hidden-md {
|
5745
|
+
display: none !important;
|
5385
5746
|
}
|
5386
5747
|
}
|
5387
5748
|
|
5388
5749
|
@media (min-width: 1200px) {
|
5389
|
-
.hidden-xs {
|
5390
|
-
display:
|
5750
|
+
.hidden-xs.hidden-lg {
|
5751
|
+
display: none !important;
|
5391
5752
|
}
|
5392
|
-
tr.hidden-xs {
|
5393
|
-
display:
|
5753
|
+
tr.hidden-xs.hidden-lg {
|
5754
|
+
display: none !important;
|
5394
5755
|
}
|
5395
|
-
th.hidden-xs,
|
5396
|
-
td.hidden-xs {
|
5397
|
-
display:
|
5756
|
+
th.hidden-xs.hidden-lg,
|
5757
|
+
td.hidden-xs.hidden-lg {
|
5758
|
+
display: none !important;
|
5398
5759
|
}
|
5399
5760
|
}
|
5400
5761
|
|
@@ -5411,6 +5772,19 @@ td.hidden-sm {
|
|
5411
5772
|
display: table-cell !important;
|
5412
5773
|
}
|
5413
5774
|
|
5775
|
+
@media (max-width: 767px) {
|
5776
|
+
.hidden-sm.hidden-xs {
|
5777
|
+
display: none !important;
|
5778
|
+
}
|
5779
|
+
tr.hidden-sm.hidden-xs {
|
5780
|
+
display: none !important;
|
5781
|
+
}
|
5782
|
+
th.hidden-sm.hidden-xs,
|
5783
|
+
td.hidden-sm.hidden-xs {
|
5784
|
+
display: none !important;
|
5785
|
+
}
|
5786
|
+
}
|
5787
|
+
|
5414
5788
|
@media (min-width: 768px) and (max-width: 991px) {
|
5415
5789
|
.hidden-sm {
|
5416
5790
|
display: none !important;
|
@@ -5425,28 +5799,28 @@ td.hidden-sm {
|
|
5425
5799
|
}
|
5426
5800
|
|
5427
5801
|
@media (min-width: 992px) and (max-width: 1199px) {
|
5428
|
-
.hidden-sm {
|
5429
|
-
display:
|
5802
|
+
.hidden-sm.hidden-md {
|
5803
|
+
display: none !important;
|
5430
5804
|
}
|
5431
|
-
tr.hidden-sm {
|
5432
|
-
display:
|
5805
|
+
tr.hidden-sm.hidden-md {
|
5806
|
+
display: none !important;
|
5433
5807
|
}
|
5434
|
-
th.hidden-sm,
|
5435
|
-
td.hidden-sm {
|
5436
|
-
display:
|
5808
|
+
th.hidden-sm.hidden-md,
|
5809
|
+
td.hidden-sm.hidden-md {
|
5810
|
+
display: none !important;
|
5437
5811
|
}
|
5438
5812
|
}
|
5439
5813
|
|
5440
5814
|
@media (min-width: 1200px) {
|
5441
|
-
.hidden-sm {
|
5442
|
-
display:
|
5815
|
+
.hidden-sm.hidden-lg {
|
5816
|
+
display: none !important;
|
5443
5817
|
}
|
5444
|
-
tr.hidden-sm {
|
5445
|
-
display:
|
5818
|
+
tr.hidden-sm.hidden-lg {
|
5819
|
+
display: none !important;
|
5446
5820
|
}
|
5447
|
-
th.hidden-sm,
|
5448
|
-
td.hidden-sm {
|
5449
|
-
display:
|
5821
|
+
th.hidden-sm.hidden-lg,
|
5822
|
+
td.hidden-sm.hidden-lg {
|
5823
|
+
display: none !important;
|
5450
5824
|
}
|
5451
5825
|
}
|
5452
5826
|
|
@@ -5463,16 +5837,29 @@ td.hidden-md {
|
|
5463
5837
|
display: table-cell !important;
|
5464
5838
|
}
|
5465
5839
|
|
5840
|
+
@media (max-width: 767px) {
|
5841
|
+
.hidden-md.hidden-xs {
|
5842
|
+
display: none !important;
|
5843
|
+
}
|
5844
|
+
tr.hidden-md.hidden-xs {
|
5845
|
+
display: none !important;
|
5846
|
+
}
|
5847
|
+
th.hidden-md.hidden-xs,
|
5848
|
+
td.hidden-md.hidden-xs {
|
5849
|
+
display: none !important;
|
5850
|
+
}
|
5851
|
+
}
|
5852
|
+
|
5466
5853
|
@media (min-width: 768px) and (max-width: 991px) {
|
5467
|
-
.hidden-md {
|
5468
|
-
display:
|
5854
|
+
.hidden-md.hidden-sm {
|
5855
|
+
display: none !important;
|
5469
5856
|
}
|
5470
|
-
tr.hidden-md {
|
5471
|
-
display:
|
5857
|
+
tr.hidden-md.hidden-sm {
|
5858
|
+
display: none !important;
|
5472
5859
|
}
|
5473
|
-
th.hidden-md,
|
5474
|
-
td.hidden-md {
|
5475
|
-
display:
|
5860
|
+
th.hidden-md.hidden-sm,
|
5861
|
+
td.hidden-md.hidden-sm {
|
5862
|
+
display: none !important;
|
5476
5863
|
}
|
5477
5864
|
}
|
5478
5865
|
|
@@ -5490,15 +5877,15 @@ td.hidden-md {
|
|
5490
5877
|
}
|
5491
5878
|
|
5492
5879
|
@media (min-width: 1200px) {
|
5493
|
-
.hidden-md {
|
5494
|
-
display:
|
5880
|
+
.hidden-md.hidden-lg {
|
5881
|
+
display: none !important;
|
5495
5882
|
}
|
5496
|
-
tr.hidden-md {
|
5497
|
-
display:
|
5883
|
+
tr.hidden-md.hidden-lg {
|
5884
|
+
display: none !important;
|
5498
5885
|
}
|
5499
|
-
th.hidden-md,
|
5500
|
-
td.hidden-md {
|
5501
|
-
display:
|
5886
|
+
th.hidden-md.hidden-lg,
|
5887
|
+
td.hidden-md.hidden-lg {
|
5888
|
+
display: none !important;
|
5502
5889
|
}
|
5503
5890
|
}
|
5504
5891
|
|
@@ -5515,29 +5902,42 @@ td.hidden-lg {
|
|
5515
5902
|
display: table-cell !important;
|
5516
5903
|
}
|
5517
5904
|
|
5905
|
+
@media (max-width: 767px) {
|
5906
|
+
.hidden-lg.hidden-xs {
|
5907
|
+
display: none !important;
|
5908
|
+
}
|
5909
|
+
tr.hidden-lg.hidden-xs {
|
5910
|
+
display: none !important;
|
5911
|
+
}
|
5912
|
+
th.hidden-lg.hidden-xs,
|
5913
|
+
td.hidden-lg.hidden-xs {
|
5914
|
+
display: none !important;
|
5915
|
+
}
|
5916
|
+
}
|
5917
|
+
|
5518
5918
|
@media (min-width: 768px) and (max-width: 991px) {
|
5519
|
-
.hidden-lg {
|
5520
|
-
display:
|
5919
|
+
.hidden-lg.hidden-sm {
|
5920
|
+
display: none !important;
|
5521
5921
|
}
|
5522
|
-
tr.hidden-lg {
|
5523
|
-
display:
|
5922
|
+
tr.hidden-lg.hidden-sm {
|
5923
|
+
display: none !important;
|
5524
5924
|
}
|
5525
|
-
th.hidden-lg,
|
5526
|
-
td.hidden-lg {
|
5527
|
-
display:
|
5925
|
+
th.hidden-lg.hidden-sm,
|
5926
|
+
td.hidden-lg.hidden-sm {
|
5927
|
+
display: none !important;
|
5528
5928
|
}
|
5529
5929
|
}
|
5530
5930
|
|
5531
5931
|
@media (min-width: 992px) and (max-width: 1199px) {
|
5532
|
-
.hidden-lg {
|
5533
|
-
display:
|
5932
|
+
.hidden-lg.hidden-md {
|
5933
|
+
display: none !important;
|
5534
5934
|
}
|
5535
|
-
tr.hidden-lg {
|
5536
|
-
display:
|
5935
|
+
tr.hidden-lg.hidden-md {
|
5936
|
+
display: none !important;
|
5537
5937
|
}
|
5538
|
-
th.hidden-lg,
|
5539
|
-
td.hidden-lg {
|
5540
|
-
display:
|
5938
|
+
th.hidden-lg.hidden-md,
|
5939
|
+
td.hidden-lg.hidden-md {
|
5940
|
+
display: none !important;
|
5541
5941
|
}
|
5542
5942
|
}
|
5543
5943
|
|