Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(themes): use spacing for margin and padding #11419

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9828d0d
refactor(badge, button): use spacing for margin and padding
simeonoff Apr 18, 2022
81b97f1
refactor(theme): update spacing function
simeonoff Apr 20, 2022
964c8f5
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff Apr 20, 2022
c7d10ab
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff Apr 21, 2022
cca5b72
refactor(components): use spacing for margin and padding (#11444)
desig9stein Apr 21, 2022
4725afb
refactor(date-picker/dialog/dropdown): use css spacing vars (#11429)
didimmova Apr 21, 2022
8d6de7c
refactor(list/tabs/time-picker): use css spacing vars (#11430)
didimmova Apr 21, 2022
0339a93
refactor(date-range): use spacing vars (#11427)
didimmova Apr 21, 2022
2b1c7b6
refactor(toast/tooltip/tree): use css spacing vars (#11431)
didimmova Apr 21, 2022
aa1d70b
refactor(expansion-panel): use spacing (#11450)
simeonoff Apr 21, 2022
95f16da
refactor(input-group): use spacing for padding and margin (#11449)
simeonoff Apr 21, 2022
8b405c2
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff Apr 21, 2022
e2abcbf
refactor(grid): use spacing for padding and margin (#11446)
simeonoff Apr 21, 2022
1caa94a
refactor(calendar): use spacing for margin and padding (#11451)
SisIvanova Apr 21, 2022
faffb8a
refactor(components): use spacing for margin and padding (#11437)
SisIvanova Apr 21, 2022
011c1da
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff May 9, 2022
32c5812
refactor(themes): don't round spacing ratio
simeonoff May 13, 2022
cbe10d7
refactor(chip): use spacing for margin and padding (#11452)
SisIvanova May 13, 2022
99e76a6
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff May 18, 2022
04d42ae
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff May 19, 2022
f0bbcc4
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff May 30, 2022
a2880b8
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff May 31, 2022
2196504
update spacing (#11665)
desig9stein Jun 6, 2022
735867e
Merge branch 'master' into simeonoff/css-spacing-vars
simeonoff Jun 16, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,10 @@ $enhanced-accessibility: false !default;

/// Stores a list of dropped component themes.
$dropped-themes: () !default;

/// A map that stores the default spacing values.
$spacing: (
comfortable: 8px,
cosy: 4px,
compact: 2px
);
Original file line number Diff line number Diff line change
Expand Up @@ -964,6 +964,25 @@ $p-test: palette(#fff, #000);
@return $used;
}

/// Returns a value based on the global spacing config for the specified display density.
/// @access private
@function spacing($value, $density: 'comfortable') {
$space: map.get($spacing, $density);
$ratio: 1;

@if math.compatible($value, $space) {
$ratio: math.div($value, $space);
} @else {
@error 'Spacing must be specified in pixel values.';
}

@if ($ratio == 1) {
@return var(--igx-spacing-#{$density});
} @else {
@return calc(var(--igx-spacing-#{$density}) * #{$ratio});
}
}

@function to-hsl($color) {
@return (color.hue($color), color.saturation($color), color.lightness($color));
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,16 @@

/// @param {Map} $theme - The theme used to style the component.
/// @requires {mixin} css-vars
/// @requires spacing
/// @requires rem
/// @requires var-get
@mixin action-strip($theme) {
@include css-vars($theme);

$padding: (
comfortable: 0 rem(24px),
cosy: 0 rem(16px),
compact: 0 rem(12px)
comfortable: 0 spacing(24px, 'comfortable'),
cosy: 0 spacing(16px, 'cosy'),
compact: 0 spacing(12px, 'compact')
);

$variant: map.get($theme, variant);
Expand Down Expand Up @@ -140,18 +141,18 @@
}

igx-icon + [igxLabel] {
margin-inline-start: rem(12px);
margin-inline-start: spacing(12px);
}

&%igx-drop-down__item--cosy {
igx-icon + [igxLabel] {
margin-inline-start: rem(10px);
margin-inline-start: spacing(10px);
}
}

&%igx-drop-down__item--compact {
igx-icon + [igxLabel] {
margin-inline-start: rem(8px);
margin-inline-start: spacing(8px);
}
}
}
Expand Down Expand Up @@ -201,7 +202,7 @@

%igx-action-strip__editing-actions {
> [igxButton] {
margin-inline-start: rem(4px);
margin-inline-start: spacing(4px);

&:first-of-type {
margin-inline-start: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@

$badge-icon-font-size: rem(12px);

$badge-value-padding: rem(4px);
$badge-value-padding: spacing(4px);
$border-type: solid;

%igx-badge-display {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,14 @@
/// @param {Map} $theme - The theme used to style the component.
/// @requires {mixin} css-vars
/// @requires rem
/// @requires spacing
/// @requires var-get
@mixin banner($theme) {
@include css-vars($theme);
$banner-padding: (
comfortable: rem(8),
cosy: rem(8),
compact: rem(8)
comfortable: spacing(8px, 'comfortable'),
cosy: spacing(8px, 'cosy'),
compact: spacing(8px, 'compact')
);

%igx-banner,
Expand All @@ -100,7 +101,7 @@
width: rem(40);
min-width: rem(40);
height: rem(40);
margin-inline-start: rem(16);
margin-inline-start: spacing(16px);
color: var-get($theme, 'banner-illustration-color');
}

Expand All @@ -117,7 +118,7 @@
%igx-banner__text {
color: var-get($theme, 'banner-message-color');
flex: 1 0 0%;
margin-inline-start: rem(24);
margin-inline-start: spacing(24px);

> * {
margin-block-start: 0 !important;
Expand All @@ -135,7 +136,7 @@
%igx-banner__message {
min-width: rem(220);
flex: 1 0 0%;
margin-inline-end: rem(90);
margin-inline-end: spacing(90px);
}

%igx-banner__row {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
/// @requires color
/// @requires extend
/// @requires rem
/// @requires spacing
/// @requires $ease-in-out-quad
/// @requires var-get
@mixin bottom-nav($theme) {
Expand All @@ -90,7 +91,7 @@
$menu-height: rem(56px);
$item-min-width: rem(80px);
$item-max-width: rem(168px);
$item-padding: 0 rem(12px, 16px);
$item-margin: 0 spacing(12px);

%igx-bottom-nav-panel {
display: block;
Expand Down Expand Up @@ -143,7 +144,7 @@
cursor: pointer;
user-select: none;
overflow: hidden;
padding: $item-padding;
margin: $item-margin;
-webkit-tap-highlight-color: transparent;
outline-style: none;
}
Expand Down Expand Up @@ -174,7 +175,6 @@
position: relative;
justify-content: center;
height: 24px;
padding: 0 8px;
transform: translateZ(0);
transition: transform .15s $ease-in-out-quad;
z-index: 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,17 @@
/// @param {Map} $theme - The theme used to style the component.
/// @requires {mixin} css-vars
/// @requires color
/// @requires rem
/// @requires spacing
/// @requires border-radius
/// @requires var-get
@mixin button-group($theme) {
@include css-vars($theme);
$group-item-min-width: 24px;
$group-item-border-thickness: 1px;
$group-items-margin: rem(10px, 16px);
$group-items-margin: spacing(10px);
$transition: all 140ms $ease-in-out-quad;
$palette: map.get($theme, 'palette');

$variant: map.get($theme, 'variant');
$bootstrap-theme: $variant == 'bootstrap';
$indigo-theme: $variant == 'indigo-design';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,39 +269,39 @@
$button-icon-padding: 0;

$button-padding-material: (
comfortable: rem(9px, 16px) rem(16px, 16px),
cosy: rem(6px, 16px) rem(16px, 16px),
compact: rem(3px, 16px) rem(16px, 16px)
comfortable: spacing(9px, 'comfortable') spacing(16px, 'comfortable'),
cosy: spacing(6px, 'cosy') spacing(16px, 'cosy'),
compact: spacing(3px, 'compact') spacing(16px, 'compact')
);

$outlined-button-padding-material: (
comfortable: rem(7px, 16px) rem(14px, 16px),
cosy: rem(4px, 16px) rem(14px, 16px),
compact: rem(1px, 16px) rem(14px, 16px)
comfortable: spacing(7px, 'comfortable') spacing(14px, 'comfortable'),
cosy: spacing(4px, 'cosy') spacing(14px, 'cosy'),
compact: spacing(1px, 'compact') spacing(14px, 'compact')
);

$button-padding-fluent: (
comfortable: 0 rem(16px, 16px),
cosy: 0 rem(16px, 16px),
compact: 0 rem(16px, 16px)
comfortable: 0 spacing(16px, 'comfortable'),
cosy: 0 spacing(16px, 'cosy'),
compact: 0 spacing(16px, 'compact')
);

$button-padding-bootstrap: (
comfortable: rem(6px, 16px) rem(12px, 16px),
cosy: rem(4px, 16px) rem(10px, 16px),
compact: rem(2px, 16px) rem(8px, 16px)
comfortable: spacing(6px, 'comfortable') spacing(12px, 'comfortable'),
cosy: spacing(4px, 'cosy') spacing(10px, 'cosy'),
compact: spacing(2px, 'compact') spacing(8px, 'compact')
);

$button-padding-indigo: (
comfortable: rem(3px, 16px) rem(12px, 16px),
cosy: rem(2px, 16px) rem(12px, 16px),
compact: rem(1px, 16px) rem(8px, 16px)
comfortable: spacing(3px, 'comfortable') spacing(12px, 'comfortable'),
cosy: spacing(2px, 'cosy') spacing(12px, 'cosy'),
compact: spacing(1px, 'compact') spacing(8px, 'compact')
);

$outlined-button-padding-indigo: (
comfortable: rem(6px, 16px) rem(14px, 16px),
cosy: rem(4px, 16px) rem(10px, 16px),
compact: rem(2px, 16px) rem(6px, 16px)
comfortable: spacing(6px, 'comfortable') spacing(14px, 'comfortable'),
cosy: spacing(4px, 'cosy') spacing(10px, 'cosy'),
compact: spacing(2px, 'cosy') spacing(6px, 'cosy')
);

$icon-button-width-material: (
Expand Down Expand Up @@ -381,9 +381,9 @@
), $variant);

$button-floating-padding: (
comfortable: rem(8px) rem(14px),
cosy: rem(4px) rem(10px),
compact: 0 rem(6px)
comfortable: spacing(8px, 'comfortable') spacing(14px, 'comfortable'),
cosy: spacing(4px, 'cosy') spacing(10px, 'cosy'),
compact: 0 spacing(6px, 'compact')
);

$button-floating-size: (
Expand All @@ -399,9 +399,9 @@
);

$icon-in-button-margin: (
comfortable: rem(12px),
cosy: rem(8px),
compact: rem(4px)
comfortable: spacing(12px, 'comfortable'),
cosy: spacing(8px, 'cosy'),
compact: spacing(4px, 'compact')
);

$icon-sizes: map.get((
Expand Down
Loading