bootstrap.css 120 KB
Newer Older
6001
6002
6003
  padding: 1px;
  text-align: left;
  white-space: normal;
6004
  background-color: #ffffff;
6005
6006
6007
6008
6009
6010
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
Mark Otto's avatar
Mark Otto committed
6011
6012
}

6013
6014
.popover.top {
  margin-top: -10px;
Mark Otto's avatar
Mark Otto committed
6015
6016
}

6017
6018
.popover.right {
  margin-left: 10px;
Mark Otto's avatar
Mark Otto committed
6019
6020
}

6021
6022
.popover.bottom {
  margin-top: 10px;
Mark Otto's avatar
Mark Otto committed
6023
6024
}

6025
6026
.popover.left {
  margin-left: -10px;
Mark Otto's avatar
Mark Otto committed
6027
6028
}

6029
6030
6031
6032
6033
6034
6035
6036
6037
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
Mark Otto's avatar
Mark Otto committed
6038
6039
}

6040
6041
.popover-content {
  padding: 9px 14px;
Mark Otto's avatar
Mark Otto committed
6042
6043
}

6044
6045
6046
6047
.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
Mark Otto's avatar
Mark Otto committed
6048
  width: 0;
6049
6050
6051
  height: 0;
  border-color: transparent;
  border-style: solid;
Mark Otto's avatar
Mark Otto committed
6052
6053
}

6054
6055
.popover .arrow {
  border-width: 11px;
Mark Otto's avatar
Mark Otto committed
6056
6057
}

6058
6059
6060
.popover .arrow:after {
  border-width: 10px;
  content: "";
Mark Otto's avatar
Mark Otto committed
6061
6062
}

6063
6064
6065
6066
6067
6068
6069
.popover.top .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
Mark Otto's avatar
Mark Otto committed
6070
6071
}

6072
6073
6074
6075
6076
6077
.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6078
6079
}

6080
6081
6082
6083
6084
6085
6086
.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
Mark Otto's avatar
Mark Otto committed
6087
6088
}

6089
6090
6091
6092
6093
6094
.popover.right .arrow:after {
  bottom: -10px;
  left: 1px;
  border-right-color: #ffffff;
  border-left-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6095
6096
}

6097
6098
6099
6100
6101
6102
6103
.popover.bottom .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-top-width: 0;
Mark Otto's avatar
Mark Otto committed
6104
6105
}

6106
6107
6108
6109
6110
6111
.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6112
6113
}

6114
6115
6116
6117
6118
6119
6120
.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
  border-right-width: 0;
Mark Otto's avatar
Mark Otto committed
6121
6122
}

6123
6124
6125
6126
6127
6128
.popover.left .arrow:after {
  right: 1px;
  bottom: -10px;
  border-left-color: #ffffff;
  border-right-width: 0;
  content: " ";
Mark Otto's avatar
Mark Otto committed
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
          transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
6150
  display: block;
Mark Otto's avatar
Mark Otto committed
6151
6152
  height: auto;
  max-width: 100%;
Mark Otto's avatar
Mark Otto committed
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
  line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
6199
6200
  width: 15%;
  font-size: 20px;
Mark Otto's avatar
Mark Otto committed
6201
  color: #ffffff;
6202
6203
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
Mark Otto's avatar
Mark Otto committed
6204
6205
6206
6207
6208
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.carousel-control.left {
Mark Otto's avatar
Mark Otto committed
6209
6210
6211
6212
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0), color-stop(rgba(0, 0, 0, 0.0001) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
Mark Otto's avatar
Mark Otto committed
6213
  background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
6214
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
Mark Otto's avatar
Mark Otto committed
6215
6216
6217
6218
6219
}

.carousel-control.right {
  right: 0;
  left: auto;
Mark Otto's avatar
Mark Otto committed
6220
6221
6222
6223
  background-image: -webkit-gradient(linear, 0 top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0), color-stop(rgba(0, 0, 0, 0.5) 100%));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
Mark Otto's avatar
Mark Otto committed
6224
  background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
6225
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
Mark Otto's avatar
Mark Otto committed
6226
6227
6228
6229
}

