Fix select colors

This commit is contained in:
Jeremy Thomas
2018-04-11 09:59:47 +01:00
parent 13027e4aad
commit 3babdbc850
4 changed files with 110 additions and 25 deletions

View File

@@ -20,18 +20,21 @@
user-select: none; user-select: none;
} }
.select:not(.is-multiple)::after, .navbar-link::after { .select:not(.is-multiple):not(.is-loading)::after, .navbar-link::after {
border: 1px solid transparent; border: 3px solid transparent;
border-radius: 2px;
border-right: 0; border-right: 0;
border-top: 0; border-top: 0;
content: " "; content: " ";
display: block; display: block;
height: 0.5em; height: 0.625em;
margin-top: -0.4375em;
pointer-events: none; pointer-events: none;
position: absolute; position: absolute;
top: 50%;
transform: rotate(-45deg); transform: rotate(-45deg);
transform-origin: center; transform-origin: center;
width: 0.5em; width: 0.625em;
} }
.box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child), .box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child),
@@ -3120,11 +3123,9 @@ a.box:active {
height: 2.25em; height: 2.25em;
} }
.select:not(.is-multiple)::after { .select:not(.is-multiple):not(.is-loading)::after {
border-color: #3273dc; border-color: #3273dc;
margin-top: -0.375em;
right: 1.125em; right: 1.125em;
top: 50%;
z-index: 4; z-index: 4;
} }
@@ -3213,86 +3214,166 @@ a.box:active {
padding: 0.5em 1em; padding: 0.5em 1em;
} }
.select:hover::after { .select:not(.is-multiple):not(.is-loading):hover::after {
border-color: #363636; border-color: #363636;
} }
.select.is-white:not(:hover)::after {
border-color: white;
}
.select.is-white select { .select.is-white select {
border-color: white; border-color: white;
} }
.select.is-white select:hover, .select.is-white select.is-hovered {
border-color: #f2f2f2;
}
.select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active { .select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active {
box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25); box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
} }
.select.is-black:not(:hover)::after {
border-color: #0a0a0a;
}
.select.is-black select { .select.is-black select {
border-color: #0a0a0a; border-color: #0a0a0a;
} }
.select.is-black select:hover, .select.is-black select.is-hovered {
border-color: black;
}
.select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active { .select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active {
box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25); box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
} }
.select.is-light:not(:hover)::after {
border-color: whitesmoke;
}
.select.is-light select { .select.is-light select {
border-color: whitesmoke; border-color: whitesmoke;
} }
.select.is-light select:hover, .select.is-light select.is-hovered {
border-color: #e8e8e8;
}
.select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active { .select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active {
box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25); box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
} }
.select.is-dark:not(:hover)::after {
border-color: #363636;
}
.select.is-dark select { .select.is-dark select {
border-color: #363636; border-color: #363636;
} }
.select.is-dark select:hover, .select.is-dark select.is-hovered {
border-color: #292929;
}
.select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active { .select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active {
box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25); box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
} }
.select.is-primary:not(:hover)::after {
border-color: #00d1b2;
}
.select.is-primary select { .select.is-primary select {
border-color: #00d1b2; border-color: #00d1b2;
} }
.select.is-primary select:hover, .select.is-primary select.is-hovered {
border-color: #00b89c;
}
.select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active { .select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25); box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
} }
.select.is-link:not(:hover)::after {
border-color: #3273dc;
}
.select.is-link select { .select.is-link select {
border-color: #3273dc; border-color: #3273dc;
} }
.select.is-link select:hover, .select.is-link select.is-hovered {
border-color: #2366d1;
}
.select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active { .select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active {
box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25); box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
} }
.select.is-info:not(:hover)::after {
border-color: #209cee;
}
.select.is-info select { .select.is-info select {
border-color: #209cee; border-color: #209cee;
} }
.select.is-info select:hover, .select.is-info select.is-hovered {
border-color: #118fe4;
}
.select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active { .select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active {
box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25); box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
} }
.select.is-success:not(:hover)::after {
border-color: #23d160;
}
.select.is-success select { .select.is-success select {
border-color: #23d160; border-color: #23d160;
} }
.select.is-success select:hover, .select.is-success select.is-hovered {
border-color: #20bc56;
}
.select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active { .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25); box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
} }
.select.is-warning:not(:hover)::after {
border-color: #ffdd57;
}
.select.is-warning select { .select.is-warning select {
border-color: #ffdd57; border-color: #ffdd57;
} }
.select.is-warning select:hover, .select.is-warning select.is-hovered {
border-color: #ffd83d;
}
.select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active { .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active {
box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25); box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
} }
.select.is-danger:not(:hover)::after {
border-color: #ff3860;
}
.select.is-danger select { .select.is-danger select {
border-color: #ff3860; border-color: #ff3860;
} }
.select.is-danger select:hover, .select.is-danger select.is-hovered {
border-color: #ff1f4b;
}
.select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active { .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active {
box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25); box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
} }
@@ -6703,9 +6784,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
transform: translateY(0); transform: translateY(0);
} }
.navbar-link::after { .navbar-link::after {
margin-top: -0.375em;
right: 1.125em; right: 1.125em;
top: 50%;
} }
.navbar-menu { .navbar-menu {
flex-grow: 1; flex-grow: 1;

View File

@@ -322,9 +322,7 @@ a.navbar-item,
transform: translateY(0) transform: translateY(0)
.navbar-link .navbar-link
&::after &::after
margin-top: -0.375em
right: 1.125em right: 1.125em
top: 50%
.navbar-menu .navbar-menu
flex-grow: 1 flex-grow: 1
flex-shrink: 0 flex-shrink: 0

View File

@@ -149,11 +149,10 @@ $help-size: $size-small !default
vertical-align: top vertical-align: top
&:not(.is-multiple) &:not(.is-multiple)
height: 2.25em height: 2.25em
&:not(.is-multiple):not(.is-loading)
&::after &::after
+arrow($input-arrow) +arrow($input-arrow)
margin-top: -0.375em
right: 1.125em right: 1.125em
top: 50%
z-index: 4 z-index: 4
&.is-rounded &.is-rounded
select select
@@ -178,19 +177,25 @@ $help-size: $size-small !default
option option
padding: 0.5em 1em padding: 0.5em 1em
// States // States
&:hover &:not(.is-multiple):not(.is-loading):hover
&::after &::after
border-color: $input-hover-color border-color: $input-hover-color
// Colors // Colors
@each $name, $pair in $colors @each $name, $pair in $colors
$color: nth($pair, 1) $color: nth($pair, 1)
&.is-#{$name} select &.is-#{$name}
border-color: $color &:not(:hover)::after
&:focus, border-color: $color
&.is-focused, select
&:active, border-color: $color
&.is-active &:hover,
box-shadow: $input-focus-box-shadow-size rgba($color, 0.25) &.is-hovered
border-color: darken($color, 5%)
&:focus,
&.is-focused,
&:active,
&.is-active
box-shadow: $input-focus-box-shadow-size rgba($color, 0.25)
// Sizes // Sizes
&.is-small &.is-small
+control-small +control-small

View File

@@ -141,17 +141,20 @@
@extend %unselectable @extend %unselectable
%arrow %arrow
border: 1px solid transparent border: 3px solid transparent
border-radius: 2px
border-right: 0 border-right: 0
border-top: 0 border-top: 0
content: " " content: " "
display: block display: block
height: 0.5em height: 0.625em
margin-top: -0.4375em
pointer-events: none pointer-events: none
position: absolute position: absolute
top: 50%
transform: rotate(-45deg) transform: rotate(-45deg)
transform-origin: center transform-origin: center
width: 0.5em width: 0.625em
=arrow($color) =arrow($color)
@extend %arrow @extend %arrow