Subversion Repositories oidplus

Rev

Rev 637 | Rev 846 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 637 Rev 679
Line 1... Line 1...
1
@charset "UTF-8";
1
@charset "UTF-8";
2
/*!
2
/*!
3
 * Bootstrap v5.1.1 (https://getbootstrap.com/)
3
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
4
 * Copyright 2011-2021 The Bootstrap Authors
4
 * Copyright 2011-2021 The Bootstrap Authors
5
 * Copyright 2011-2021 Twitter, Inc.
5
 * Copyright 2011-2021 Twitter, Inc.
6
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
7
 */
7
 */
8
:root {
8
:root {
Line 446... Line 446...
446
 
446
 
447
::-webkit-color-swatch-wrapper {
447
::-webkit-color-swatch-wrapper {
448
  padding: 0;
448
  padding: 0;
449
}
449
}
450
 
450
 
-
 
451
::-webkit-file-upload-button {
-
 
452
  font: inherit;
-
 
453
}
-
 
454
 
451
::file-selector-button {
455
::file-selector-button {
452
  font: inherit;
456
  font: inherit;
453
}
457
}
454
 
458
 
455
::-webkit-file-upload-button {
459
::-webkit-file-upload-button {
Line 659... Line 663...
659
.row {
663
.row {
660
  --bs-gutter-x: 1.5rem;
664
  --bs-gutter-x: 1.5rem;
661
  --bs-gutter-y: 0;
665
  --bs-gutter-y: 0;
662
  display: flex;
666
  display: flex;
663
  flex-wrap: wrap;
667
  flex-wrap: wrap;
664
  margin-top: calc(var(--bs-gutter-y) * -1);
668
  margin-top: calc(-1 * var(--bs-gutter-y));
665
  margin-right: calc(var(--bs-gutter-x) * -.5);
669
  margin-right: calc(-0.5 * var(--bs-gutter-x));
666
  margin-left: calc(var(--bs-gutter-x) * -.5);
670
  margin-left: calc(-0.5 * var(--bs-gutter-x));
667
}
671
}
668
.row > * {
672
.row > * {
669
  flex-shrink: 0;
673
  flex-shrink: 0;
670
  width: 100%;
674
  width: 100%;
671
  max-width: 100%;
675
  max-width: 100%;
672
  padding-right: calc(var(--bs-gutter-x) * .5);
676
  padding-right: calc(var(--bs-gutter-x) * 0.5);
673
  padding-left: calc(var(--bs-gutter-x) * .5);
677
  padding-left: calc(var(--bs-gutter-x) * 0.5);
674
  margin-top: var(--bs-gutter-y);
678
  margin-top: var(--bs-gutter-y);
675
}
679
}
676
 
680
 
677
.col {
681
.col {
678
  flex: 1 0 0%;
682
  flex: 1 0 0%;
Line 1972... Line 1976...
1972
  vertical-align: inherit;
1976
  vertical-align: inherit;
1973
}
1977
}
1974
.table > thead {
1978
.table > thead {
1975
  vertical-align: bottom;
1979
  vertical-align: bottom;
1976
}
1980
}
1977
.table > :not(:last-child) > :last-child > * {
1981
.table > :not(:first-child) {
1978
  border-bottom-color: currentColor;
1982
  border-top: 2px solid currentColor;
1979
}
1983
}
1980
 
1984
 
1981
.caption-top {
1985
.caption-top {
1982
  caption-side: top;
1986
  caption-side: top;
1983
}
1987
}
Line 1994... Line 1998...
1994
}
1998
}
1995
 
1999
 
1996
.table-borderless > :not(caption) > * > * {
2000
.table-borderless > :not(caption) > * > * {
1997
  border-bottom-width: 0;
2001
  border-bottom-width: 0;
1998
}
2002
}
-
 
2003
.table-borderless > :not(:first-child) {
-
 
2004
  border-top-width: 0;
-
 
2005
}
1999
 
2006
 
2000
.table-striped > tbody > tr:nth-of-type(odd) {
2007
.table-striped > tbody > tr:nth-of-type(odd) > * {
2001
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2008
  --bs-table-accent-bg: var(--bs-table-striped-bg);
2002
  color: var(--bs-table-striped-color);
2009
  color: var(--bs-table-striped-color);
2003
}
2010
}
2004
 
2011
 
2005
.table-active {
2012
.table-active {
2006
  --bs-table-accent-bg: var(--bs-table-active-bg);
2013
  --bs-table-accent-bg: var(--bs-table-active-bg);
2007
  color: var(--bs-table-active-color);
2014
  color: var(--bs-table-active-color);
2008
}
2015
}
2009
 
2016
 
2010
.table-hover > tbody > tr:hover {
2017
.table-hover > tbody > tr:hover > * {
2011
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2018
  --bs-table-accent-bg: var(--bs-table-hover-bg);
2012
  color: var(--bs-table-hover-color);
2019
  color: var(--bs-table-hover-color);
2013
}
2020
}
2014
 
2021
 
2015
.table-primary {
2022
.table-primary {
Line 2221... Line 2228...
2221
}
2228
}
2222
.form-control:disabled, .form-control[readonly] {
2229
.form-control:disabled, .form-control[readonly] {
2223
  background-color: #e9ecef;
2230
  background-color: #e9ecef;
2224
  opacity: 1;
2231
  opacity: 1;
2225
}
2232
}
-
 
2233
.form-control::-webkit-file-upload-button {
-
 
2234
  padding: 0.375rem 0.75rem;
-
 
2235
  margin: -0.375rem -0.75rem;
-
 
2236
  -webkit-margin-end: 0.75rem;
-
 
2237
  margin-inline-end: 0.75rem;
-
 
2238
  color: #212529;
-
 
2239
  background-color: #e9ecef;
-
 
2240
  pointer-events: none;
-
 
2241
  border-color: inherit;
-
 
2242
  border-style: solid;
-
 
2243
  border-width: 0;
-
 
2244
  border-inline-end-width: 1px;
-
 
2245
  border-radius: 0;
-
 
2246
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-
 
2247
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-
 
2248
}
2226
.form-control::file-selector-button {
2249
.form-control::file-selector-button {
2227
  padding: 0.375rem 0.75rem;
2250
  padding: 0.375rem 0.75rem;
2228
  margin: -0.375rem -0.75rem;
2251
  margin: -0.375rem -0.75rem;
2229
  -webkit-margin-end: 0.75rem;
2252
  -webkit-margin-end: 0.75rem;
2230
  margin-inline-end: 0.75rem;
2253
  margin-inline-end: 0.75rem;
Line 2237... Line 2260...
2237
  border-inline-end-width: 1px;
2260
  border-inline-end-width: 1px;
2238
  border-radius: 0;
2261
  border-radius: 0;
2239
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2262
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
2240
}
2263
}
2241
@media (prefers-reduced-motion: reduce) {
2264
@media (prefers-reduced-motion: reduce) {
-
 
2265
  .form-control::-webkit-file-upload-button {
-
 
2266
    -webkit-transition: none;
-
 
2267
    transition: none;
-
 
2268
  }
2242
  .form-control::file-selector-button {
2269
  .form-control::file-selector-button {
2243
    transition: none;
2270
    transition: none;
2244
  }
2271
  }
2245
}
2272
}
-
 
2273
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
-
 
2274
  background-color: #dde0e3;
-
 
2275
}
2246
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
2276
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
2247
  background-color: #dde0e3;
2277
  background-color: #dde0e3;
2248
}
2278
}
2249
.form-control::-webkit-file-upload-button {
2279
.form-control::-webkit-file-upload-button {
2250
  padding: 0.375rem 0.75rem;
2280
  padding: 0.375rem 0.75rem;
Line 2292... Line 2322...
2292
  min-height: calc(1.5em + 0.5rem + 2px);
2322
  min-height: calc(1.5em + 0.5rem + 2px);
2293
  padding: 0.25rem 0.5rem;
2323
  padding: 0.25rem 0.5rem;
2294
  font-size: 0.875rem;
2324
  font-size: 0.875rem;
2295
  border-radius: 0.2rem;
2325
  border-radius: 0.2rem;
2296
}
2326
}
-
 