.carousel-control:hover,
.carousel-control:focus {
Mark Otto's avatar
Mark Otto committed
6230
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
6231
6232
6233
6234
6235
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

6236
.carousel-control .icon-prev,
6237
6238
6239
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
Mark Otto's avatar
Mark Otto committed
6240
6241
6242
  position: absolute;
  top: 50%;
  z-index: 5;
Mark Otto's avatar
Mark Otto committed
6243
  display: inline-block;
6244
6245
}

6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
}

6256
6257
.carousel-control .icon-prev,
.carousel-control .icon-next {
Mark Otto's avatar
Mark Otto committed
6258
6259
6260
  width: 20px;
  height: 20px;
  margin-top: -10px;
6261
  margin-left: -10px;
fat's avatar
fat committed
6262
  font-family: serif;
Mark Otto's avatar
Mark Otto committed
6263
6264
}

6265
.carousel-control .icon-prev:before {
Mark Otto's avatar
Mark Otto committed
6266
  content: '\2039';
6267
6268
6269
}

.carousel-control .icon-next:before {
Mark Otto's avatar
Mark Otto committed
6270
  content: '\203a';
6271
6272
}

Mark Otto's avatar
Mark Otto committed
6273
6274
.carousel-indicators {
  position: absolute;
6275
  bottom: 10px;
Mark Otto's avatar
Mark Otto committed
6276
  left: 50%;
Mark Otto's avatar
Mark Otto committed
6277
  z-index: 15;
6278
  width: 60%;
Mark Otto's avatar
Mark Otto committed
6279
  padding-left: 0;
6280
  margin-left: -30%;
Mark Otto's avatar
Mark Otto committed
6281
  text-align: center;
Mark Otto's avatar
Mark Otto committed
6282
6283
6284
6285
  list-style: none;
}

.carousel-indicators li {
Mark Otto's avatar
Mark Otto committed
6286
  display: inline-block;
6287
6288
6289
  width: 10px;
  height: 10px;
  margin: 1px;
Mark Otto's avatar
Mark Otto committed
6290
6291
  text-indent: -999px;
  cursor: pointer;
Mark Otto's avatar
Mark Otto committed
6292
  border: 1px solid #ffffff;
6293
  border-radius: 10px;
Mark Otto's avatar
Mark Otto committed
6294
6295
6296
}

.carousel-indicators .active {
6297
6298
6299
  width: 12px;
  height: 12px;
  margin: 0;
Mark Otto's avatar
Mark Otto committed
6300
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
6301
6302
}

