bootstrap.css 113 KB
Newer Older
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
XhmikosR's avatar
XhmikosR committed
2014
2015
2016
2017
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
2018
2019
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
XhmikosR's avatar
XhmikosR committed
2020
2021
    position: relative;
    margin-left: 0;
2022
2023
2024
2025
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
2026
}
2027
2028
2029
2030
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
Mark Otto's avatar
Mark Otto committed
2031
  padding-top: 1.5rem;
2032
2033
  margin-top: 0;
  margin-bottom: 0;
2034
}
2035
2036
.form-horizontal .radio,
.form-horizontal .checkbox {
Mark Otto's avatar
Mark Otto committed
2037
  min-height: 25.5px;
2038
}
2039
.form-horizontal .form-group {
Mark Otto's avatar
Mark Otto committed
2040
2041
  margin-right: -.75rem;
  margin-left: -.75rem;
2042
}
2043
@media (min-width: 48em) {
2044
  .form-horizontal .control-label {
2045
    padding-top: 1.5rem;
Mark Otto's avatar
Mark Otto committed
2046
2047
    margin-bottom: 0;
    text-align: right;
XhmikosR's avatar
XhmikosR committed
2048
2049
2050
  }
}
.form-horizontal .has-feedback .form-control-feedback {
Mark Otto's avatar
Mark Otto committed
2051
  right: .75rem;
XhmikosR's avatar
XhmikosR committed
2052
}
2053
@media (min-width: 48em) {
XhmikosR's avatar
XhmikosR committed
2054
  .form-horizontal .form-group-lg .control-label {
Mark Otto's avatar
Mark Otto committed
2055
    padding-top: 1.9975rem;
XhmikosR's avatar
XhmikosR committed
2056
2057
  }
}
2058
@media (min-width: 48em) {
XhmikosR's avatar
XhmikosR committed
2059
  .form-horizontal .form-group-sm .control-label {
Mark Otto's avatar
Mark Otto committed
2060
    padding-top: 1.3rem;
2061
  }
2062
}
2063
2064
.btn {
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
2065
  padding: .5rem .75rem;
2066
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
2067
  font-size: 1rem;
2068
  font-weight: normal;
Mark Otto's avatar
Mark Otto committed
2069
  line-height: 1.5;
2070
  text-align: center;
Mark Otto's avatar
Mark Otto committed
2071
  white-space: nowrap;
2072
  vertical-align: middle;
2073
2074
  -ms-touch-action: manipulation;
      touch-action: manipulation;
2075
2076
2077
2078
2079
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
Mark Otto's avatar
Mark Otto committed
2080
  background-image: none;
2081
  border: .075rem solid transparent;
Mark Otto's avatar
Mark Otto committed
2082
2083
2084
2085
  border-radius: .25rem;
  -webkit-transition: all .2s ease-in-out;
       -o-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
2086
}
2087
2088
.btn:focus,
.btn:active:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2089
2090
2091
2092
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
2093
2094
2095
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
2096
}
2097
.btn:hover,
Mark Otto's avatar
grunt    
Mark Otto committed
2098
2099
.btn:focus,
.btn.focus {
2100
  text-decoration: none;
2101
}
2102
2103
.btn:active,
.btn.active {
2104
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2105
2106
2107
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2108
}
2109
2110
2111
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
2112
  pointer-events: none;
Mark Otto's avatar
Mark Otto committed
2113
  cursor: not-allowed;
2114
2115
  -webkit-box-shadow: none;
          box-shadow: none;
Mark Otto's avatar
Mark Otto committed
2116
  opacity: .65;
2117
}
2118
.btn-primary {
Mark Otto's avatar
Mark Otto committed
2119
  color: #fff;
2120
2121
  background-color: #0275d8;
  border-color: #0267bf;
2122
}
2123
2124
.btn-primary:hover,
.btn-primary:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2125
.btn-primary.focus,
2126
2127
.btn-primary:active,
.btn-primary.active,
XhmikosR's avatar
XhmikosR committed
2128
.open > .dropdown-toggle.btn-primary {
Mark Otto's avatar
Mark Otto committed
2129
  color: #fff;
Mark Otto's avatar
Mark Otto committed
2130
  background-color: #025aa5;
2131
  border-color: #014682;
2132
}
2133
2134
.btn-primary:active,
.btn-primary.active,
XhmikosR's avatar
XhmikosR committed
2135
.open > .dropdown-toggle.btn-primary {
2136
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2137
2138
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2139
}
2140
2141
2142
2143
2144
2145
2146
2147
2148
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2149
2150
2151
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
2152
2153
2154
2155
2156
2157
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
2158
2159
  background-color: #0275d8;
  border-color: #0267bf;
