bulma/sass/components/message.sass

43 lines
1.1 KiB
Sass
Raw Normal View History

2016-09-22 19:30:09 +00:00
@import "../utilities/functions.sass"
@import "../utilities/variables.sass"
2016-01-24 00:03:43 +00:00
.message-body
border: 1px solid $border
border-radius: $radius
padding: 12px 15px
strong
color: inherit
.message-header
2016-06-29 22:59:48 +00:00
background-color: $text
2016-01-24 00:03:43 +00:00
border-radius: $radius $radius 0 0
color: $text-invert
2016-04-10 15:00:32 +00:00
padding: 7px 10px
strong
color: inherit
2016-01-24 00:03:43 +00:00
& + .message-body
border-radius: 0 0 $radius $radius
border-top: none
.message
2016-09-22 22:14:18 +00:00
+block
2016-06-29 22:59:48 +00:00
background-color: $background
2016-01-24 00:03:43 +00:00
border-radius: $radius
2016-04-10 15:00:32 +00:00
// Colors
2016-01-24 00:03:43 +00:00
@each $name, $pair in $colors
$color: nth($pair, 1)
$color-invert: nth($pair, 2)
$lightning: max((100% - lightness($color)) - 4%, 0%)
2016-01-24 00:03:43 +00:00
$darkness: max(lightness($color) - 10%, lightness($color))
&.is-#{$name}
2016-06-29 22:59:48 +00:00
background-color: lighten($color, $lightning)
2016-01-24 00:03:43 +00:00
.message-header
2016-06-29 22:59:48 +00:00
background-color: $color
2016-01-24 00:03:43 +00:00
color: $color-invert
.message-body
border-color: $color
@if (colorLuminance($color) > 0.8)
color: desaturate(lighten(darken($color, 100%), 40%), 40%)
@else
color: desaturate(lighten(darken($color, 100%), 50%), 30%)