| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- .btn {
- // Focus style for all buttons
- --bs-btn-focus-box-shadow: 0 0 0 2px var(--border-active-dark);
- &:focus-visible {
- background-color: var(--bs-btn-bg);
- }
- // Sizes
- // Default size
- @include ol-button-size(
- $font-size: var(--font-size-03),
- $line-height: var(--line-height-03),
- $padding-y: var(--spacing-03)
- );
- &.btn-lg {
- @include ol-button-size(
- $font-size: var(--font-size-03),
- $line-height: var(--line-height-03),
- $padding-y: var(--spacing-05)
- );
- }
- &.btn-sm {
- @include ol-button-size(
- $font-size: var(--font-size-02),
- $line-height: var(--line-height-02),
- $padding-y: var(--spacing-01),
- $padding-x: var(--spacing-05)
- );
- }
- // Variants
- &.btn-primary {
- @include ol-button-variant(
- $color: var(--content-primary-dark),
- $background: var(--bg-accent-01),
- $hover-background: var(--bg-accent-02),
- $hover-border: var(--bg-accent-02)
- );
- }
- &.btn-secondary {
- @include ol-button-variant(
- $color: var(--content-primary),
- $background: var(--bg-light-primary),
- $border: var(--border-primary),
- $hover-background: var(--bg-light-tertiary),
- $hover-border: var(--border-primary),
- $borderless: false
- );
- }
- &.btn-ghost {
- @include ol-button-variant(
- $color: var(--content-primary),
- $background: var(--bg-light-primary),
- $hover-background: var(--bg-light-tertiary)
- );
- }
- &.btn-danger {
- @include ol-button-variant(
- $color: var(--content-primary-dark),
- $background: var(--bg-danger-01),
- $border: var(--bg-danger-01),
- $hover-background: var(--bg-danger-02)
- );
- }
- &.btn-danger-ghost {
- @include ol-button-variant(
- $color: var(--content-danger),
- $background: var(--bg-light-primary),
- $hover-background: var(--bg-danger-03)
- );
- }
- &.btn-info-ghost {
- @include ol-button-variant(
- $color: var(--blue-50),
- $background: transparent,
- $hover-background: var(--neutral-10)
- );
- }
- &.btn-premium {
- @include ol-button-variant(
- $color: var(--content-primary-dark),
- $background: var(--blue-70)
- );
- background: var(--premium-gradient);
- transition: none;
- &:hover {
- background: var(--blue-70);
- }
- }
- &.btn-premium-secondary {
- @include ol-button-variant(
- $color: var(--blue-60),
- $background: var(--bg-light-primary),
- $border: var(--blue-60),
- $hover-background: var(--bg-info-03),
- $hover-border: var(--blue-60),
- $borderless: false
- );
- }
- &.btn-blue {
- @include ol-button-variant(
- $color: var(--content-primary-dark),
- $background: var(--sapphire-blue),
- $border: var(--sapphire-blue),
- $hover-background: (
- var(--sapphire-blue-dark),
- ),
- $hover-border: (
- var(--sapphire-blue-dark),
- ),
- $borderless: false
- );
- }
- &.btn-social {
- @extend .btn-secondary;
- padding-left: var(--spacing-03);
- .btn-social-icon {
- height: 24px;
- width: 24px;
- padding: var(--spacing-01);
- margin-right: var(--spacing-02);
- }
- }
- }
- // Link buttons
- // -------------------------
- // Make a button look and behave like a link
- .btn-link {
- color: var(--link-color);
- font-weight: normal;
- cursor: pointer;
- text-decoration: underline;
- font-size: inherit;
- vertical-align: inherit;
- border-radius: 0;
- &,
- &:active,
- &[disabled],
- fieldset[disabled] & {
- background-color: transparent;
- @include box-shadow(none);
- }
- &:hover,
- &:focus {
- color: var(--link-hover-color);
- text-decoration: none;
- background-color: transparent;
- }
- &.btn-danger {
- color: var(--content-danger);
- // since it's a link, override the button states
- &:active {
- color: var(--content-danger);
- background-color: transparent;
- }
- &:focus-visible {
- background-color: transparent;
- outline: -webkit-focus-ring-color auto 1px;
- }
- }
- }
- .btn-inline-link {
- @extend .btn-link;
- font-size: inherit;
- padding: 0;
- vertical-align: inherit;
- }
- .button-loading {
- align-items: center;
- display: inline-grid;
- grid-template-areas: 'container'; // Define a single grid area
- pointer-events: none;
- }
- .button-loading > * {
- grid-area: container; // Position all the direct children within the single grid area
- }
- .button-loading .spinner-container {
- display: flex;
- justify-content: center;
- align-items: center;
- .loading-spinner-small {
- border-width: 0.2em;
- height: 1.25rem;
- width: 1.25rem;
- }
- .loading-spinner-large {
- border-width: 0.2em;
- height: 1.5rem;
- width: 1.5rem;
- }
- }
- // Hide the text when the spinner is visible
- .button-loading > [aria-hidden='true'] {
- visibility: hidden;
- }
- .button-content {
- display: inline-flex;
- align-items: center;
- gap: var(--spacing-04); // Add gap between text and icons
- justify-content: center;
- .icon-small {
- font-size: 1.25rem;
- }
- .icon-large {
- font-size: 1.5rem;
- }
- .spinner {
- margin: var(--spacing-01);
- }
- }
- .icon-button-small {
- padding: var(--spacing-01);
- }
- .icon-button {
- padding: var(--spacing-04);
- }
- .icon-button-large {
- padding: var(--spacing-05);
- }
- // Set the visited colour for a link that is styled as a button. This is necessary because we have a generic rule that
- // sets the colour of visited links
- a[role='button']:visited,
- a.btn:visited {
- color: var(--bs-btn-color);
- }
- // Copy icon button
- .copy-button {
- text-decoration: none;
- }
- .btn-reset {
- @include reset-button;
- }
- .btn-transparent {
- background: none !important;
- border-radius: 0 !important;
- color: inherit !important;
- font-weight: 400;
- &:hover {
- background: none !important;
- color: inherit !important;
- }
- }
|