bootstrap.css 119 KB
Newer Older
4001
4002
.thumbnail a > img {
  margin-right: auto;
4003
  margin-left: auto;
4004
4005
4006
4007
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
Mark Otto's avatar
Mark Otto committed
4008
  border-color: #027de7;
4009
4010
4011
}
.thumbnail .caption {
  padding: 9px;
4012
  color: #373a3c;
4013
4014
4015
}
.alert {
  padding: 15px;
Mark Otto's avatar
Mark Otto committed
4016
  margin-bottom: 24px;
4017
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4018
  border-radius: .2rem;
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
XhmikosR's avatar
XhmikosR committed
4034
4035
4036
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
4037
}
XhmikosR's avatar
XhmikosR committed
4038
4039
.alert-dismissable .close,
.alert-dismissible .close {
4040
4041
  position: relative;
  top: -2px;
XhmikosR's avatar
XhmikosR committed
4042
  right: -21px;
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
XhmikosR's avatar
XhmikosR committed
4094
    background-position: 0 0;
4095
4096
  }
}
Bas Bosman's avatar
Bas Bosman committed
4097
4098
4099
4100
4101
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
XhmikosR's avatar
XhmikosR committed
4102
    background-position: 0 0;
Bas Bosman's avatar
Bas Bosman committed
4103
4104
  }
}
4105
4106
4107
4108
4109
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
XhmikosR's avatar
XhmikosR committed
4110
    background-position: 0 0;
4111
4112
4113
  }
}
.progress {
Mark Otto's avatar
Mark Otto committed
4114
4115
  height: 24px;
  margin-bottom: 24px;
4116
4117
  overflow: hidden;
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
4118
  border-radius: .2rem;
4119
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
4120
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
4121
4122
}
.progress-bar {
XhmikosR's avatar
XhmikosR committed
4123
  float: left;
4124
4125
  width: 0;
  height: 100%;
Mark Otto's avatar
Mark Otto committed
4126
4127
  font-size: .85rem;
  line-height: 24px;
4128
4129
  color: #fff;
  text-align: center;
Mark Otto's avatar
Mark Otto committed
4130
  background-color: #027de7;
4131
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4132
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4133
  -webkit-transition: width .6s ease;
Bas Bosman's avatar
Bas Bosman committed
4134
       -o-transition: width .6s ease;
4135
          transition: width .6s ease;
4136
}
XhmikosR's avatar
XhmikosR committed
4137
4138
.progress-striped .progress-bar,
.progress-bar-striped {
4139
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4140
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4141
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4142
4143
  -webkit-background-size: 40px 40px;
          background-size: 40px 40px;
4144
}
XhmikosR's avatar
XhmikosR committed
4145
4146
.progress.active .progress-bar,
.progress-bar.active {
4147
  -webkit-animation: progress-bar-stripes 2s linear infinite;
Bas Bosman's avatar
Bas Bosman committed
4148
       -o-animation: progress-bar-stripes 2s linear infinite;
4149
          animation: progress-bar-stripes 2s linear infinite;
4150
}
4151
4152
.progress-bar[aria-valuenow="0"] {
  min-width: 30px;
4153
  color: #818a91;
4154
4155
  background-color: transparent;
  background-image: none;
Bas Bosman's avatar
Bas Bosman committed
4156
4157
  -webkit-box-shadow: none;
          box-shadow: none;
4158
}
4159
4160
4161
4162
4163
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4164
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4165
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4166
4167
4168
4169
4170
4171
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4172
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4173
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4174
4175
4176
4177
4178
4179
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4180
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4181
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4182
4183
4184
4185
4186
4187
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4188
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4189
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
XhmikosR's avatar
XhmikosR committed
4210
  margin-right: 10px;
