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