|
142 | 142 | box-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0 0 1px $link
|
143 | 143 | &:active
|
144 | 144 | box-shadow: inset 0 1px 2px rgba($scheme-invert, 0.2), 0 0 0 1px $link
|
| 145 | + .delete |
| 146 | + background-color: rgba($scheme-invert, 0.2) |
| 147 | + &::before, |
| 148 | + &::after |
| 149 | + background-color: $scheme-main |
| 150 | + &:hover, |
| 151 | + &:focus |
| 152 | + background-color: rgba($scheme-invert, 0.3) |
| 153 | + &:active |
| 154 | + background-color: rgba($scheme-invert, 0.4) |
| 155 | + .notification |
| 156 | + background-color: $background |
| 157 | + .progress |
| 158 | + &::-webkit-progress-bar |
| 159 | + background-color: $border-light |
| 160 | + &::-webkit-progress-value |
| 161 | + background-color: $text |
| 162 | + &::-moz-progress-bar |
| 163 | + background-color: $text |
| 164 | + &::-ms-fill |
| 165 | + background-color: $text |
| 166 | + @each $name, $pair in $colors |
| 167 | + $color: nth($pair, 1) |
| 168 | + &.is-#{$name} |
| 169 | + &:indeterminate |
| 170 | + background-image: linear-gradient(to right, $color 30%, $border-light 30%) |
| 171 | + &:indeterminate |
| 172 | + background-color: $border-light |
| 173 | + background-image: linear-gradient(to right, $text 30%, $border-light 30%) |
145 | 174 |
|
146 | 175 | html
|
147 | 176 | background-color: var(--#{$prefix}scheme-main)
|
@@ -388,6 +417,90 @@ label.panel-block
|
388 | 417 | background-color: var(--#{$prefix}scheme-main)
|
389 | 418 | color: var(--#{$prefix}text)
|
390 | 419 |
|
| 420 | +.content |
| 421 | + h1, |
| 422 | + h2, |
| 423 | + h3, |
| 424 | + h4, |
| 425 | + h5, |
| 426 | + h6 |
| 427 | + color: var(--#{$prefix}text-strong) |
| 428 | + blockquote |
| 429 | + background-color: var(--#{$prefix}background) |
| 430 | + border-left-color: var(--#{$prefix}border) |
| 431 | + table |
| 432 | + td, |
| 433 | + th |
| 434 | + border-color: var(--#{$prefix}border) |
| 435 | + th |
| 436 | + color: var(--#{$prefix}text-strong) |
| 437 | + thead |
| 438 | + td, |
| 439 | + th |
| 440 | + color: var(--#{$prefix}text-strong) |
| 441 | + tfoot |
| 442 | + td, |
| 443 | + th |
| 444 | + color: var(--#{$prefix}text-strong) |
| 445 | + |
| 446 | +.table |
| 447 | + background-color: var(--#{$prefix}scheme-main) |
| 448 | + color: var(--#{$prefix}text-strong) |
| 449 | + td, |
| 450 | + th |
| 451 | + border-color: var(--#{$prefix}border) |
| 452 | + &.is-selected |
| 453 | + background-color: var(--#{$prefix}primary) |
| 454 | + color: var(--#{$prefix}primary-invert) |
| 455 | + th |
| 456 | + color: var(--#{$prefix}text-strong) |
| 457 | + tr |
| 458 | + &.is-selected |
| 459 | + background-color: var(--#{$prefix}primary) |
| 460 | + color: var(--#{$prefix}primary-invert) |
| 461 | + td, |
| 462 | + th |
| 463 | + border-color: var(--#{$prefix}primary-invert) |
| 464 | + thead |
| 465 | + td, |
| 466 | + th |
| 467 | + color: var(--#{$prefix}text-strong) |
| 468 | + tfoot |
| 469 | + td, |
| 470 | + th |
| 471 | + color: var(--#{$prefix}text-strong) |
| 472 | + &.is-hoverable |
| 473 | + tbody |
| 474 | + tr:not(.is-selected) |
| 475 | + &:hover |
| 476 | + background-color: var(--#{$prefix}scheme-main-bis) |
| 477 | + &.is-striped |
| 478 | + tbody |
| 479 | + tr:not(.is-selected) |
| 480 | + &:hover |
| 481 | + background-color: var(--#{$prefix}scheme-main-bis) |
| 482 | + &:nth-child(even) |
| 483 | + background-color: var(--#{$prefix}scheme-main-ter) |
| 484 | + &.is-striped |
| 485 | + tbody |
| 486 | + tr:not(.is-selected) |
| 487 | + &:nth-child(even) |
| 488 | + background-color: var(--#{$prefix}scheme-main-bis) |
| 489 | + |
| 490 | +.tag:not(body) |
| 491 | + background-color: var(--tag-background-color) !important |
| 492 | + color: var(--tag-color) !important |
| 493 | + --tag-background-color: var(--#{$prefix}background) |
| 494 | + --tag-color: var(--#{$prefix}text) |
| 495 | + @each $name, $color in $cssvar-colors |
| 496 | + $base: "#{$prefix}#{$name}" |
| 497 | + &.is-#{$name} |
| 498 | + --tag-background-color: var(--#{$base}) |
| 499 | + --tag-color: var(--#{$base}-invert) |
| 500 | + &.is-light |
| 501 | + --tag-background-color: hsl(var(--#{$base}-h), calc(var(--#{$base}-s)), 7%) |
| 502 | + --tag-color: var(--#{$base}) |
| 503 | + |
391 | 504 | .title
|
392 | 505 | color: var(--#{$prefix}text-strong)
|
393 | 506 |
|
|
0 commit comments