Skip to content

Commit

Permalink
chore(project): sync generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
carbon-bot committed Oct 26, 2020
1 parent 4fc2fad commit 0481dbc
Showing 1 changed file with 48 additions and 6 deletions.
54 changes: 48 additions & 6 deletions packages/components/docs/sass.md
Original file line number Diff line number Diff line change
Expand Up @@ -21307,8 +21307,8 @@ Overflow menu styles
display: flex;
align-items: center;
justify-content: center;
width: rem(32px);
height: rem(32px);
width: rem(40px);
height: rem(40px);
cursor: pointer;
transition: outline $duration--fast-02 motion(entrance, productive), background-color
$duration--fast-02 motion(entrance, productive);
Expand All @@ -21329,6 +21329,16 @@ Overflow menu styles
}
}

.#{$prefix}--overflow-menu--sm {
width: rem(32px);
height: rem(32px);
}

.#{$prefix}--overflow-menu--xl {
width: rem(48px);
height: rem(48px);
}

// Overwrite Icon Tooltip focus styles
.#{$prefix}--overflow-menu__trigger.#{$prefix}--tooltip--a11y.#{$prefix}--tooltip__trigger:focus {
@include focus-outline('outline');
Expand Down Expand Up @@ -21408,29 +21418,51 @@ Overflow menu styles
.#{$prefix}--overflow-menu-options[data-floating-menu-direction='bottom']::after {
top: rem(-3px);
left: 0;
width: rem(32px);
width: rem(40px);
height: rem(3px);
}

.#{$prefix}--overflow-menu-options[data-floating-menu-direction='top']::after {
bottom: rem(-8px);
left: 0;
width: rem(32px);
width: rem(40px);
height: rem(8px);
}

.#{$prefix}--overflow-menu-options[data-floating-menu-direction='left']::after {
top: 0;
right: rem(-6px);
width: rem(6px);
height: rem(32px);
height: rem(40px);
}

.#{$prefix}--overflow-menu-options[data-floating-menu-direction='right']::after {
top: 0;
left: rem(-6px);
width: rem(6px);
height: rem(32px);
height: rem(40px);
}

.#{$prefix}--overflow-menu-options--sm.#{$prefix}--overflow-menu-options {
&[data-floating-menu-direction='bottom']::after,
&[data-floating-menu-direction='top']::after {
width: rem(32px);
}
&[data-floating-menu-direction='left']::after,
&[data-floating-menu-direction='right']::after {
height: rem(32px);
}
}

.#{$prefix}--overflow-menu-options--xl.#{$prefix}--overflow-menu-options {
&[data-floating-menu-direction='bottom']::after,
&[data-floating-menu-direction='top']::after {
width: rem(48px);
}
&[data-floating-menu-direction='left']::after,
&[data-floating-menu-direction='right']::after {
height: rem(48px);
}
}

.#{$prefix}--overflow-menu--flip.#{$prefix}--overflow-menu-options[data-floating-menu-direction='top']::after,
Expand Down Expand Up @@ -21465,6 +21497,16 @@ Overflow menu styles
transition: background-color $duration--fast-02 motion(entrance, productive);
}

.#{$prefix}--overflow-menu-options--sm
.#{$prefix}--overflow-menu-options__option {
height: rem(32px);
}

.#{$prefix}--overflow-menu-options--xl
.#{$prefix}--overflow-menu-options__option {
height: rem(48px);
}

.#{$prefix}--overflow-menu--divider {
border-top: 1px solid $ui-03;
}
Expand Down

0 comments on commit 0481dbc

Please sign in to comment.