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