mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
194 lines
5.6 KiB
Sass
194 lines
5.6 KiB
Sass
$button: $grey-darker !default
|
|
$button-background: $white !default
|
|
$button-border: $grey-lighter !default
|
|
|
|
$button-hover: $link-hover !default
|
|
$button-hover-border: $link-hover-border !default
|
|
|
|
$button-focus: $link-focus !default
|
|
$button-focus-border: $link-focus-border !default
|
|
|
|
$button-active: $link-active !default
|
|
$button-active-border: $link-active-border !default
|
|
|
|
$button-shadow-inset: inset 0 1px 2px rgba($black, 0.2)
|
|
|
|
@function buttonIconSpacing($button-font-size, $icon-width)
|
|
// The rem height of the button
|
|
// based on a height of 2.5em
|
|
$button-height: 2.5 * $button-font-size // rem
|
|
// The rem total horizontal padding of the button
|
|
$button-horizontal-padding: 2 * 0.75 * $button-font-size // rem
|
|
// For the icon center to align with the button center
|
|
// the horizontal padding + the icon width must equal the button height
|
|
// $button-height = $button-horizontal-padding + $icon-width + $difference
|
|
$difference: $button-height - $button-horizontal-padding - $icon-width
|
|
@return $difference / 2
|
|
|
|
=button-icon($button-font-size)
|
|
$small-offset: buttonIconSpacing($button-font-size, 1rem)
|
|
$normal-offset: buttonIconSpacing($button-font-size, 1.5rem)
|
|
$medium-offset: buttonIconSpacing($button-font-size, 2rem)
|
|
$large-offset: buttonIconSpacing($button-font-size, 3rem)
|
|
.icon
|
|
&:first-child:not(:last-child)
|
|
margin-left: $normal-offset
|
|
margin-right: $button-font-size / 2
|
|
&:last-child:not(:first-child)
|
|
margin-left: $button-font-size / 2
|
|
margin-right: $normal-offset
|
|
&:first-child:last-child
|
|
// The -1px is to account for the button 1px border
|
|
margin-left: calc(-1px + #{$normal-offset})
|
|
margin-right: calc(-1px + #{$normal-offset})
|
|
&.is-small
|
|
&:first-child:not(:last-child)
|
|
margin-left: $small-offset
|
|
&:last-child:not(:first-child)
|
|
margin-right: $small-offset
|
|
&:first-child:last-child
|
|
margin-left: calc(-1px + #{$small-offset})
|
|
margin-right: calc(-1px + #{$small-offset})
|
|
&.is-medium
|
|
&:first-child:not(:last-child)
|
|
margin-left: $medium-offset
|
|
&:last-child:not(:first-child)
|
|
margin-right: $medium-offset
|
|
&:first-child:last-child
|
|
margin-left: calc(-1px + #{$medium-offset})
|
|
margin-right: calc(-1px + #{$medium-offset})
|
|
&.is-large
|
|
&:first-child:not(:last-child)
|
|
margin-left: $large-offset
|
|
&:last-child:not(:first-child)
|
|
margin-right: $large-offset
|
|
&:first-child:last-child
|
|
margin-left: calc(-1px + #{$large-offset})
|
|
margin-right: calc(-1px + #{$large-offset})
|
|
|
|
// The button sizes use mixins so they can be used at different breakpoints
|
|
=button-small
|
|
border-radius: $radius-small
|
|
font-size: $size-small
|
|
+button-icon($size-small)
|
|
=button-medium
|
|
font-size: $size-medium
|
|
+button-icon($size-medium)
|
|
=button-large
|
|
font-size: $size-large
|
|
+button-icon($size-large)
|
|
|
|
.button
|
|
+control
|
|
+unselectable
|
|
background-color: $button-background
|
|
border: 1px solid $button-border
|
|
color: $button
|
|
cursor: pointer
|
|
justify-content: center
|
|
padding-left: 0.75em
|
|
padding-right: 0.75em
|
|
text-align: center
|
|
white-space: nowrap
|
|
strong
|
|
color: inherit
|
|
+button-icon($size-normal)
|
|
// States
|
|
&:hover,
|
|
&.is-hovered
|
|
border-color: $button-hover-border
|
|
color: $button-hover
|
|
&:focus,
|
|
&.is-focused
|
|
border-color: $button-focus-border
|
|
box-shadow: 0 0 0.5em rgba($button-focus-border, 0.25)
|
|
color: $button-focus
|
|
&:active,
|
|
&.is-active
|
|
border-color: $button-active-border
|
|
box-shadow: $button-shadow-inset
|
|
color: $button-active
|
|
// Colors
|
|
&.is-link
|
|
background-color: transparent
|
|
border-color: transparent
|
|
color: $text
|
|
text-decoration: underline
|
|
&:hover,
|
|
&.is-hovered,
|
|
&:focus,
|
|
&.is-focused,
|
|
&:active,
|
|
&.is-active
|
|
background-color: $background
|
|
color: $text-strong
|
|
@each $name, $pair in $colors
|
|
$color: nth($pair, 1)
|
|
$color-invert: nth($pair, 2)
|
|
&.is-#{$name}
|
|
background-color: $color
|
|
border-color: transparent
|
|
color: $color-invert
|
|
&:hover,
|
|
&.is-hovered
|
|
background-color: darken($color, 2.5%)
|
|
border-color: transparent
|
|
color: $color-invert
|
|
&:focus,
|
|
&.is-focused
|
|
border-color: transparent
|
|
box-shadow: 0 0 0.5em rgba($color, 0.25)
|
|
color: $color-invert
|
|
&:active,
|
|
&.is-active
|
|
background-color: darken($color, 5%)
|
|
border-color: transparent
|
|
box-shadow: $button-shadow-inset
|
|
color: $color-invert
|
|
&.is-inverted
|
|
background-color: $color-invert
|
|
color: $color
|
|
&:hover
|
|
background-color: darken($color-invert, 5%)
|
|
&.is-loading
|
|
&:after
|
|
border-color: transparent transparent $color-invert $color-invert !important
|
|
&.is-outlined
|
|
background-color: transparent
|
|
border-color: $color
|
|
color: $color
|
|
&:hover,
|
|
&:focus
|
|
background-color: $color
|
|
border-color: $color
|
|
color: $color-invert
|
|
&.is-inverted.is-outlined
|
|
background-color: transparent
|
|
border-color: $color-invert
|
|
color: $color-invert
|
|
&:hover,
|
|
&:focus
|
|
background-color: $color-invert
|
|
color: $color
|
|
// Sizes
|
|
&.is-small
|
|
+button-small
|
|
&.is-medium
|
|
+button-medium
|
|
&.is-large
|
|
+button-large
|
|
// Modifiers
|
|
&[disabled],
|
|
&.is-disabled
|
|
opacity: 0.5
|
|
&.is-fullwidth
|
|
display: flex
|
|
width: 100%
|
|
&.is-loading
|
|
color: transparent !important
|
|
pointer-events: none
|
|
&:after
|
|
+loader
|
|
+center(16px)
|
|
position: absolute !important
|