2327
.form-control-sm::-webkit-file-upload-button {
-
 
2328
  padding: 0.25rem 0.5rem;
-
 
2329
  margin: -0.25rem -0.5rem;
-
 
2330
  -webkit-margin-end: 0.5rem;
-
 
2331
  margin-inline-end: 0.5rem;
-
 
2332
}
2297
.form-control-sm::file-selector-button {
2333
.form-control-sm::file-selector-button {
2298
  padding: 0.25rem 0.5rem;
2334
  padding: 0.25rem 0.5rem;
2299
  margin: -0.25rem -0.5rem;
2335
  margin: -0.25rem -0.5rem;
2300
  -webkit-margin-end: 0.5rem;
2336
  -webkit-margin-end: 0.5rem;
2301
  margin-inline-end: 0.5rem;
2337
  margin-inline-end: 0.5rem;
Line 2311... Line 2347...
2311
  min-height: calc(1.5em + 1rem + 2px);
2347
  min-height: calc(1.5em + 1rem + 2px);
2312
  padding: 0.5rem 1rem;
2348
  padding: 0.5rem 1rem;
2313
  font-size: 1.25rem;
2349
  font-size: 1.25rem;
2314
  border-radius: 0.3rem;
2350
  border-radius: 0.3rem;
2315
}
2351
}
-
 