2160
}
2161
.btn-primary .badge {
2162
  color: #0275d8;
Mark Otto's avatar
Mark Otto committed
2163
  background-color: #fff;
2164
}
2165
2166
.btn-secondary {
  color: #373a3c;
Mark Otto's avatar
Mark Otto committed
2167
  background-color: #fff;
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
  border-color: #eceeef;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary:active,
.btn-secondary.active,
.open > .dropdown-toggle.btn-secondary {
  color: #373a3c;
  background-color: #e6e6e6;
  border-color: #cbd0d3;
}
.btn-secondary:active,
.btn-secondary.active,
.open > .dropdown-toggle.btn-secondary {
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2184
2185
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
}
.btn-secondary.disabled,
.btn-secondary[disabled],
fieldset[disabled] .btn-secondary,
.btn-secondary.disabled:hover,
.btn-secondary[disabled]:hover,
fieldset[disabled] .btn-secondary:hover,
.btn-secondary.disabled:focus,
.btn-secondary[disabled]:focus,
fieldset[disabled] .btn-secondary:focus,
.btn-secondary.disabled.focus,
.btn-secondary[disabled].focus,
fieldset[disabled] .btn-secondary.focus,
.btn-secondary.disabled:active,
.btn-secondary[disabled]:active,
fieldset[disabled] .btn-secondary:active,
.btn-secondary.disabled.active,
.btn-secondary[disabled].active,
fieldset[disabled] .btn-secondary.active {
Mark Otto's avatar
Mark Otto committed
2205
  background-color: #fff;
2206
2207
2208
  border-color: #eceeef;
}
.btn-secondary .badge {
Mark Otto's avatar
Mark Otto committed
2209
  color: #fff;
2210
2211
  background-color: #373a3c;
}
Mark Otto's avatar
Mark Otto committed
2212
.btn-info {
Mark Otto's avatar
Mark Otto committed
2213
  color: #fff;
Mark Otto's avatar
Mark Otto committed
2214
2215
2216
2217
2218
2219
2220
2221
2222
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
Mark Otto's avatar
Mark Otto committed
2223
  color: #fff;
Mark Otto's avatar
Mark Otto committed
2224
2225
2226
2227
2228
2229
2230
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2231
2232
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
Mark Otto's avatar
Mark Otto committed
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
Mark Otto's avatar
Mark Otto committed
2257
  background-color: #fff;
Mark Otto's avatar
Mark Otto committed
2258
}
2259
.btn-success {
Mark Otto's avatar
Mark Otto committed
2260
  color: #fff;
2261
2262
  background-color: #5cb85c;
  border-color: #4cae4c;
2263
}
2264
2265
.btn-success:hover,
.btn-success:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2266
.btn-success.focus,
2267
2268
.btn-success:active,
.btn-success.active,
XhmikosR's avatar
XhmikosR committed
2269
.open > .dropdown-toggle.btn-success {
Mark Otto's avatar
Mark Otto committed
2270
  color: #fff;
2271
  background-color: #449d44;
2272
  border-color: #398439;
2273
}
2274
2275
.btn-success:active,
.btn-success.active,
XhmikosR's avatar
XhmikosR committed
2276
.open > .dropdown-toggle.btn-success {
2277
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2278
2279
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2280
}
2281
2282
2283
2284
2285
2286
2287
2288
2289
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2290
2291
2292
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
2293
2294
2295
2296
2297
2298
2299
2300
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
2301
}
2302
2303
.btn-success .badge {
  color: #5cb85c;
Mark Otto's avatar
Mark Otto committed
2304
  background-color: #fff;
2305
}
2306
.btn-warning {
Mark Otto's avatar
Mark Otto committed
2307
  color: #fff;
2308
2309
  background-color: #f0ad4e;
  border-color: #eea236;
2310
}
2311
2312
.btn-warning:hover,
.btn-warning:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2313
.btn-warning.focus,
2314
2315
.btn-warning:active,
.btn-warning.active,
XhmikosR's avatar
XhmikosR committed
2316
.open > .dropdown-toggle.btn-warning {
Mark Otto's avatar
Mark Otto committed
2317
  color: #fff;
2318
  background-color: #ec971f;
2319
  border-color: #d58512;
2320
}
2321
2322
.btn-warning:active,
.btn-warning.active,
XhmikosR's avatar
XhmikosR committed
2323
.open > .dropdown-toggle.btn-warning {
2324
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2325
2326
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2327
}
2328
2329
2330
2331
2332
2333
2334
2335
2336
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2337
2338
2339
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
2340
2341
2342
2343
2344
2345
2346
2347
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
2348
}
2349
2350
.btn-warning .badge {
  color: #f0ad4e;
Mark Otto's avatar
Mark Otto committed
2351
  background-color: #fff;
2352
}
2353
.btn-danger {
Mark Otto's avatar
Mark Otto committed
2354
  color: #fff;
2355
2356
  background-color: #d9534f;
  border-color: #d43f3a;
2357
}
2358
2359
.btn-danger:hover,
.btn-danger:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2360
.btn-danger.focus,
2361
2362
.btn-danger:active,
.btn-danger.active,
XhmikosR's avatar
XhmikosR committed
2363
.open > .dropdown-toggle.btn-danger {
Mark Otto's avatar
Mark Otto committed
2364
  color: #fff;
2365
  background-color: #c9302c;
2366
  border-color: #ac2925;
2367
}
2368
2369
.btn-danger:active,
.btn-danger.active,
XhmikosR's avatar
XhmikosR committed
2370
.open > .dropdown-toggle.btn-danger {
2371
  background-image: none;
Mark Otto's avatar
Mark Otto committed
2372
2373
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2374
}
2375
2376
2377
2378
2379
2380
2381
2382
2383
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
Mark Otto's avatar
grunt    
Mark Otto committed
2384
2385
2386
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
2387
2388
2389
2390
2391
2392
2393
2394
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
2395
}
2396
2397
.btn-danger .badge {
  color: #d9534f;
Mark Otto's avatar
Mark Otto committed
2398
  background-color: #fff;
2399
}
2400
.btn-link {
2401
  font-weight: normal;
2402
  color: #0275d8;
2403
  border-radius: 0;
2404
}
2405
2406
.btn-link,
.btn-link:active,
2407
.btn-link.active,
2408
2409
2410
2411
2412
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
2413
}
2414
2415
2416
2417
2418
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
2419
}
2420
2421
.btn-link:hover,
.btn-link:focus {
2422
  color: #014c8c;
2423
2424
  text-decoration: underline;
  background-color: transparent;
2425
}
2426
2427
2428
2429
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
2430
  color: #818a91;
