Skip to content

Commit

Permalink
Merge branch 'master' into fix/to-type-null
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Mar 16, 2020
2 parents 0c25335 + 52c5b06 commit bea4f64
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 16 deletions.
15 changes: 12 additions & 3 deletions scss/_reboot.scss
Expand Up @@ -528,9 +528,18 @@ legend {
// Fix height of inputs with a type of datetime-local, date, month, week, or time
// See https://github.com/twbs/bootstrap/issues/18842

::-webkit-datetime-edit {
overflow: visible;
line-height: 0;
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}

::-webkit-inner-spin-button {
height: auto;
}

// 1. Correct the outline style in Safari.
Expand Down
2 changes: 1 addition & 1 deletion scss/_utilities.scss
Expand Up @@ -29,8 +29,8 @@ $utilities: map-merge(
property: box-shadow,
class: shadow,
values: (
sm: $box-shadow-sm,
null: $box-shadow,
sm: $box-shadow-sm,
lg: $box-shadow-lg,
none: none,
)
Expand Down
10 changes: 5 additions & 5 deletions scss/_variables.scss
Expand Up @@ -428,6 +428,7 @@ $blockquote-small-color: $gray-600 !default;
$blockquote-small-font-size: $small-font-size !default;
$blockquote-font-size: $font-size-base * 1.25 !default;

$hr-margin-y: $spacer !default;
$hr-color: inherit !default;
$hr-height: $border-width !default;
$hr-opacity: .25 !default;
Expand All @@ -446,8 +447,6 @@ $list-inline-padding: .5rem !default;

$mark-bg: #fcf8e3 !default;

$hr-margin-y: $spacer !default;


// Tables
//
Expand Down Expand Up @@ -497,9 +496,10 @@ $input-btn-font-family: null !default;
$input-btn-font-size: $font-size-base !default;
$input-btn-line-height: $line-height-base !default;

$input-btn-focus-width: .2rem !default;
$input-btn-focus-color: rgba($component-active-bg, .25) !default;
$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;
$input-btn-focus-width: .2rem !default;
$input-btn-focus-color-opacity: .25 !default;
$input-btn-focus-color: rgba($component-active-bg, $input-btn-focus-color-opacity) !default;
$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default;

$input-btn-padding-y-sm: .25rem !default;
$input-btn-padding-x-sm: .5rem !default;
Expand Down
3 changes: 0 additions & 3 deletions scss/forms/_form-file.scss
@@ -1,9 +1,6 @@
.form-file {
position: relative;
display: inline-block;
width: 100%;
height: $form-file-height;
margin-bottom: 0;
}

.form-file-input {
Expand Down
2 changes: 1 addition & 1 deletion scss/forms/_form-select.scss
Expand Up @@ -4,7 +4,7 @@
// https://primer.github.io/.

.form-select {
display: inline-block;
display: block;
width: 100%;
height: $form-select-height;
padding: $form-select-padding-y ($form-select-padding-x + $form-select-indicator-padding) $form-select-padding-y $form-select-padding-x;
Expand Down
2 changes: 1 addition & 1 deletion scss/mixins/_forms.scss
Expand Up @@ -58,7 +58,7 @@

&:focus {
border-color: $color;
box-shadow: 0 0 0 $input-focus-width rgba($color, .25);
box-shadow: 0 0 0 $input-focus-width rgba($color, $input-btn-focus-color-opacity);
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions site/content/docs/4.3/getting-started/rfs.md
Expand Up @@ -66,8 +66,8 @@ In this example, we use one of Bootstrap's built-in [responsive breakpoint mixin
```scss
.selector {
@include media-breakpoint-down(lg) {
padding: rfs-fluid-value(2rem);
font-size: rfs-fluid-value(1.125rem);
padding: rfs-fluid-value(2rem);
font-size: rfs-fluid-value(1.125rem);
}
}
```
Expand Down

0 comments on commit bea4f64

Please sign in to comment.