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