2431
  text-decoration: none;
2432
}
2433
2434
.btn-lg,
.btn-group-lg > .btn {
Mark Otto's avatar
Mark Otto committed
2435
  padding: .75rem 1.5rem;
Mark Otto's avatar
Mark Otto committed
2436
  font-size: 1.25rem;
2437
  line-height: 1.33;
Mark Otto's avatar
Mark Otto committed
2438
  border-radius: .3rem;
2439
}
2440
2441
.btn-sm,
.btn-group-sm > .btn {
Mark Otto's avatar
Mark Otto committed
2442
2443
  padding: .3rem .75rem;
  font-size: .85rem;
2444
  line-height: 1.5;
Mark Otto's avatar
Mark Otto committed
2445
  border-radius: .2rem;
2446
}
2447
2448
.btn-xs,
.btn-group-xs > .btn {
Mark Otto's avatar
Mark Otto committed
2449
2450
  padding: .2rem .5rem;
  font-size: .75rem;
2451
  line-height: 1.5;
Mark Otto's avatar
Mark Otto committed
2452
  border-radius: .2rem;
2453
}
2454
2455
2456
.btn-block {
  display: block;
  width: 100%;
2457
}
2458
2459
.btn-block + .btn-block {
  margin-top: 5px;
2460
}
2461
2462
2463
2464
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
2465
}
2466
2467
2468
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
Bas Bosman's avatar
Bas Bosman committed
2469
       -o-transition: opacity .15s linear;
2470
          transition: opacity .15s linear;
