N°4628 - Upgrade bulma lib to v0.9.4 to avoid hack from N°4481

This commit is contained in:
Molkobain
2022-05-11 11:40:25 +02:00
parent 891dd31290
commit bb2c9dedeb
70 changed files with 742 additions and 385 deletions

View File

@@ -1,3 +1,5 @@
@import "../utilities/mixins";
$table-color: $text-strong !default;
$table-background-color: $scheme-main !default;
@@ -5,6 +7,7 @@ $table-cell-border: 1px solid $border !default;
$table-cell-border-width: 0 0 1px !default;
$table-cell-padding: 0.5em 0.75em !default;
$table-cell-heading-color: $text-strong !default;
$table-cell-text-align: left !default;
$table-head-cell-border-width: 0 0 2px !default;
$table-head-cell-color: $text-strong !default;
@@ -23,6 +26,8 @@ $table-row-active-color: $primary-invert !default;
$table-striped-row-even-background-color: $scheme-main-bis !default;
$table-striped-row-even-hover-background-color: $scheme-main-ter !default;
$table-colors: $colors !default;
.table {
@extend %block;
@@ -37,7 +42,7 @@ $table-striped-row-even-hover-background-color: $scheme-main-ter !default;
vertical-align: top;
// Colors
@each $name, $pair in $colors {
@each $name, $pair in $table-colors {
$color: nth($pair, 1);
$color-invert: nth($pair, 2);
@@ -73,7 +78,7 @@ $table-striped-row-even-hover-background-color: $scheme-main-ter !default;
color: $table-cell-heading-color;
&:not([align]) {
text-align: inherit;
text-align: $table-cell-text-align;
}
}