2024-03-27 06:56:17 -04:00
|
|
|
// Button
|
|
|
|
|
2024-02-26 10:11:19 -05:00
|
|
|
@mixin ol-button-size(
|
|
|
|
$font-size,
|
|
|
|
$line-height,
|
|
|
|
$padding-y,
|
|
|
|
$padding-x: var(--spacing-06)
|
|
|
|
) {
|
2024-02-14 10:04:08 -05:00
|
|
|
--bs-btn-font-size: #{$font-size};
|
|
|
|
--bs-btn-line-height: #{$line-height};
|
|
|
|
--bs-btn-padding-y: #{$padding-y};
|
|
|
|
--bs-btn-padding-x: #{$padding-x};
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin ol-button-variant(
|
|
|
|
$color,
|
|
|
|
$background,
|
|
|
|
$border: $background,
|
|
|
|
$hover-background: $background,
|
|
|
|
$hover-border: $hover-background,
|
|
|
|
$borderless: true
|
|
|
|
) {
|
|
|
|
--bs-btn-color: #{$color};
|
|
|
|
--bs-btn-bg: #{$background};
|
|
|
|
--bs-btn-border-color: #{$border};
|
|
|
|
--bs-btn-hover-color: #{$color};
|
|
|
|
--bs-btn-hover-bg: #{$hover-background};
|
|
|
|
--bs-btn-hover-border-color: #{$hover-border};
|
|
|
|
--bs-btn-active-color: #{$color};
|
|
|
|
--bs-btn-active-bg: #{$hover-background};
|
|
|
|
--bs-btn-active-border-color: #{$hover-border};
|
|
|
|
--bs-btn-disabled-color: var(--content-disabled);
|
|
|
|
--bs-btn-disabled-bg: var(--bg-light-disabled);
|
|
|
|
--bs-btn-disabled-border-color: var(--bg-light-disabled);
|
|
|
|
|
|
|
|
@if $borderless {
|
|
|
|
--bs-btn-border-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the default state colors when in a loading state
|
|
|
|
&[data-ol-loading='true'] {
|
|
|
|
color: var(--bs-btn-color);
|
|
|
|
background-color: var(--bs-btn-bg);
|
|
|
|
border-color: var(--bs-btn-border-color);
|
|
|
|
}
|
|
|
|
}
|
2024-04-19 08:30:23 -04:00
|
|
|
|
|
|
|
@mixin reset-button() {
|
|
|
|
padding: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2024-04-30 04:12:42 -04:00
|
|
|
appearance: none;
|
2024-04-19 08:30:23 -04:00
|
|
|
}
|
2024-05-14 11:53:25 -04:00
|
|
|
|
|
|
|
@mixin modal-lg {
|
|
|
|
max-width: 960px;
|
|
|
|
}
|
2024-07-22 04:10:54 -04:00
|
|
|
|
2024-05-14 11:53:25 -04:00
|
|
|
@mixin modal-md {
|
|
|
|
max-width: 640px;
|
|
|
|
}
|
2024-07-22 04:10:54 -04:00
|
|
|
|
2024-05-14 11:53:25 -04:00
|
|
|
@mixin modal-sm {
|
|
|
|
max-width: 480px;
|
|
|
|
}
|
2024-09-03 07:30:25 -04:00
|
|
|
|
|
|
|
// Toolbar
|
|
|
|
@mixin toolbar-sm-height {
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin toolbar-alt-bg() {
|
|
|
|
background-color: var(--bg-dark-secondary);
|
|
|
|
}
|
|
|
|
|
2024-09-06 08:36:15 -04:00
|
|
|
@mixin theme($name) {
|
|
|
|
@if index($themes, $name) {
|
|
|
|
[data-theme='#{$name}'] {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
} @else {
|
|
|
|
@error 'Theme "#{$name}" is not supported. Supported themes are: #{$themes}.';
|
|
|
|
}
|
|
|
|
}
|
2024-09-16 11:27:09 -04:00
|
|
|
|
2024-09-24 05:57:45 -04:00
|
|
|
@mixin box-shadow-button-input {
|
2024-09-16 11:27:09 -04:00
|
|
|
box-shadow: 0 0 0 2px var(--blue-30);
|
|
|
|
}
|