4211
4212
}
.media > .pull-right {
XhmikosR's avatar
XhmikosR committed
4213
  margin-left: 10px;
4214
4215
}
.media-list {
XhmikosR's avatar
XhmikosR committed
4216
  padding-left: 0;
4217
4218
4219
  list-style: none;
}
.list-group {
XhmikosR's avatar
XhmikosR committed
4220
  padding-left: 0;
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
Mark Otto's avatar
Mark Otto committed
4232
4233
  border-top-left-radius: .2rem;
  border-top-right-radius: .2rem;
4234
4235
4236
}
.list-group-item:last-child {
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
4237
4238
  border-bottom-right-radius: .2rem;
  border-bottom-left-radius: .2rem;
4239
4240
}
.list-group-item > .badge {
XhmikosR's avatar
XhmikosR committed
4241
  float: right;
4242
4243
}
.list-group-item > .badge + .badge {
XhmikosR's avatar
XhmikosR committed
4244
  margin-right: 5px;
4245
4246
4247
4248
4249
4250
4251
4252
4253
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
Mark Otto's avatar
Mark Otto committed
4254
  color: #555;
4255
4256
4257
  text-decoration: none;
  background-color: #f5f5f5;
}
4258
4259
4260
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
4261
  color: #818a91;
XhmikosR's avatar
XhmikosR committed
4262
  cursor: not-allowed;
4263
  background-color: #eceeef;
4264
4265
4266
4267
4268
4269
4270
4271
4272
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
4273
  color: #818a91;
4274
}
4275
4276
4277
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
4278
4279
  z-index: 2;
  color: #fff;
Mark Otto's avatar
Mark Otto committed
4280
4281
  background-color: #027de7;
  border-color: #027de7;
4282
}
4283
4284
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
XhmikosR's avatar
XhmikosR committed
4285
4286
4287
4288
4289
4290
4291
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
4292
4293
  color: inherit;
}
4294
4295
4296
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
Mark Otto's avatar
Mark Otto committed
4297
  color: #b7ddfe;
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
Mark Otto's avatar
Mark Otto committed
4396
  margin-bottom: 24px;
4397
4398
  background-color: #fff;
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4399
  border-radius: .2rem;
4400
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
4401
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
4402
4403
4404
4405
4406
4407
4408
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4409
4410
  border-top-left-radius: -.8rem;
  border-top-right-radius: -.8rem;
4411
4412
4413
4414
4415
4416
4417
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
4418
  font-size: 2rem;
4419
4420
4421
4422
4423
4424
4425
4426
4427
  color: inherit;
}
.panel-title > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
Mark Otto's avatar
Mark Otto committed
4428
4429
  border-bottom-right-radius: -.8rem;
  border-bottom-left-radius: -.8rem;
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
}
.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
Mark Otto's avatar
Mark Otto committed
4440
4441
  border-top-left-radius: -.8rem;
  border-top-right-radius: -.8rem;
4442
4443
4444
}
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
Mark Otto's avatar
Mark Otto committed
4445
4446
  border-bottom-right-radius: -.8rem;
  border-bottom-left-radius: -.8rem;
4447
4448
4449
4450
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
XhmikosR's avatar
XhmikosR committed
4451
4452
4453
.list-group + .panel-footer {
  border-top-width: 0;
}
4454
.panel > .table,
XhmikosR's avatar
XhmikosR committed
4455
4456
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
4457
4458
4459
4460
  margin-bottom: 0;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
Mark Otto's avatar
Mark Otto committed
4461
4462
  border-top-left-radius: -.8rem;
  border-top-right-radius: -.8rem;
4463
4464
4465
4466
4467
4468
4469
4470
4471
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
Mark Otto's avatar
Mark Otto committed
4472
  border-top-left-radius: -.8rem;
4473
4474
4475
4476
4477
4478
4479
4480
4481
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
Mark Otto's avatar
Mark Otto committed
4482
  border-top-right-radius: -.8rem;
4483
4484
4485
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
Mark Otto's avatar
Mark Otto committed
4486
4487
  border-bottom-right-radius: -.8rem;
  border-bottom-left-radius: -.8rem;