6303
6304
.carousel-caption {
  position: absolute;
6305
  right: 15%;
6306
  bottom: 20px;
6307
6308
  left: 15%;
  z-index: 10;
6309
6310
  padding-top: 20px;
  padding-bottom: 20px;
Mark Otto's avatar
Mark Otto committed
6311
  color: #ffffff;
6312
  text-align: center;
6313
6314
6315
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

Mark Otto's avatar
Mark Otto committed
6316
6317
6318
6319
.carousel-caption .btn {
  text-shadow: none;
}

Mark Otto's avatar
Mark Otto committed
6320
@media screen and (min-width: 768px) {
6321
  .carousel-control .glyphicons-chevron-left,
Chris Rebert's avatar
Chris Rebert committed
6322
6323
  .carousel-control .glyphicons-chevron-right,
  .carousel-control .icon-prev,
6324
  .carousel-control .icon-next {
Mark Otto's avatar
Mark Otto committed
6325
6326
6327
    width: 30px;
    height: 30px;
    margin-top: -15px;
6328
    margin-left: -15px;
Mark Otto's avatar
Mark Otto committed
6329
6330
    font-size: 30px;
  }
6331
  .carousel-caption {
6332
6333
    right: 20%;
    left: 20%;
6334
    padding-bottom: 30px;
Mark Otto's avatar
Mark Otto committed
6335
  }
6336
6337
6338
  .carousel-indicators {
    bottom: 20px;
  }
Mark Otto's avatar
Mark Otto committed
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

6351
6352
6353
6354
6355
6356
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

Mark Otto's avatar
Mark Otto committed
6357
.pull-right {
liuyl's avatar
liuyl committed
6358
  float: right !important;
Mark Otto's avatar
Mark Otto committed
6359
6360
6361
}

.pull-left {
liuyl's avatar
liuyl committed
6362
  float: left !important;
Mark Otto's avatar
Mark Otto committed
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}

.hidden {
6394
6395
  display: none !important;
  visibility: hidden !important;
Mark Otto's avatar
Mark Otto committed
6396
6397
}

Mark Otto's avatar
Mark Otto committed
6398
6399
.visible-xs,
tr.visible-xs,
6400
6401
th.visible-xs,
td.visible-xs {
6402
  display: none !important;
6403
6404
}

6405
@media (max-width: 767px) {
6406
  .visible-xs {
6407
    display: block !important;
6408
6409
  }
  tr.visible-xs {
6410
    display: table-row !important;
6411
6412
6413
  }
  th.visible-xs,
  td.visible-xs {
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
  tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  th.visible-xs.visible-sm,
  td.visible-xs.visible-sm {
    display: table-cell !important;
6428
6429
6430
6431
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
6432
6433
  .visible-xs.visible-md {
    display: block !important;
6434
  }
6435
6436
  tr.visible-xs.visible-md {
    display: table-row !important;
6437
  }
6438
6439
6440
  th.visible-xs.visible-md,
  td.visible-xs.visible-md {
    display: table-cell !important;
6441
6442
6443
6444
  }
}

@media (min-width: 1200px) {
6445
6446
  .visible-xs.visible-lg {
    display: block !important;
6447
  }
6448
6449
  tr.visible-xs.visible-lg {
    display: table-row !important;
6450
  }
6451
6452
6453
  th.visible-xs.visible-lg,
  td.visible-xs.visible-lg {
    display: table-cell !important;
6454
6455
6456
  }
}

Mark Otto's avatar
Mark Otto committed
6457
6458
.visible-sm,
tr.visible-sm,
6459
6460
th.visible-sm,
td.visible-sm {
6461
  display: none !important;
6462
6463
}

6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
  tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  th.visible-sm.visible-xs,
  td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}

fat's avatar
fat committed
6477
@media (min-width: 768px) and (max-width: 991px) {
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
  .visible-sm {
    display: block !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
6491
6492
  .visible-sm.visible-md {
    display: block !important;
fat's avatar
fat committed
6493
  }
6494
6495
  tr.visible-sm.visible-md {
    display: table-row !important;
fat's avatar
fat committed
6496
  }
6497
6498
6499
  th.visible-sm.visible-md,
  td.visible-sm.visible-md {
    display: table-cell !important;
fat's avatar
fat committed
6500
6501
6502
  }
}

6503
@media (min-width: 1200px) {
6504
6505
  .visible-sm.visible-lg {
    display: block !important;
fat's avatar
fat committed
6506
  }
6507
6508
  tr.visible-sm.visible-lg {
    display: table-row !important;
fat's avatar
fat committed
6509
  }
6510
6511
6512
  th.visible-sm.visible-lg,
  td.visible-sm.visible-lg {
    display: table-cell !important;
fat's avatar
fat committed
6513
6514
6515
  }
}

Mark Otto's avatar
Mark Otto committed
6516
6517
.visible-md,
tr.visible-md,
6518
6519
6520
6521
6522
th.visible-md,
td.visible-md {
  display: none !important;
}

6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
  tr.visible-md.visible-xs {
    display: table-row !important;
  }
  th.visible-md.visible-xs,
  td.visible-md.visible-xs {
    display: table-cell !important;
  }
}

fat's avatar
fat committed
6536
@media (min-width: 768px) and (max-width: 991px) {
6537
6538
  .visible-md.visible-sm {
    display: block !important;
6539
  }
6540
6541
  tr.visible-md.visible-sm {
    display: table-row !important;
6542
  }
6543
6544
6545
  th.visible-md.visible-sm,
  td.visible-md.visible-sm {
    display: table-cell !important;
6546
6547
6548
6549
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
fat's avatar
fat committed
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
  .visible-md {
    display: block !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

6562
@media (min-width: 1200px) {
6563
6564
  .visible-md.visible-lg {
    display: block !important;
fat's avatar
fat committed
6565
  }
6566
6567
  tr.visible-md.visible-lg {
    display: table-row !important;
fat's avatar
fat committed
6568
  }
6569
6570
6571
  th.visible-md.visible-lg,
  td.visible-md.visible-lg {
    display: table-cell !important;
fat's avatar
fat committed
6572
6573
6574
  }
}

Mark Otto's avatar
Mark Otto committed
6575
6576
.visible-lg,
tr.visible-lg,
6577
6578
6579
6580
6581
th.visible-lg,
td.visible-lg {
  display: none !important;
}

6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
  tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  th.visible-lg.visible-xs,
  td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}

fat's avatar
fat committed
6595
@media (min-width: 768px) and (max-width: 991px) {
6596
6597
  .visible-lg.visible-sm {
    display: block !important;
fat's avatar
fat committed
6598
  }
6599
6600
  tr.visible-lg.visible-sm {
    display: table-row !important;
fat's avatar
fat committed
6601
  }
6602
6603
6604
  th.visible-lg.visible-sm,
  td.visible-lg.visible-sm {
    display: table-cell !important;
fat's avatar
fat committed
6605
6606
6607
  }
}

6608
@media (min-width: 992px) and (max-width: 1199px) {
6609
6610
  .visible-lg.visible-md {
    display: block !important;
6611
  }
6612
6613
  tr.visible-lg.visible-md {
    display: table-row !important;
6614
  }
6615
6616
6617
  th.visible-lg.visible-md,
  td.visible-lg.visible-md {
    display: table-cell !important;
6618
6619
6620
6621
  }
}

@media (min-width: 1200px) {
fat's avatar
fat committed
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
  .visible-lg {
    display: block !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

6634
.hidden-xs {
6635
  display: block !important;
6636
6637
}

6638
tr.hidden-xs {
6639
  display: table-row !important;
6640
6641
}

6642
6643
th.hidden-xs,
td.hidden-xs {
6644
  display: table-cell !important;
6645
6646
}

6647
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6648
6649
  .hidden-xs,
  tr.hidden-xs,
6650
6651
  th.hidden-xs,
  td.hidden-xs {
6652
6653
6654
6655
6656
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6657
6658
  .hidden-xs.hidden-sm,
  tr.hidden-xs.hidden-sm,
6659
6660
6661
  th.hidden-xs.hidden-sm,
  td.hidden-xs.hidden-sm {
    display: none !important;
6662
6663
6664
6665
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6666
6667
  .hidden-xs.hidden-md,
  tr.hidden-xs.hidden-md,
6668
6669
6670
  th.hidden-xs.hidden-md,
  td.hidden-xs.hidden-md {
    display: none !important;
6671
6672
6673
6674
  }
}

@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6675
6676
  .hidden-xs.hidden-lg,
  tr.hidden-xs.hidden-lg,
6677
6678
6679
  th.hidden-xs.hidden-lg,
  td.hidden-xs.hidden-lg {
    display: none !important;
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
  }
}

.hidden-sm {
  display: block !important;
}

tr.hidden-sm {
  display: table-row !important;
}

6691
6692
th.hidden-sm,
td.hidden-sm {
6693
  display: table-cell !important;
6694
6695
}

6696
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6697
6698
  .hidden-sm.hidden-xs,
  tr.hidden-sm.hidden-xs,
6699
6700
6701
6702
6703
6704
  th.hidden-sm.hidden-xs,
  td.hidden-sm.hidden-xs {
    display: none !important;
  }
}

6705
@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6706
6707
  .hidden-sm,
  tr.hidden-sm,
6708
6709
6710
6711
6712
6713
6714
  th.hidden-sm,
  td.hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6715
6716
  .hidden-sm.hidden-md,
  tr.hidden-sm.hidden-md,
6717
6718
6719
  th.hidden-sm.hidden-md,
  td.hidden-sm.hidden-md {
    display: none !important;
6720
  }
fat's avatar
fat committed
6721
6722
}

6723
@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6724
6725
  .hidden-sm.hidden-lg,
  tr.hidden-sm.hidden-lg,
6726
6727
6728
  th.hidden-sm.hidden-lg,
  td.hidden-sm.hidden-lg {
    display: none !important;
6729
  }
fat's avatar
fat committed
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
}

.hidden-md {
  display: block !important;
}

tr.hidden-md {
  display: table-row !important;
}

th.hidden-md,
td.hidden-md {
  display: table-cell !important;
}

6745
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6746
6747
  .hidden-md.hidden-xs,
  tr.hidden-md.hidden-xs,
6748
6749
6750
6751
6752
6753
  th.hidden-md.hidden-xs,
  td.hidden-md.hidden-xs {
    display: none !important;
  }
}

fat's avatar
fat committed
6754
@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6755
6756
  .hidden-md.hidden-sm,
  tr.hidden-md.hidden-sm,
6757
6758
6759
  th.hidden-md.hidden-sm,
  td.hidden-md.hidden-sm {
    display: none !important;
6760
6761
6762
6763
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6764
6765
  .hidden-md,
  tr.hidden-md,
6766
6767
6768
6769
  th.hidden-md,
  td.hidden-md {
    display: none !important;
  }
6770
6771
}

6772
@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6773
6774
  .hidden-md.hidden-lg,
  tr.hidden-md.hidden-lg,
6775
6776
6777
  th.hidden-md.hidden-lg,
  td.hidden-md.hidden-lg {
    display: none !important;
6778
  }
fat's avatar
fat committed
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
}

.hidden-lg {
  display: block !important;
}

tr.hidden-lg {
  display: table-row !important;
}

th.hidden-lg,
td.hidden-lg {
  display: table-cell !important;
}

6794
@media (max-width: 767px) {
Mark Otto's avatar
Mark Otto committed
6795
6796
  .hidden-lg.hidden-xs,
  tr.hidden-lg.hidden-xs,
6797
6798
6799
6800
6801
6802
  th.hidden-lg.hidden-xs,
  td.hidden-lg.hidden-xs {
    display: none !important;
  }
}

fat's avatar
fat committed
6803
@media (min-width: 768px) and (max-width: 991px) {
Mark Otto's avatar
Mark Otto committed
6804
6805
  .hidden-lg.hidden-sm,
  tr.hidden-lg.hidden-sm,
6806
6807
6808
  th.hidden-lg.hidden-sm,
  td.hidden-lg.hidden-sm {
    display: none !important;
6809
  }
fat's avatar
fat committed
6810
6811
}

6812
@media (min-width: 992px) and (max-width: 1199px) {
Mark Otto's avatar
Mark Otto committed
6813
6814
  .hidden-lg.hidden-md,
  tr.hidden-lg.hidden-md,
6815
6816
6817
  th.hidden-lg.hidden-md,
  td.hidden-lg.hidden-md {
    display: none !important;
6818
6819
6820
6821
  }
}

@media (min-width: 1200px) {
Mark Otto's avatar
Mark Otto committed
6822
6823
  .hidden-lg,
  tr.hidden-lg,
6824
6825
6826
6827
  th.hidden-lg,
  td.hidden-lg {
    display: none !important;
  }
Mark Otto's avatar
Mark Otto committed
6828
6829
}

Mark Otto's avatar
Mark Otto committed
6830
6831
.visible-print,
tr.visible-print,
6832
6833
6834
6835
th.visible-print,
td.visible-print {
  display: none !important;
}
Mark Otto's avatar
Mark Otto committed
6836
6837
6838

@media print {
  .visible-print {
6839
    display: block !important;
Mark Otto's avatar
Mark Otto committed
6840
  }
6841
6842
6843
6844
6845
6846
6847
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
Mark Otto's avatar
Mark Otto committed
6848
6849
  .hidden-print,
  tr.hidden-print,
6850
6851
6852
6853
  th.hidden-print,
  td.hidden-print {
    display: none !important;
  }
6854
}
For faster browsing, not all history is shown. View entire blame