Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scss/helpers/_color-bg.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
$text-bg-color: var(--#{$prefix}color-content-on-brand-secondary);
} @else if index(("brand-tertiary"), #{$color}) {
$text-bg-color: var(--#{$prefix}color-content-on-brand-tertiary);
} @else if index(("emphasized"), #{$color}) {
$text-bg-color: var(--#{$prefix}color-always-white);
} @else if index(("always-black"), #{$color}) {
$text-bg-color: var(--#{$prefix}color-always-on-black);
} @else if index(("always-white"), #{$color}) {
$text-bg-color: var(--#{$prefix}color-always-on-white);
} @else if str-index($color, "inverse-") == 1 {
} @else if index(("inverse-low"), #{$color}) {
$text-bg-color: #{$ouds-color-content-default-dark};
} @else if index(("inverse-high"), #{$color}) {
$text-bg-color: var(--#{$prefix}color-content-inverse);
} @else if str-index($color, "status-") == 1 {
$text-bg-color: var(--#{$prefix}color-content-on-#{$color});
Expand Down
4 changes: 2 additions & 2 deletions site/src/components/shortcodes/BootstrapCompatibility.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { getConfig } from '@libs/config'
<details class="mt-medium mb-2xlarge" data-sb-css-bootstrap="true">
<summary class="py-small">
Bootstrap
<span class="tag tag-small text-bg-status-neutral-muted float-end">
<code>$enable-bootstrap-compatibility: true</code>
<span class="tag tag-small float-end">
<code class="text-bg-inverse-high">$enable-bootstrap-compatibility: true</code>
</span>
</summary>

Expand Down
Loading