4488
4489
4490
4491
4492
4493
4494
4495
4496
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
Mark Otto's avatar
Mark Otto committed
4497
  border-bottom-left-radius: -.8rem;
4498
4499
4500
4501
4502
4503
4504
4505
4506
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
Mark Otto's avatar
Mark Otto committed
4507
  border-bottom-right-radius: -.8rem;
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
XhmikosR's avatar
XhmikosR committed
4533
  border-left: 0;
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
XhmikosR's avatar
XhmikosR committed
4547
  border-right: 0;
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
Mark Otto's avatar
Mark Otto committed
4574
  margin-bottom: 24px;
4575
4576
4577
}
.panel-group .panel {
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
4578
  border-radius: .2rem;
4579
4580
4581
4582
4583
4584
4585
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
XhmikosR's avatar
XhmikosR committed
4586
.panel-group .panel-heading + .panel-collapse > .panel-body {
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
4599
  color: #373a3c;
4600
4601
4602
4603
4604
4605
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
XhmikosR's avatar
XhmikosR committed
4606
4607
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
4608
  background-color: #373a3c;
XhmikosR's avatar
XhmikosR committed
4609
}
4610
4611
4612
4613
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
Mark Otto's avatar
Mark Otto committed
4614
  border-color: #027de7;
4615
4616
4617
}
.panel-primary > .panel-heading {
  color: #fff;
Mark Otto's avatar
Mark Otto committed
4618
4619
  background-color: #027de7;
  border-color: #027de7;
4620
4621
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
Mark Otto's avatar
Mark Otto committed
4622
  border-top-color: #027de7;
4623
}
XhmikosR's avatar
XhmikosR committed
4624
.panel-primary > .panel-heading .badge {
Mark Otto's avatar
Mark Otto committed
4625
  color: #027de7;
XhmikosR's avatar
XhmikosR committed
4626
4627
  background-color: #fff;
}
4628
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
Mark Otto's avatar
Mark Otto committed
4629
  border-bottom-color: #027de7;
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
XhmikosR's avatar
XhmikosR committed
4642
4643
4644
4645
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
XhmikosR's avatar
XhmikosR committed
4660
4661
4662
4663
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
XhmikosR's avatar
XhmikosR committed
4678
4679
4680
4681
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
XhmikosR's avatar
XhmikosR committed
4696
4697
4698
4699
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
4700
4701
4702
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
  position: absolute;
  top: 0;
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
4717
  left: 0;
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}
4728
.close {
XhmikosR's avatar
XhmikosR committed
4729
  float: right;
Mark Otto's avatar
Mark Otto committed
4730
  font-size: 1.5rem;
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
4758
4759
  bottom: 0;
  left: 0;
4760
4761
  z-index: 1050;
  display: none;
XhmikosR's avatar
XhmikosR committed
4762
  overflow: hidden;
4763
4764
4765
4766
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
XhmikosR's avatar
XhmikosR committed
4767
  -webkit-transform: translate3d(0, -25%, 0);
4768
4769
4770
  -webkit-transform: transition .3s ease-out;
      -ms-transform: transition .3s ease-out;
       -o-transform: transition .3s ease-out;
XhmikosR's avatar
XhmikosR committed
4771
          transform: translate3d(0, -25%, 0);
4772
          transform: transition .3s ease-out;
4773
4774
}
.modal.in .modal-dialog {
XhmikosR's avatar
XhmikosR committed
4775
4776
4777
4778
4779
4780
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
4781
4782
4783
4784
4785
4786
4787
4788
4789
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
Bas Bosman's avatar
Bas Bosman committed
4790
4791
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
4792
4793
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
Mark Otto's avatar
Mark Otto committed
4794
  border-radius: .3rem;
Mark Otto's avatar
grunt    
Mark Otto committed
4795
  outline: 0;
4796
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
4797
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
4798
4799
4800
4801
4802
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
4803
4804
  bottom: 0;
  left: 0;
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.in {
  opacity: .5;
}
.modal-header {
Mark Otto's avatar
Mark Otto committed
4815
  min-height: 16.5px;
4816
4817
4818
4819
4820
4821
4822
4823
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
Mark Otto's avatar
Mark Otto committed
4824
  line-height: 1.5;
4825
4826
4827
4828
4829
4830
4831
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
XhmikosR's avatar
XhmikosR committed
4832
  text-align: right;
4833
4834
4835
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
4836
  margin-bottom: 0;
XhmikosR's avatar
XhmikosR committed
4837
  margin-left: 5px;
4838
4839
}
.modal-footer .btn-group .btn + .btn {
XhmikosR's avatar
XhmikosR committed
4840
  margin-left: -1px;
4841
4842
}
.modal-footer .btn-block + .btn-block {
XhmikosR's avatar
XhmikosR committed
4843
  margin-left: 0;
4844
}
fat's avatar
build    
fat committed
4845
4846
4847
4848
4849
4850
4851
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
4852
4853
4854
4855
4856
4857
4858
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
4859
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
XhmikosR's avatar
XhmikosR committed
4872
  z-index: 1070;
4873
  display: block;
Mark Otto's avatar
Mark Otto committed
4874
  font-size: .85rem;
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
  line-height: 1.4;
  visibility: visible;
  opacity: 0;
}
.tooltip.in {
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
XhmikosR's avatar
XhmikosR committed
4888
  margin-left: 3px;
4889
4890
4891
4892
4893
4894
4895
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
XhmikosR's avatar
XhmikosR committed
4896
  margin-left: -3px;
4897
4898
4899
4900
4901
4902
4903
4904
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
Mark Otto's avatar
Mark Otto committed
4905
  border-radius: .2rem;
4906
4907
4908
4909
4910
4911
4912
4913
4914
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
4915
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
4916
4917
  left: 50%;
  margin-left: -5px;
4918
4919
4920
4921
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
4922
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
4923
  left: 5px;
4924
4925
4926
4927
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
XhmikosR's avatar
XhmikosR committed
4928
  right: 5px;
4929
4930
4931
4932
4933
4934
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
4935
  left: 0;
4936
  margin-top: -5px;
XhmikosR's avatar
XhmikosR committed
4937
4938
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
4939
4940
4941
}
.tooltip.left .tooltip-arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
4942
  right: 0;
