mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-24 18:56:32 -05:00
ca25760d48
The vendored version contains ONLY the color rules. This makes it easy to create custom themes on top of the original bootstrap. Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
36 lines
1.1 KiB
SCSS
36 lines
1.1 KiB
SCSS
/*!
|
|
* SPDX-FileCopyrightText: Original code: Copyright (c) 2011-2022 Twitter, Inc. + Copyright (c) 2011-2022 The Bootstrap Authors. Modification: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
//
|
|
// Basic Bootstrap table
|
|
//
|
|
|
|
.table {
|
|
--#{$prefix}table-color: #{$table-color};
|
|
--#{$prefix}table-bg: #{$table-bg};
|
|
--#{$prefix}table-border-color: #{$table-border-color};
|
|
--#{$prefix}table-accent-bg: #{$table-accent-bg};
|
|
--#{$prefix}table-striped-color: #{$table-striped-color};
|
|
--#{$prefix}table-striped-bg: #{$table-striped-bg};
|
|
--#{$prefix}table-active-color: #{$table-active-color};
|
|
--#{$prefix}table-active-bg: #{$table-active-bg};
|
|
--#{$prefix}table-hover-color: #{$table-hover-color};
|
|
--#{$prefix}table-hover-bg: #{$table-hover-bg};
|
|
}
|
|
|
|
.table-group-divider {
|
|
border-top-color: $table-group-separator-color;
|
|
}
|
|
|
|
|
|
// Table variants
|
|
//
|
|
// Table variants set the table cell backgrounds, border colors
|
|
// and the colors of the striped, hovered & active tables
|
|
|
|
@each $color, $value in $table-variants {
|
|
@include table-variant($color, $value);
|
|
}
|