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