Skip to content

Commit

Permalink
Merge branch 'v5' of https://github.com/coreui/coreui into v5
Browse files Browse the repository at this point in the history
  • Loading branch information
mrholek committed Mar 17, 2024
2 parents f695338 + 2dc586e commit ef61c27
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 2 additions & 4 deletions docs/assets/scss/_component-examples.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
//

.tab-content .tab-pane .docs-code-snippet {
border-top-left-radius: 0;
border-top-right-radius: 0;
@include border-top-radius(0);

.highlight {
border-top-left-radius: 0;
border-top-right-radius: 0;
@include border-top-radius(0);
}
}

Expand Down
2 changes: 1 addition & 1 deletion scss/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
box-shadow: var(--#{$prefix}btn-focus-box-shadow);
}
}

&:disabled,
&.disabled,
fieldset:disabled & {
Expand Down
2 changes: 1 addition & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2441,4 +2441,4 @@ $time-picker-inline-select-padding-x: $input-padding-x-sm !default;
$time-picker-inline-select-disabled-color: $input-disabled-color !default;
// scss-docs-end time-picker-variables

@import "variables-dark"; // TODO: can be removed safely in v6, only here to avoid breaking changes in v5
@import "variables-dark"; // TODO: can be removed safely in v6, only here to avoid breaking changes in v5
6 changes: 3 additions & 3 deletions scss/sidebar/_sidebar-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@
}

&.nav-dropdown-toggle::after {
mask-image: var(--#{$prefix}sidebar-nav-group-indicator-hover-icon);
background-color: var(--#{$prefix}sidebar-nav-group-indicator-hover-color);
mask-image: var(--#{$prefix}sidebar-nav-group-indicator-hover-icon);
}
}
}
Expand All @@ -161,8 +161,8 @@
}

&.nav-group-toggle::after {
mask-image: var(--#{$prefix}sidebar-nav-group-indicator-hover-icon);
background-color: var(--#{$prefix}sidebar-nav-group-indicator-hover-color);
mask-image: var(--#{$prefix}sidebar-nav-group-indicator-hover-icon);
}
}
}
Expand Down Expand Up @@ -239,8 +239,8 @@
height: 12px;
@include ltr-rtl("margin-left", auto);
content: "";
mask-image: var(--#{$prefix}sidebar-nav-group-indicator-icon);
background-color: var(--#{$prefix}sidebar-nav-group-indicator-color);
mask-image: var(--#{$prefix}sidebar-nav-group-indicator-icon);
@include transition($sidebar-nav-group-indicator-transition);
}
}
Expand Down
2 changes: 1 addition & 1 deletion scss/tests/mixins/_auto-import-of-variables-dark.test.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
@import "../../variables";
// Voluntarily not importing _variables-dark.scss
@import "../../maps";
@import "../../mixins";
@import "../../mixins";
2 changes: 1 addition & 1 deletion scss/themes/bootstrap/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
$variable-prefix: cui- !default; // Deprecated in v4.2.6 for the shorter `$prefix`
$prefix: $variable-prefix !default;
$prefix: $variable-prefix !default;
3 changes: 2 additions & 1 deletion scss/themes/bootstrap/bootstrap.rtl.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ $enable-rtl: true !default;
@import "../../sidebar";
@import "../../time-picker";
@import "../../forms/form-multi-select";
/* rtl:end:ignore */

/* rtl:end:ignore */
1 change: 1 addition & 0 deletions scss/themes/bootstrap/bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@
@import "../../sidebar";
@import "../../time-picker";
@import "../../forms/form-multi-select";

/* rtl:end:ignore */

0 comments on commit ef61c27

Please sign in to comment.