2020-10-31 23:52:27 +00:00
|
|
|
@import "../utilities/controls"
|
|
|
|
@import "../utilities/mixins"
|
|
|
|
|
2019-10-13 14:12:30 +00:00
|
|
|
$button-color: $text-strong !default
|
|
|
|
$button-background-color: $scheme-main !default
|
2019-05-17 13:02:12 +00:00
|
|
|
$button-family: false !default
|
2018-04-08 18:46:32 +00:00
|
|
|
|
2019-10-13 14:12:30 +00:00
|
|
|
$button-border-color: $border !default
|
2018-04-08 18:46:32 +00:00
|
|
|
$button-border-width: $control-border-width !default
|
|
|
|
|
2019-10-12 20:44:57 +00:00
|
|
|
$button-padding-vertical: calc(0.5em - #{$button-border-width}) !default
|
|
|
|
$button-padding-horizontal: 1em !default
|
2016-10-30 10:41:53 +00:00
|
|
|
|
2017-07-28 20:05:15 +00:00
|
|
|
$button-hover-color: $link-hover !default
|
|
|
|
$button-hover-border-color: $link-hover-border !default
|
2016-10-29 20:51:13 +00:00
|
|
|
|
2017-07-28 20:05:15 +00:00
|
|
|
$button-focus-color: $link-focus !default
|
|
|
|
$button-focus-border-color: $link-focus-border !default
|
2017-08-30 16:29:01 +00:00
|
|
|
$button-focus-box-shadow-size: 0 0 0 0.125em !default
|
2020-01-05 13:27:54 +00:00
|
|
|
$button-focus-box-shadow-color: bulmaRgba($link, 0.25) !default
|
2016-10-29 20:51:13 +00:00
|
|
|
|
2017-07-28 20:05:15 +00:00
|
|
|
$button-active-color: $link-active !default
|
|
|
|
$button-active-border-color: $link-active-border !default
|
2016-10-29 20:51:13 +00:00
|
|
|
|
2017-10-07 19:52:39 +00:00
|
|
|
$button-text-color: $text !default
|
2019-12-30 12:27:46 +00:00
|
|
|
$button-text-decoration: underline !default
|
2017-10-07 19:52:39 +00:00
|
|
|
$button-text-hover-background-color: $background !default
|
|
|
|
$button-text-hover-color: $text-strong !default
|
2017-07-28 20:05:15 +00:00
|
|
|
|
2020-10-31 19:28:40 +00:00
|
|
|
$button-ghost-background: none !default
|
|
|
|
$button-ghost-border-color: transparent !default
|
|
|
|
$button-ghost-color: $link !default
|
|
|
|
$button-ghost-decoration: none !default
|
|
|
|
$button-ghost-hover-color: $link !default
|
|
|
|
$button-ghost-hover-decoration: underline !default
|
|
|
|
|
2019-10-13 14:12:30 +00:00
|
|
|
$button-disabled-background-color: $scheme-main !default
|
|
|
|
$button-disabled-border-color: $border !default
|
2017-07-28 20:05:15 +00:00
|
|
|
$button-disabled-shadow: none !default
|
|
|
|
$button-disabled-opacity: 0.5 !default
|
|
|
|
|
2019-10-13 14:12:30 +00:00
|
|
|
$button-static-color: $text-light !default
|
|
|
|
$button-static-background-color: $scheme-main-ter !default
|
|
|
|
$button-static-border-color: $border !default
|
2017-05-28 15:07:29 +00:00
|
|
|
|
2020-08-21 15:40:07 +00:00
|
|
|
$button-colors: $colors !default
|
|
|
|
|
2016-10-30 10:41:53 +00:00
|
|
|
// The button sizes use mixins so they can be used at different breakpoints
|
2016-01-24 00:03:43 +00:00
|
|
|
=button-small
|
2020-12-06 02:52:41 +00:00
|
|
|
&:not(.is-rounded)
|
|
|
|
border-radius: $radius-small
|
2016-10-29 17:53:30 +00:00
|
|
|
font-size: $size-small
|
2018-10-31 19:22:21 +00:00
|
|
|
=button-normal
|
|
|
|
font-size: $size-normal
|
2016-01-24 00:03:43 +00:00
|
|
|
=button-medium
|
2016-10-29 17:53:30 +00:00
|
|
|
font-size: $size-medium
|
2016-01-24 00:03:43 +00:00
|
|
|
=button-large
|
2016-10-29 17:53:30 +00:00
|
|
|
font-size: $size-large
|
2016-01-24 00:03:43 +00:00
|
|
|
|
|
|
|
.button
|
2018-10-02 06:04:19 +00:00
|
|
|
@extend %control
|
2018-09-04 13:24:50 +00:00
|
|
|
@extend %unselectable
|
2017-07-28 20:05:15 +00:00
|
|
|
background-color: $button-background-color
|
|
|
|
border-color: $button-border-color
|
2018-04-08 18:46:32 +00:00
|
|
|
border-width: $button-border-width
|
2017-07-28 20:05:15 +00:00
|
|
|
color: $button-color
|
2016-09-22 22:14:18 +00:00
|
|
|
cursor: pointer
|
2019-05-17 13:02:12 +00:00
|
|
|
@if $button-family
|
|
|
|
font-family: $button-family
|
2016-03-26 17:28:43 +00:00
|
|
|
justify-content: center
|
2018-04-08 18:46:32 +00:00
|
|
|
padding-bottom: $button-padding-vertical
|
|
|
|
padding-left: $button-padding-horizontal
|
|
|
|
padding-right: $button-padding-horizontal
|
|
|
|
padding-top: $button-padding-vertical
|
2016-01-30 11:53:41 +00:00
|
|
|
text-align: center
|
2016-01-26 00:02:38 +00:00
|
|
|
white-space: nowrap
|
2016-01-24 00:03:43 +00:00
|
|
|
strong
|
|
|
|
color: inherit
|
2017-03-12 14:13:08 +00:00
|
|
|
.icon
|
|
|
|
&,
|
|
|
|
&.is-small,
|
|
|
|
&.is-medium,
|
|
|
|
&.is-large
|
|
|
|
height: 1.5em
|
|
|
|
width: 1.5em
|
|
|
|
&:first-child:not(:last-child)
|
2021-06-18 17:27:34 +00:00
|
|
|
+ltr-property("margin", calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width}), false)
|
|
|
|
+ltr-property("margin", $button-padding-horizontal * 0.25)
|
2017-03-12 14:13:08 +00:00
|
|
|
&:last-child:not(:first-child)
|
2021-06-18 17:27:34 +00:00
|
|
|
+ltr-property("margin", $button-padding-horizontal * 0.25, false)
|
|
|
|
+ltr-property("margin", calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width}))
|
2017-03-12 14:13:08 +00:00
|
|
|
&:first-child:last-child
|
2021-06-18 17:27:34 +00:00
|
|
|
margin-left: calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width})
|
|
|
|
margin-right: calc(#{-0.5 * $button-padding-horizontal} - #{$button-border-width})
|
2016-10-29 20:51:13 +00:00
|
|
|
// States
|
2016-05-30 18:41:54 +00:00
|
|
|
&:hover,
|
2016-10-29 20:51:13 +00:00
|
|
|
&.is-hovered
|
2017-07-28 20:05:15 +00:00
|
|
|
border-color: $button-hover-border-color
|
|
|
|
color: $button-hover-color
|
2016-05-30 18:41:54 +00:00
|
|
|
&:focus,
|
2016-10-29 20:51:13 +00:00
|
|
|
&.is-focused
|
2017-07-28 20:05:15 +00:00
|
|
|
border-color: $button-focus-border-color
|
|
|
|
color: $button-focus-color
|
2017-08-30 16:29:01 +00:00
|
|
|
&:not(:active)
|
|
|
|
box-shadow: $button-focus-box-shadow-size $button-focus-box-shadow-color
|
2016-10-29 20:51:13 +00:00
|
|
|
&:active,
|
2016-05-30 18:41:54 +00:00
|
|
|
&.is-active
|
2017-07-28 20:05:15 +00:00
|
|
|
border-color: $button-active-border-color
|
|
|
|
color: $button-active-color
|
2016-04-10 15:00:32 +00:00
|
|
|
// Colors
|
2017-10-07 19:52:39 +00:00
|
|
|
&.is-text
|
2016-10-29 20:51:13 +00:00
|
|
|
background-color: transparent
|
2016-10-30 10:41:53 +00:00
|
|
|
border-color: transparent
|
2017-10-07 19:52:39 +00:00
|
|
|
color: $button-text-color
|
2019-12-30 12:27:46 +00:00
|
|
|
text-decoration: $button-text-decoration
|
2016-10-29 20:51:13 +00:00
|
|
|
&:hover,
|
|
|
|
&.is-hovered,
|
|
|
|
&:focus,
|
2017-08-30 16:29:01 +00:00
|
|
|
&.is-focused
|
2017-10-07 19:52:39 +00:00
|
|
|
background-color: $button-text-hover-background-color
|
|
|
|
color: $button-text-hover-color
|
2016-10-29 20:51:13 +00:00
|
|
|
&:active,
|
|
|
|
&.is-active
|
2020-03-16 02:29:44 +00:00
|
|
|
background-color: bulmaDarken($button-text-hover-background-color, 5%)
|
2017-10-07 19:52:39 +00:00
|
|
|
color: $button-text-hover-color
|
2018-10-31 18:29:55 +00:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] &
|
2017-03-31 21:25:53 +00:00
|
|
|
background-color: transparent
|
|
|
|
border-color: transparent
|
|
|
|
box-shadow: none
|
2020-10-31 19:28:40 +00:00
|
|
|
&.is-ghost
|
|
|
|
background: $button-ghost-background
|
|
|
|
border-color: $button-ghost-border-color
|
|
|
|
color: $button-ghost-color
|
|
|
|
text-decoration: $button-ghost-decoration
|
|
|
|
&:hover,
|
|
|
|
&.is-hovered
|
|
|
|
color: $button-ghost-hover-color
|
|
|
|
text-decoration: $button-ghost-hover-decoration
|
2020-08-21 15:40:07 +00:00
|
|
|
@each $name, $pair in $button-colors
|
2016-01-24 00:03:43 +00:00
|
|
|
$color: nth($pair, 1)
|
|
|
|
$color-invert: nth($pair, 2)
|
|
|
|
&.is-#{$name}
|
2016-06-29 22:59:48 +00:00
|
|
|
background-color: $color
|
2016-10-30 10:41:53 +00:00
|
|
|
border-color: transparent
|
2016-01-24 00:03:43 +00:00
|
|
|
color: $color-invert
|
|
|
|
&:hover,
|
2016-10-29 20:51:13 +00:00
|
|
|
&.is-hovered
|
2020-03-16 02:29:44 +00:00
|
|
|
background-color: bulmaDarken($color, 2.5%)
|
2016-10-29 20:51:13 +00:00
|
|
|
border-color: transparent
|
|
|
|
color: $color-invert
|
2016-05-30 18:41:54 +00:00
|
|
|
&:focus,
|
2016-10-29 20:51:13 +00:00
|
|
|
&.is-focused
|
|
|
|
border-color: transparent
|
|
|
|
color: $color-invert
|
2017-08-30 16:29:01 +00:00
|
|
|
&:not(:active)
|
2020-03-16 02:29:44 +00:00
|
|
|
box-shadow: $button-focus-box-shadow-size bulmaRgba($color, 0.25)
|
2016-10-29 20:51:13 +00:00
|
|
|
&:active,
|
2016-05-30 18:41:54 +00:00
|
|
|
&.is-active
|
2020-03-16 02:29:44 +00:00
|
|
|
background-color: bulmaDarken($color, 5%)
|
2016-01-24 00:03:43 +00:00
|
|
|
border-color: transparent
|
|
|
|
color: $color-invert
|
2018-10-31 18:29:55 +00:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] &
|
2017-03-31 21:25:53 +00:00
|
|
|
background-color: $color
|
|
|
|
border-color: transparent
|
|
|
|
box-shadow: none
|
2016-01-24 00:03:43 +00:00
|
|
|
&.is-inverted
|
2016-06-29 22:59:48 +00:00
|
|
|
background-color: $color-invert
|
2016-01-24 00:03:43 +00:00
|
|
|
color: $color
|
2019-05-18 21:06:52 +00:00
|
|
|
&:hover,
|
|
|
|
&.is-hovered
|
2020-03-16 02:29:44 +00:00
|
|
|
background-color: bulmaDarken($color-invert, 5%)
|
2018-10-31 18:29:55 +00:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] &
|
2017-03-31 21:25:53 +00:00
|
|
|
background-color: $color-invert
|
|
|
|
border-color: transparent
|
|
|
|
box-shadow: none
|
|
|
|
color: $color
|
2016-04-10 15:00:32 +00:00
|
|
|
&.is-loading
|
2018-04-08 18:08:39 +00:00
|
|
|
&::after
|
2016-04-10 15:00:32 +00:00
|
|
|
border-color: transparent transparent $color-invert $color-invert !important
|
|
|
|
&.is-outlined
|
2016-06-29 22:59:48 +00:00
|
|
|
background-color: transparent
|
2016-04-10 15:00:32 +00:00
|
|
|
border-color: $color
|
|
|
|
color: $color
|
|
|
|
&:hover,
|
2019-05-18 21:06:52 +00:00
|
|
|
&.is-hovered,
|
|
|
|
&:focus,
|
|
|
|
&.is-focused
|
2016-06-29 22:59:48 +00:00
|
|
|
background-color: $color
|
2016-05-05 23:23:00 +00:00
|
|
|
border-color: $color
|
|
|
|
color: $color-invert
|
2017-01-16 19:45:21 +00:00
|
|
|
&.is-loading
|
2018-04-08 18:08:39 +00:00
|
|
|
&::after
|
2017-01-16 19:45:21 +00:00
|
|
|
border-color: transparent transparent $color $color !important
|
2019-05-18 21:06:52 +00:00
|
|
|
&:hover,
|
|
|
|
&.is-hovered,
|
|
|
|
&:focus,
|
|
|
|
&.is-focused
|
|
|
|
&::after
|
|
|
|
border-color: transparent transparent $color-invert $color-invert !important
|
2018-10-31 18:29:55 +00:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] &
|
2017-03-31 21:25:53 +00:00
|
|
|
background-color: transparent
|
|
|
|
border-color: $color
|
|
|
|
box-shadow: none
|
|
|
|
color: $color
|
2016-10-30 20:24:23 +00:00
|
|
|
&.is-inverted.is-outlined
|
|
|
|
background-color: transparent
|
|
|
|
border-color: $color-invert
|
|
|
|
color: $color-invert
|
|
|
|
&:hover,
|
2019-05-18 21:06:52 +00:00
|
|
|
&.is-hovered,
|
|
|
|
&:focus,
|
|
|
|
&.is-focused
|
2016-10-30 20:24:23 +00:00
|
|
|
background-color: $color-invert
|
|
|
|
color: $color
|
2019-05-18 21:06:52 +00:00
|
|
|
&.is-loading
|
|
|
|
&:hover,
|
|
|
|
&.is-hovered,
|
|
|
|
&:focus,
|
|
|
|
&.is-focused
|
|
|
|
&::after
|
|
|
|
border-color: transparent transparent $color $color !important
|
2018-10-31 18:29:55 +00:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] &
|
2017-03-31 21:25:53 +00:00
|
|
|
background-color: transparent
|
|
|
|
border-color: $color-invert
|
|
|
|
box-shadow: none
|
|
|
|
color: $color-invert
|
2019-10-13 14:12:30 +00:00
|
|
|
// If light and dark colors are provided
|
2019-10-13 17:51:12 +00:00
|
|
|
@if length($pair) >= 4
|
2019-10-13 14:12:30 +00:00
|
|
|
$color-light: nth($pair, 3)
|
|
|
|
$color-dark: nth($pair, 4)
|
|
|
|
&.is-light
|
|
|
|
background-color: $color-light
|
|
|
|
color: $color-dark
|
|
|
|
&:hover,
|
|
|
|
&.is-hovered
|
2020-03-16 02:29:44 +00:00
|
|
|
background-color: bulmaDarken($color-light, 2.5%)
|
2019-10-13 14:12:30 +00:00
|
|
|
border-color: transparent
|
|
|
|
color: $color-dark
|
|
|
|
&:active,
|
|
|
|
&.is-active
|
2020-03-16 02:29:44 +00:00
|
|
|
background-color: bulmaDarken($color-light, 5%)
|
2019-10-13 14:12:30 +00:00
|
|
|
border-color: transparent
|
|
|
|
color: $color-dark
|
2016-04-10 15:00:32 +00:00
|
|
|
// Sizes
|
2016-01-24 00:03:43 +00:00
|
|
|
&.is-small
|
|
|
|
+button-small
|
2018-10-31 19:22:21 +00:00
|
|
|
&.is-normal
|
|
|
|
+button-normal
|
2016-01-24 00:03:43 +00:00
|
|
|
&.is-medium
|
|
|
|
+button-medium
|
|
|
|
&.is-large
|
|
|
|
+button-large
|
2016-04-10 15:00:32 +00:00
|
|
|
// Modifiers
|
2018-10-31 18:29:55 +00:00
|
|
|
&[disabled],
|
|
|
|
fieldset[disabled] &
|
2017-07-28 20:05:15 +00:00
|
|
|
background-color: $button-disabled-background-color
|
|
|
|
border-color: $button-disabled-border-color
|
|
|
|
box-shadow: $button-disabled-shadow
|
|
|
|
opacity: $button-disabled-opacity
|
2016-01-26 00:02:38 +00:00
|
|
|
&.is-fullwidth
|
2016-05-29 12:16:09 +00:00
|
|
|
display: flex
|
2016-01-26 00:02:38 +00:00
|
|
|
width: 100%
|
2016-01-24 00:03:43 +00:00
|
|
|
&.is-loading
|
2016-05-07 11:58:13 +00:00
|
|
|
color: transparent !important
|
2016-01-24 00:03:43 +00:00
|
|
|
pointer-events: none
|
2018-04-08 18:08:39 +00:00
|
|
|
&::after
|
2018-09-04 13:24:50 +00:00
|
|
|
@extend %loader
|
2017-03-12 17:49:24 +00:00
|
|
|
+center(1em)
|
2016-01-24 00:03:43 +00:00
|
|
|
position: absolute !important
|
2017-05-28 15:07:29 +00:00
|
|
|
&.is-static
|
2017-07-28 20:05:15 +00:00
|
|
|
background-color: $button-static-background-color
|
|
|
|
border-color: $button-static-border-color
|
|
|
|
color: $button-static-color
|
2017-05-28 15:07:29 +00:00
|
|
|
box-shadow: none
|
|
|
|
pointer-events: none
|
2017-12-04 13:21:38 +00:00
|
|
|
&.is-rounded
|
|
|
|
border-radius: $radius-rounded
|
2019-10-12 20:44:57 +00:00
|
|
|
padding-left: calc(#{$button-padding-horizontal} + 0.25em)
|
|
|
|
padding-right: calc(#{$button-padding-horizontal} + 0.25em)
|
2017-10-17 10:53:44 +00:00
|
|
|
|
|
|
|
.buttons
|
|
|
|
align-items: center
|
|
|
|
display: flex
|
|
|
|
flex-wrap: wrap
|
|
|
|
justify-content: flex-start
|
|
|
|
.button
|
|
|
|
margin-bottom: 0.5rem
|
2018-10-02 05:51:11 +00:00
|
|
|
&:not(:last-child):not(.is-fullwidth)
|
2020-01-22 09:14:04 +00:00
|
|
|
+ltr-property("margin", 0.5rem)
|
2017-10-17 10:53:44 +00:00
|
|
|
&:last-child
|
|
|
|
margin-bottom: -0.5rem
|
|
|
|
&:not(:last-child)
|
|
|
|
margin-bottom: 1rem
|
2018-10-31 18:57:58 +00:00
|
|
|
// Sizes
|
|
|
|
&.are-small
|
2018-10-31 19:22:21 +00:00
|
|
|
.button:not(.is-normal):not(.is-medium):not(.is-large)
|
2018-10-31 18:57:58 +00:00
|
|
|
+button-small
|
|
|
|
&.are-medium
|
2018-10-31 19:22:21 +00:00
|
|
|
.button:not(.is-small):not(.is-normal):not(.is-large)
|
2018-10-31 18:57:58 +00:00
|
|
|
+button-medium
|
|
|
|
&.are-large
|
2018-10-31 19:22:21 +00:00
|
|
|
.button:not(.is-small):not(.is-normal):not(.is-medium)
|
|
|
|
+button-large
|
2017-10-17 10:53:44 +00:00
|
|
|
&.has-addons
|
|
|
|
.button
|
|
|
|
&:not(:first-child)
|
|
|
|
border-bottom-left-radius: 0
|
|
|
|
border-top-left-radius: 0
|
|
|
|
&:not(:last-child)
|
|
|
|
border-bottom-right-radius: 0
|
|
|
|
border-top-right-radius: 0
|
2020-05-17 18:38:47 +00:00
|
|
|
+ltr-property("margin", -1px)
|
2017-10-17 10:53:44 +00:00
|
|
|
&:last-child
|
2020-05-17 18:38:47 +00:00
|
|
|
+ltr-property("margin", 0)
|
2017-10-17 10:53:44 +00:00
|
|
|
&:hover,
|
|
|
|
&.is-hovered
|
|
|
|
z-index: 2
|
|
|
|
&:focus,
|
|
|
|
&.is-focused,
|
|
|
|
&:active,
|
|
|
|
&.is-active,
|
|
|
|
&.is-selected
|
|
|
|
z-index: 3
|
|
|
|
&:hover
|
|
|
|
z-index: 4
|
2018-02-18 04:28:28 +00:00
|
|
|
&.is-expanded
|
|
|
|
flex-grow: 1
|
2019-05-17 12:50:39 +00:00
|
|
|
flex-shrink: 1
|
2017-10-17 10:53:44 +00:00
|
|
|
&.is-centered
|
|
|
|
justify-content: center
|
2019-05-17 12:50:39 +00:00
|
|
|
&:not(.has-addons)
|
2019-05-17 09:56:58 +00:00
|
|
|
.button:not(.is-fullwidth)
|
|
|
|
margin-left: 0.25rem
|
|
|
|
margin-right: 0.25rem
|
2017-10-17 10:53:44 +00:00
|
|
|
&.is-right
|
|
|
|
justify-content: flex-end
|
2019-05-17 12:50:39 +00:00
|
|
|
&:not(.has-addons)
|
2019-05-17 09:56:58 +00:00
|
|
|
.button:not(.is-fullwidth)
|
|
|
|
margin-left: 0.25rem
|
|
|
|
margin-right: 0.25rem
|