4943
  margin-top: -5px;
XhmikosR's avatar
XhmikosR committed
4944
4945
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
4946
4947
4948
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
XhmikosR's avatar
XhmikosR committed
4949
4950
  left: 50%;
  margin-left: -5px;
4951
4952
4953
4954
4955
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
XhmikosR's avatar
XhmikosR committed
4956
  left: 5px;
4957
4958
4959
4960
4961
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
XhmikosR's avatar
XhmikosR committed
4962
  right: 5px;
4963
4964
4965
4966
4967
4968
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
XhmikosR's avatar
XhmikosR committed
4969
4970
  left: 0;
  z-index: 1060;
4971
4972
4973
  display: none;
  max-width: 276px;
  padding: 1px;
XhmikosR's avatar
XhmikosR committed
4974
  text-align: left;
4975
4976
  white-space: normal;
  background-color: #fff;
Bas Bosman's avatar
Bas Bosman committed
4977
4978
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
4979
4980
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
Mark Otto's avatar
Mark Otto committed
4981
  border-radius: .3rem;
4982
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
4983
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
4984
4985
4986
4987
4988
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
XhmikosR's avatar
XhmikosR committed
4989
  margin-left: 10px;
4990
4991
4992
4993
4994
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
XhmikosR's avatar
XhmikosR committed
4995
  margin-left: -10px;
4996
4997
4998
4999
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
Mark Otto's avatar
Mark Otto committed
5000
  font-size: 1rem;
For faster browsing, not all history is shown. View entire blame