2014-03-10 07:18:48 +01:00
|
|
|
// Form control focus state
|
|
|
|
//
|
|
|
|
// Generate a customized focus state and for any input with the specified color,
|
2017-09-26 17:14:52 +02:00
|
|
|
// which defaults to the `$input-focus-border-color` variable.
|
2014-03-10 07:18:48 +01:00
|
|
|
//
|
|
|
|
// We highly encourage you to not customize the default value, but instead use
|
|
|
|
// this to tweak colors on an as-needed basis. This aesthetic change is based on
|
|
|
|
// WebKit's default styles, but applicable to a wider range of browsers. Its
|
|
|
|
// usability and accessibility should be taken into account with any change.
|
|
|
|
//
|
|
|
|
// Example usage: change the default blue border and shadow to white for better
|
|
|
|
// contrast against a dark gray background.
|
2014-12-02 23:02:35 +01:00
|
|
|
@mixin form-control-focus() {
|
2014-03-10 07:18:48 +01:00
|
|
|
&:focus {
|
(#22414) Rename for consistency `$input-bg-disabled`, `$input-bg-focus`, `$input-border-color-focus`, `$input-box-shadow-focus`, `$input-color-focus`, `$input-color-placeholder` to `$input-disabled-bg`, `$input-focus-bg`, `$input-focus-border-color`, `$input-focus-box-shadow`, `$input-focus-color`, `$input-placeholder-color`, respectively
2017-06-09 04:11:40 +02:00
|
|
|
color: $input-focus-color;
|
|
|
|
background-color: $input-focus-bg;
|
|
|
|
border-color: $input-focus-border-color;
|
2017-11-06 01:23:36 +01:00
|
|
|
outline: 0;
|
2017-10-19 18:03:33 +02:00
|
|
|
// Avoid using mixin so we can pass custom focus shadow properly
|
|
|
|
@if $enable-shadows {
|
2017-10-25 21:30:29 +02:00
|
|
|
box-shadow: $input-box-shadow, $input-focus-box-shadow;
|
2017-10-19 18:03:33 +02:00
|
|
|
} @else {
|
2017-10-25 21:30:29 +02:00
|
|
|
box-shadow: $input-focus-box-shadow;
|
2017-10-19 18:03:33 +02:00
|
|
|
}
|
2014-03-10 07:18:48 +01:00
|
|
|
}
|
|
|
|
}
|
2017-06-11 01:30:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
@mixin form-validation-state($state, $color) {
|
2017-10-03 05:37:28 +02:00
|
|
|
.#{$state}-feedback {
|
|
|
|
display: none;
|
2017-12-23 00:29:49 +01:00
|
|
|
width: 100%;
|
2017-11-15 02:32:08 +01:00
|
|
|
margin-top: $form-feedback-margin-top;
|
|
|
|
font-size: $form-feedback-font-size;
|
2017-10-03 05:37:28 +02:00
|
|
|
color: $color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.#{$state}-tooltip {
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
z-index: 5;
|
|
|
|
display: none;
|
2018-01-03 06:57:56 +01:00
|
|
|
max-width: 100%; // Contain to parent when possible
|
2018-09-19 06:27:02 +02:00
|
|
|
padding: $form-feedback-tooltip-padding-y $form-feedback-tooltip-padding-x;
|
2017-10-03 05:37:28 +02:00
|
|
|
margin-top: .1rem;
|
2018-09-19 06:27:02 +02:00
|
|
|
font-size: $form-feedback-tooltip-font-size;
|
|
|
|
line-height: $form-feedback-tooltip-line-height;
|
2018-07-21 01:21:40 +02:00
|
|
|
color: color-yiq($color);
|
2018-09-19 06:27:02 +02:00
|
|
|
background-color: rgba($color, $form-feedback-tooltip-opacity);
|
|
|
|
@include border-radius($form-feedback-tooltip-border-radius);
|
2017-10-03 05:37:28 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 00:31:18 +02:00
|
|
|
.form-control {
|
|
|
|
.was-validated &:#{$state},
|
|
|
|
&.is-#{$state} {
|
|
|
|
border-color: $color;
|
|
|
|
|
|
|
|
@if $enable-validation-icons {
|
|
|
|
padding-right: $input-height-inner;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center right calc(#{$input-height-inner} / 4);
|
|
|
|
background-size: calc(#{$input-height-inner} / 2) calc(#{$input-height-inner} / 2);
|
|
|
|
|
|
|
|
@if $state == "valid" {
|
|
|
|
background-image: $form-feedback-icon-valid;
|
|
|
|
} @else {
|
|
|
|
background-image: $form-feedback-icon-invalid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
border-color: $color;
|
|
|
|
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
|
|
|
}
|
|
|
|
|
|
|
|
~ .#{$state}-feedback,
|
|
|
|
~ .#{$state}-tooltip {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-09 03:43:40 +02:00
|
|
|
// stylelint-disable selector-no-qualifying-type
|
2018-07-09 00:31:18 +02:00
|
|
|
textarea.form-control {
|
|
|
|
.was-validated &:#{$state},
|
|
|
|
&.is-#{$state} {
|
|
|
|
@if $enable-validation-icons {
|
|
|
|
padding-right: $input-height-inner;
|
|
|
|
background-position: top calc(#{$input-height-inner} / 4) right calc(#{$input-height-inner} / 4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-09 03:43:40 +02:00
|
|
|
// stylelint-enable selector-no-qualifying-type
|
2018-07-09 00:31:18 +02:00
|
|
|
|
2017-06-11 01:30:26 +02:00
|
|
|
.custom-select {
|
|
|
|
.was-validated &:#{$state},
|
|
|
|
&.is-#{$state} {
|
|
|
|
border-color: $color;
|
|
|
|
|
2018-07-09 00:31:18 +02:00
|
|
|
@if $enable-validation-icons {
|
|
|
|
padding-right: $input-height-inner;
|
|
|
|
|
|
|
|
@if $state == "valid" {
|
|
|
|
background: $custom-select-background, $form-feedback-icon-valid no-repeat center right ($input-height-inner * .9) / calc(#{$input-height-inner} / 2) calc(#{$input-height-inner} / 2);
|
|
|
|
} @else {
|
|
|
|
background: $custom-select-background, $form-feedback-icon-invalid no-repeat center right ($input-height-inner * .9) / calc(#{$input-height-inner} / 2) calc(#{$input-height-inner} / 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-11 01:30:26 +02:00
|
|
|
&:focus {
|
2017-11-06 21:04:56 +01:00
|
|
|
border-color: $color;
|
2017-10-25 21:30:29 +02:00
|
|
|
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
2017-06-11 01:30:26 +02:00
|
|
|
}
|
|
|
|
|
2017-08-13 02:13:53 +02:00
|
|
|
~ .#{$state}-feedback,
|
|
|
|
~ .#{$state}-tooltip {
|
2017-06-11 01:30:26 +02:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-09 00:31:18 +02:00
|
|
|
|
2018-04-24 06:54:40 +02:00
|
|
|
.form-control-file {
|
|
|
|
.was-validated &:#{$state},
|
|
|
|
&.is-#{$state} {
|
|
|
|
~ .#{$state}-feedback,
|
|
|
|
~ .#{$state}-tooltip {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-11 01:30:26 +02:00
|
|
|
.form-check-input {
|
|
|
|
.was-validated &:#{$state},
|
|
|
|
&.is-#{$state} {
|
2017-12-23 01:13:01 +01:00
|
|
|
~ .form-check-label {
|
2017-06-11 01:30:26 +02:00
|
|
|
color: $color;
|
|
|
|
}
|
2018-01-05 19:55:13 +01:00
|
|
|
|
|
|
|
~ .#{$state}-feedback,
|
|
|
|
~ .#{$state}-tooltip {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-06-11 01:30:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.custom-control-input {
|
|
|
|
.was-validated &:#{$state},
|
|
|
|
&.is-#{$state} {
|
2017-12-23 01:13:01 +01:00
|
|
|
~ .custom-control-label {
|
2017-06-11 01:30:26 +02:00
|
|
|
color: $color;
|
2017-12-23 01:13:01 +01:00
|
|
|
|
|
|
|
&::before {
|
2018-10-21 09:25:07 +02:00
|
|
|
border-color: $color;
|
2017-12-23 01:13:01 +01:00
|
|
|
}
|
2017-06-11 01:30:26 +02:00
|
|
|
}
|
2017-12-24 07:47:37 +01:00
|
|
|
|
|
|
|
~ .#{$state}-feedback,
|
|
|
|
~ .#{$state}-tooltip {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-11-24 23:26:56 +01:00
|
|
|
&:checked {
|
2017-12-23 01:13:01 +01:00
|
|
|
~ .custom-control-label::before {
|
2018-10-21 09:25:07 +02:00
|
|
|
border-color: lighten($color, 10%);
|
2017-11-24 23:26:56 +01:00
|
|
|
@include gradient-bg(lighten($color, 10%));
|
|
|
|
}
|
|
|
|
}
|
2017-12-24 07:47:37 +01:00
|
|
|
|
2017-10-22 05:57:19 +02:00
|
|
|
&:focus {
|
2017-12-23 01:13:01 +01:00
|
|
|
~ .custom-control-label::before {
|
2018-10-21 09:25:07 +02:00
|
|
|
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:checked) ~ .custom-control-label::before {
|
|
|
|
border-color: $color;
|
2017-10-22 05:57:19 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-11 01:30:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// custom file
|
|
|
|
.custom-file-input {
|
|
|
|
.was-validated &:#{$state},
|
|
|
|
&.is-#{$state} {
|
2017-12-24 07:47:37 +01:00
|
|
|
~ .custom-file-label {
|
2017-06-11 01:30:26 +02:00
|
|
|
border-color: $color;
|
|
|
|
}
|
2017-12-24 07:47:37 +01:00
|
|
|
|
|
|
|
~ .#{$state}-feedback,
|
|
|
|
~ .#{$state}-tooltip {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-06-11 01:30:26 +02:00
|
|
|
&:focus {
|
2017-12-24 07:47:37 +01:00
|
|
|
~ .custom-file-label {
|
2018-08-26 16:15:43 +02:00
|
|
|
border-color: $color;
|
2017-10-25 21:30:29 +02:00
|
|
|
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
|
2017-10-22 21:37:45 +02:00
|
|
|
}
|
2017-06-11 01:30:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|