2471
}
2472
2473
.fade.in {
  opacity: 1;
2474
}
2475
2476
.collapse {
  display: none;
Mark Otto's avatar
Mark Otto committed
2477
  visibility: hidden;
2478
}
2479
2480
.collapse.in {
  display: block;
Mark Otto's avatar
Mark Otto committed
2481
  visibility: visible;
2482
}
2483
2484
tr.collapse.in {
  display: table-row;
2485
}
2486
2487
tbody.collapse.in {
  display: table-row-group;
2488
}
2489
2490
2491
2492
2493
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
Bas Bosman's avatar
Bas Bosman committed
2494
       -o-transition: height .35s ease;
2495
          transition: height .35s ease;
Mark Otto's avatar
Mark Otto committed
2496
2497
2498
2499
2500
2501
2502
2503
2504
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
2505
}
2506
2507
2508
2509
.dropdown {
  position: relative;
}
.dropdown-toggle:after {
2510
2511
2512
  display: inline-block;
  width: 0;
  height: 0;
2513
  margin-left: .25rem;
2514
  vertical-align: middle;
Mark Otto's avatar
Mark Otto committed
2515
2516
2517
2518
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-left: .3em solid transparent;
2519
2520
2521
2522
2523
2524
2525
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
XhmikosR's avatar
XhmikosR committed
2526
  left: 0;
2527
2528
  z-index: 1000;
  display: none;
XhmikosR's avatar
XhmikosR committed
2529
  float: left;
2530
2531
2532
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
Mark Otto's avatar
Mark Otto committed
2533
  font-size: 1rem;
XhmikosR's avatar
XhmikosR committed
2534
  text-align: left;
Mark Otto's avatar
Mark Otto committed
2535
2536
  list-style: none;
  background-color: #fff;
Bas Bosman's avatar
Bas Bosman committed
2537
2538
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
Mark Otto's avatar
Mark Otto committed
2539
2540
2541
2542
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
2543
2544
2545
}
.dropdown-menu .divider {
  height: 1px;
Mark Otto's avatar
Mark Otto committed
2546
  margin: 11px 0;
2547
2548
2549
2550
2551
2552
2553
2554
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
Mark Otto's avatar
Mark Otto committed
2555
  line-height: 1.5;
2556
  color: #373a3c;
2557
2558
2559
2560
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
2561
  color: #2b2d2f;
Mark Otto's avatar
Mark Otto committed
2562
  text-decoration: none;
2563
2564
2565
2566
2567
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
Mark Otto's avatar
Mark Otto committed
2568
  color: #fff;
2569
  text-decoration: none;
2570
  background-color: #0275d8;
Mark Otto's avatar
Mark Otto committed
2571
  outline: 0;
2572
2573
2574
2575
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
2576
  color: #818a91;
2577
2578
2579
2580
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
Mark Otto's avatar
Mark Otto committed
2581
  cursor: not-allowed;
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
2593
  right: 0;
Mark Otto's avatar
Mark Otto committed
2594
  left: auto;
2595
}
XhmikosR's avatar
XhmikosR committed
2596
.dropdown-menu-left {
2597
  right: auto;
Mark Otto's avatar
Mark Otto committed
2598
  left: 0;
XhmikosR's avatar
XhmikosR committed
2599
}
2600
2601
2602
.dropdown-header {
  display: block;
  padding: 3px 20px;
Mark Otto's avatar
Mark Otto committed
2603
  font-size: .85rem;
Mark Otto's avatar
Mark Otto committed
2604
  line-height: 1.5;
2605
  color: #818a91;
XhmikosR's avatar
XhmikosR committed
2606
  white-space: nowrap;
2607
2608
2609
}
.dropdown-backdrop {
  position: fixed;
Mark Otto's avatar
Mark Otto committed
2610
  top: 0;
2611
  right: 0;
2612
  bottom: 0;
Mark Otto's avatar
Mark Otto committed
2613
  left: 0;
2614
2615
2616
  z-index: 990;
}
.pull-right > .dropdown-menu {
XhmikosR's avatar
XhmikosR committed
2617
2618
  right: 0;
  left: auto;
2619
2620
2621
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
2622
  content: "";
Mark Otto's avatar
Mark Otto committed
2623
2624
  border-top: 0;
  border-bottom: .3em solid;
2625
2626
2627
2628
2629
2630
2631
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
2632
@media (min-width: 48em) {
2633
  .navbar-right .dropdown-menu {
2634
    right: 0;
Mark Otto's avatar
Mark Otto committed
2635
    left: auto;
2636
  }
XhmikosR's avatar
XhmikosR committed
2637
  .navbar-right .dropdown-menu-left {
2638
    right: auto;
Mark Otto's avatar
Mark Otto committed
2639
    left: 0;
XhmikosR's avatar
XhmikosR committed
2640
  }
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
XhmikosR's avatar
XhmikosR committed
2651
  float: left;
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
Mark Otto's avatar
grunt    
Mark Otto committed
2665
  outline: 0;
2666
2667
2668
2669
2670
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
XhmikosR's avatar
XhmikosR committed
2671
  margin-left: -1px;
2672
2673
}
.btn-toolbar {
XhmikosR's avatar
XhmikosR committed
2674
  margin-left: -5px;
2675
2676
2677
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
XhmikosR's avatar
XhmikosR committed
2678
  float: left;
2679
2680
2681
2682
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
XhmikosR's avatar
XhmikosR committed
2683
  margin-left: 5px;
2684
2685
2686
2687
2688
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
XhmikosR's avatar
XhmikosR committed
2689
  margin-left: 0;
2690
2691
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
2692
  border-top-right-radius: 0;
Mark Otto's avatar
Mark Otto committed
2693
  border-bottom-right-radius: 0;
2694
2695
2696
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
2697
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
2698
  border-bottom-left-radius: 0;
2699
2700
}
.btn-group > .btn-group {
XhmikosR's avatar
XhmikosR committed
2701
  float: left;
2702
2703
2704
2705
2706
2707
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
2708
  border-top-right-radius: 0;
Mark Otto's avatar
Mark Otto committed
2709
  border-bottom-right-radius: 0;
2710
}
XhmikosR's avatar
XhmikosR committed
2711
.btn-group > .btn-group:last-child > .btn:first-child {
2712
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
2713
  border-bottom-left-radius: 0;
XhmikosR's avatar
XhmikosR committed
2714
}
2715
2716
2717
2718
2719
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
2720
  padding-right: 8px;
Mark Otto's avatar
Mark Otto committed
2721
  padding-left: 8px;
2722
2723
}
.btn-group > .btn-lg + .dropdown-toggle {
2724
  padding-right: 12px;
Mark Otto's avatar
Mark Otto committed
2725
  padding-left: 12px;
2726
2727
}
.btn-group.open .dropdown-toggle {
Mark Otto's avatar
Mark Otto committed
2728
2729
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2730
2731
2732
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
2733
          box-shadow: none;
2734
2735
}
.btn .caret {
XhmikosR's avatar
XhmikosR committed
2736
  margin-left: 0;
2737
2738
}
.btn-lg .caret {
Mark Otto's avatar
Mark Otto committed
2739
  border-width: .3em .3em 0;
2740
2741
2742
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
Mark Otto's avatar
Mark Otto committed
2743
  border-width: 0 .3em .3em;
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
XhmikosR's avatar
XhmikosR committed
2761
  margin-left: 0;
2762
2763
2764
2765
2766
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
Mark Otto's avatar
Mark Otto committed
2767
  border-top-right-radius: .25rem;
2768
  border-bottom-right-radius: 0;
2769
  border-bottom-left-radius: 0;
2770
2771
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
2772
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
2773
2774
  border-top-right-radius: 0;
  border-bottom-left-radius: .25rem;
2775
2776
2777
2778
2779
2780
2781
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
2782
  border-bottom-left-radius: 0;
2783
2784
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
2785
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
2786
  border-top-right-radius: 0;
2787
2788
2789
2790
2791
2792
2793
2794
2795
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
2796
  display: table-cell;
Mark Otto's avatar
Mark Otto committed
2797
  float: none;
2798
2799
2800
2801
2802
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
XhmikosR's avatar
XhmikosR committed
2803
2804
2805
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
2806
2807
2808
2809
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
2810
  position: absolute;
Mark Otto's avatar
grunt    
Mark Otto committed
2811
2812
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
2813
2814
2815
2816
2817
2818
2819
2820
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
2821
  padding-right: 0;
Mark Otto's avatar
Mark Otto committed
2822
  padding-left: 0;
2823
2824
2825
2826
}
.input-group .form-control {
  position: relative;
  z-index: 2;
XhmikosR's avatar
XhmikosR committed
2827
  float: left;
2828
2829
2830
2831
2832
2833
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
2834
  height: 3.3125rem;
Mark Otto's avatar
Mark Otto committed
2835
  padding: .75rem 1.5rem;
Mark Otto's avatar
Mark Otto committed
2836
  font-size: 1.25rem;
2837
  line-height: 1.33;
Mark Otto's avatar
Mark Otto committed
2838
  border-radius: .3rem;
2839
2840
2841
2842
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
2843
2844
  height: 3.3125rem;
  line-height: 3.3125rem;
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
2857
  height: 2.025rem;
Mark Otto's avatar
Mark Otto committed
2858
2859
  padding: .3rem .75rem;
  font-size: .85rem;
2860
  line-height: 1.5;
Mark Otto's avatar
Mark Otto committed
2861
  border-radius: .2rem;
2862
2863
2864
2865
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
2866
2867
  height: 2.025rem;
  line-height: 2.025rem;
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
Mark Otto's avatar
Mark Otto committed
2894
  padding: .5rem .75rem;
Mark Otto's avatar
Mark Otto committed
2895
  font-size: 1rem;
2896
2897
  font-weight: normal;
  line-height: 1;
2898
  color: #55595c;
2899
  text-align: center;
2900
  background-color: #eceeef;
Mark Otto's avatar
Mark Otto committed
2901
2902
  border: 1px solid #ccc;
  border-radius: .25rem;
2903
2904
}
.input-group-addon.input-sm {
Mark Otto's avatar
Mark Otto committed
2905
2906
2907
  padding: .3rem .75rem;
  font-size: .85rem;
  border-radius: .2rem;
2908
2909
}
.input-group-addon.input-lg {
Mark Otto's avatar
Mark Otto committed
2910
  padding: .75rem 1.5rem;
Mark Otto's avatar
Mark Otto committed
2911
  font-size: 1.25rem;
Mark Otto's avatar
Mark Otto committed
2912
  border-radius: .3rem;
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
2925
  border-top-right-radius: 0;
Mark Otto's avatar
Mark Otto committed
2926
  border-bottom-right-radius: 0;
2927
2928
}
.input-group-addon:first-child {
XhmikosR's avatar
XhmikosR committed
2929
  border-right: 0;
2930
2931
2932
2933
2934
2935
2936
2937
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
2938
  border-top-left-radius: 0;
Mark Otto's avatar
Mark Otto committed
2939
  border-bottom-left-radius: 0;
2940
2941
}
.input-group-addon:last-child {
XhmikosR's avatar
XhmikosR committed
2942
  border-left: 0;
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
XhmikosR's avatar
XhmikosR committed
2953
  margin-left: -1px;
2954
2955
2956
2957
2958
2959
2960
2961
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
XhmikosR's avatar
XhmikosR committed
2962
  margin-right: -1px;
2963
2964
2965
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
XhmikosR's avatar
XhmikosR committed
2966
  margin-left: -1px;
2967
}
Mark Otto's avatar
Mark Otto committed
2968
.nav {
2969
  padding-left: 0;
Mark Otto's avatar
Mark Otto committed
2970
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
2971
2972
2973
2974
  list-style: none;
}
.nav-item {
  position: relative;
2975
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
2976
2977
}
.nav-link {
2978
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
2979
  padding: .6em 1em;
Mark Otto's avatar
Mark Otto committed
2980
2981
2982
2983
2984
2985
2986
  line-height: 1.5;
}
.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
  background-color: #eceeef;
}
2987
2988
.disabled > .nav-link,
.nav-link.disabled {
Mark Otto's avatar
Mark Otto committed
2989
2990
2991
  color: #818a91;
}
.disabled > .nav-link,
2992
.nav-link.disabled,
Mark Otto's avatar
Mark Otto committed
2993
.disabled > .nav-link:hover,
2994
2995
2996
.nav-link.disabled:hover,
.disabled > .nav-link:focus,
.nav-link.disabled:focus {
2997
  color: #818a91;
2998
  cursor: not-allowed;
Mark Otto's avatar
Mark Otto committed
2999
  background-color: transparent;
3000
}
For faster browsing, not all history is shown. View entire blame