Skip to content

Commit

Permalink
Merge branch 'master' into 6396-search-prop-descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Jul 9, 2020
2 parents 440544a + c2a8be5 commit 5f91f63
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -17811,11 +17811,13 @@ Form styles
@mixin form() {
.#{$prefix}--fieldset {
@include reset;

margin-bottom: $carbon--spacing-07;
}

.#{$prefix}--form-item {
@include type-style('body-short-01');

display: flex;
flex-direction: column;
// We specify `auto` as the default value so that the form item does
Expand Down Expand Up @@ -17846,6 +17848,7 @@ Form styles
// Skeleton State
.#{$prefix}--label.#{$prefix}--skeleton {
@include skeleton;

width: rem(75px);
height: rem(14px);
}
Expand Down Expand Up @@ -17904,6 +17907,7 @@ Form styles
.#{$prefix}--form-requirement {
@include reset;
@include type-style('caption-01');

margin: $carbon--spacing-02 0 0;
max-height: 0;
overflow: hidden;
Expand All @@ -17916,10 +17920,13 @@ Form styles

.#{$prefix}--form__helper-text {
@include type-style('helper-text-01');

color: $text-02;
z-index: 0;
opacity: 1;
margin-top: $carbon--spacing-02;
// Added to prevent error text from displaying under helper text in Safari (#6392)
width: 100%;
}

.#{$prefix}--label--disabled,
Expand Down
8 changes: 4 additions & 4 deletions packages/components/src/globals/scss/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
/// @group global-layout
$z-indexes: (
modal: 9000,
overlay: 8000,
dropdown: 9100,
header: 6000,
overlay: 6000,
dropdown: 6000,
header: 8000,
footer: 5000,
hidden: - 1,
overflowHidden: - 1,
floating: 10000,
floating: 6000,
);

/// @access public
Expand Down

0 comments on commit 5f91f63

Please sign in to comment.