2352
.form-control-lg::-webkit-file-upload-button {
-
 
2353
  padding: 0.5rem 1rem;
-
 
2354
  margin: -0.5rem -1rem;
-
 
2355
  -webkit-margin-end: 1rem;
-
 
2356
  margin-inline-end: 1rem;
-
 
2357
}
2316
.form-control-lg::file-selector-button {
2358
.form-control-lg::file-selector-button {
2317
  padding: 0.5rem 1rem;
2359
  padding: 0.5rem 1rem;
2318
  margin: -0.5rem -1rem;
2360
  margin: -0.5rem -1rem;
2319
  -webkit-margin-end: 1rem;
2361
  -webkit-margin-end: 1rem;
2320
  margin-inline-end: 1rem;
2362
  margin-inline-end: 1rem;
Line 2399... Line 2441...
2399
.form-select-sm {
2441
.form-select-sm {
2400
  padding-top: 0.25rem;
2442
  padding-top: 0.25rem;
2401
  padding-bottom: 0.25rem;
2443
  padding-bottom: 0.25rem;
2402
  padding-left: 0.5rem;
2444
  padding-left: 0.5rem;
2403
  font-size: 0.875rem;
2445
  font-size: 0.875rem;
-
 
2446
  border-radius: 0.2rem;
2404
}
2447
}
2405
 
2448
 
2406
.form-select-lg {
2449
.form-select-lg {
2407
  padding-top: 0.5rem;
2450
  padding-top: 0.5rem;
2408
  padding-bottom: 0.5rem;
2451
  padding-bottom: 0.5rem;
2409
  padding-left: 1rem;
2452
  padding-left: 1rem;
2410
  font-size: 1.25rem;
2453
  font-size: 1.25rem;
-
 
2454
  border-radius: 0.3rem;
2411
}
2455
}
2412
 
2456
 
2413
.form-check {
2457
.form-check {
2414
  display: block;
2458
  display: block;
2415
  min-height: 1.5rem;
2459
  min-height: 1.5rem;
Line 6442... Line 6486...
6442
.ratio-1x1 {
6486
.ratio-1x1 {
6443
  --bs-aspect-ratio: 100%;
6487
  --bs-aspect-ratio: 100%;
6444
}
6488
}
6445
 
6489
 
6446
.ratio-4x3 {
6490
.ratio-4x3 {
6447
  --bs-aspect-ratio: calc(3 / 4 * 100%);
6491
  --bs-aspect-ratio: 75%;
6448
}
6492
}
6449
 
6493
 
6450
.ratio-16x9 {
6494
.ratio-16x9 {
6451
  --bs-aspect-ratio: calc(9 / 16 * 100%);
6495
  --bs-aspect-ratio: 56.25%;
6452
}
6496
}
6453
 
6497
 
6454
.ratio-21x9 {
6498
.ratio-21x9 {
6455
  --bs-aspect-ratio: calc(9 / 21 * 100%);
6499
  --bs-aspect-ratio: 42.8571428571%;
6456
}
6500
}
6457
 
6501
 
6458
.fixed-top {
6502
.fixed-top {
6459
  position: fixed;
6503
  position: fixed;
6460
  top: 0;
6504
  top: 0;