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

feat: sync with Eva 1.1 #1995

Merged
merged 15 commits into from
Oct 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
9 changes: 8 additions & 1 deletion docs/articles/design-system/theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Each theme is divided into the following semantic groups:

## Colors

All available color within the theme. 5 semantic colors (`primary`, `success`, `info`, `warning`, `danger`) and `basic` color (backgrounds and texts).
All available color within the theme. 5 semantic colors (`primary`, `success`, `info`, `warning`, `danger`), 6 transparency levels for every default semantic color (8%, 16%, 24%, 32%, 40%, 48%) and `basic` color (backgrounds and texts).
Each color has a pallet of 9 shades, except for `basic`, which has 11 shades. These colors mostly used by `status` variants of the components.

Primary color shades:
Expand All @@ -67,6 +67,13 @@ color-primary-600: #284de0,
color-primary-700: #2541cc,
color-primary-800: #192f9e,
color-primary-900: #14236e,

color-primary-transparent-100: rgba(51, 102, 255, 0.08),
color-primary-transparent-200: rgba(51, 102, 255, 0.16),
color-primary-transparent-300: rgba(51, 102, 255, 0.24),
color-primary-transparent-400: rgba(51, 102, 255, 0.32),
color-primary-transparent-500: rgba(51, 102, 255, 0.40),
color-primary-transparent-600: rgba(51, 102, 255, 0.48),
```

You can also tune colors used for element states:
Expand Down
2 changes: 1 addition & 1 deletion e2e/layout-theme.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('nb-layout theme', () => {
expect(value).toEqual(themeDefault);
});
cardHeader.getCssValue('color').then(value => {
expect(value).toEqual('rgba(26, 33, 56, 1)');
expect(value).toEqual('rgba(25, 32, 56, 1)');
});
cardHeader.getCssValue('text-decoration').then(value => {
expect(value).toMatch('none');
Expand Down
1 change: 1 addition & 0 deletions src/framework/theme/components/button/_button-filled.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
color: nb-theme(button-filled-#{$status}-text-color);

&:focus {
background-color: nb-theme(button-filled-#{$status}-focus-background-color);
border-color: nb-theme(button-filled-#{$status}-focus-border-color);
}

Expand Down
10 changes: 9 additions & 1 deletion src/framework/theme/components/button/_button-ghost.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,26 @@
color: nb-theme(button-ghost-#{$status}-text-color);

&:focus {
background-color: nb-theme(button-ghost-#{$status}-focus-background-color);
border-color: nb-theme(button-ghost-#{$status}-focus-border-color);
color: nb-theme(button-ghost-#{$status}-focus-text-color);
}

&:hover {
color: nb-theme(button-ghost-#{$status}-hover-color);
background-color: nb-theme(button-ghost-#{$status}-hover-background-color);
border-color: nb-theme(button-ghost-#{$status}-hover-border-color);
color: nb-theme(button-ghost-#{$status}-hover-text-color);
}

&:active {
background-color: nb-theme(button-ghost-#{$status}-active-background-color);
border-color: nb-theme(button-ghost-#{$status}-active-border-color);
color: nb-theme(button-ghost-#{$status}-active-text-color);
}

&[disabled] {
background-color: nb-theme(button-ghost-#{$status}-disabled-background-color);
border-color: nb-theme(button-ghost-#{$status}-disabled-border-color);
color: nb-theme(button-ghost-#{$status}-disabled-text-color);
}
}
Expand Down
4 changes: 4 additions & 0 deletions src/framework/theme/components/button/_button-outline.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,25 @@
color: nb-theme(button-outline-#{$status}-text-color);

&:focus {
background-color: nb-theme(button-outline-#{$status}-focus-background-color);
border-color: nb-theme(button-outline-#{$status}-focus-border-color);
color: nb-theme(button-outline-#{$status}-focus-text-color);
}

&:hover {
background-color: nb-theme(button-outline-#{$status}-hover-background-color);
border-color: nb-theme(button-outline-#{$status}-hover-border-color);
color: nb-theme(button-outline-#{$status}-hover-text-color);
}

&:active {
background-color: nb-theme(button-outline-#{$status}-active-background-color);
border-color: nb-theme(button-outline-#{$status}-active-border-color);
color: nb-theme(button-outline-#{$status}-active-text-color);
}

&[disabled] {
background-color: nb-theme(button-outline-#{$status}-disabled-background-color);
border-color: nb-theme(button-outline-#{$status}-disabled-border-color);
color: nb-theme(button-outline-#{$status}-disabled-text-color);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,37 @@
}
}

.native-input:focus + .custom-checkbox {
border-color: nb-theme(checkbox-primary-focus-border-color);
.native-input:enabled:focus + .custom-checkbox {
background-color: nb-theme(checkbox-focus-background-color);
border-color: nb-theme(checkbox-focus-border-color);

&.indeterminate,
&.checked {
background-color: nb-theme(checkbox-primary-focus-checked-background-color);
border-color: nb-theme(checkbox-primary-focus-checked-border-color);
}
}

.custom-checkbox:hover {
background-color: nb-theme(checkbox-primary-hover-background-color);
border-color: nb-theme(checkbox-primary-hover-border-color);
background-color: nb-theme(checkbox-hover-background-color);
border-color: nb-theme(checkbox-hover-border-color);

&.indeterminate,
&.checked {
background-color: nb-theme(checkbox-primary-hover-checked-background-color);
border-color: nb-theme(checkbox-primary-hover-checked-border-color);
}
}

.native-input:active + .custom-checkbox {
background-color: nb-theme(checkbox-primary-active-background-color);
border-color: nb-theme(checkbox-primary-active-border-color);
.native-input:enabled:active + .custom-checkbox {
background-color: nb-theme(checkbox-active-background-color);
border-color: nb-theme(checkbox-active-border-color);

&.indeterminate,
&.checked {
background-color: nb-theme(checkbox-primary-active-checked-background-color);
border-color: nb-theme(checkbox-primary-active-checked-border-color);
}
}

.native-input:focus + .custom-checkbox {
Expand All @@ -65,6 +84,10 @@
& ~ .text {
color: nb-theme(checkbox-disabled-text-color);
}
&:indeterminate + .custom-checkbox,
&:checked + .custom-checkbox {
background-color: nb-theme(checkbox-disabled-checked-background-color);
}
}

nb-icon {
Expand Down Expand Up @@ -114,18 +137,37 @@
}
}

.native-input:focus + .custom-checkbox {
.native-input:enabled:focus + .custom-checkbox {
background-color: nb-theme(checkbox-#{$status}-focus-background-color);
border-color: nb-theme(checkbox-#{$status}-focus-border-color);

&.indeterminate,
&.checked {
background-color: nb-theme(checkbox-#{$status}-focus-checked-background-color);
border-color: nb-theme(checkbox-#{$status}-focus-checked-border-color);
}
}

.custom-checkbox:hover {
background-color: nb-theme(checkbox-#{$status}-hover-background-color);
border-color: nb-theme(checkbox-#{$status}-hover-border-color);

&.indeterminate,
&.checked {
background-color: nb-theme(checkbox-#{$status}-hover-checked-background-color);
border-color: nb-theme(checkbox-#{$status}-hover-checked-border-color);
}
}

.native-input:active + .custom-checkbox {
.native-input:enabled:active + .custom-checkbox {
background-color: nb-theme(checkbox-#{$status}-active-background-color);
border-color: nb-theme(checkbox-#{$status}-active-border-color);

&.indeterminate,
&.checked {
background-color: nb-theme(checkbox-#{$status}-active-checked-background-color);
border-color: nb-theme(checkbox-#{$status}-active-checked-border-color);
}
}

.native-input:disabled {
Expand All @@ -140,6 +182,10 @@
& ~ .text {
color: nb-theme(checkbox-disabled-text-color);
}
&:indeterminate + .custom-checkbox,
&:checked + .custom-checkbox {
background-color: nb-theme(checkbox-disabled-checked-background-color);
}
}
}
}
51 changes: 37 additions & 14 deletions src/framework/theme/components/radio/_radio.component.theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@
}

.native-input:enabled:checked + .outer-circle {
background-color: nb-theme(radio-primary-checked-background-color);
border-color: nb-theme(radio-primary-border-color);
}

.native-input:enabled:checked ~ .inner-circle {
background-color: nb-theme(radio-primary-inner-circle-color);;
}
Expand All @@ -30,15 +32,22 @@
border-color: nb-theme(radio-primary-focus-border-color);
box-shadow: 0 0 0 nb-theme(radio-outline-width) nb-theme(radio-outline-color);
}

.native-input:enabled:checked:focus ~ .inner-circle {
background-color: nb-theme(radio-primary-focus-inner-circle-color);
}

label:hover .native-input:enabled + .outer-circle {
border-color: nb-theme(radio-primary-hover-border-color);
}
label:hover .native-input:checked:enabled ~ .inner-circle {
background-color: nb-theme(radio-primary-hover-inner-circle-color);
label:hover .native-input:enabled {
& + .outer-circle {
background-color: nb-theme(radio-primary-hover-background-color);
border-color: nb-theme(radio-primary-hover-border-color);
}
&:checked + .outer-circle {
background-color: nb-theme(radio-primary-hover-checked-background-color);
}
&:checked ~ .inner-circle {
background-color: nb-theme(radio-primary-hover-inner-circle-color);
}
}

label .native-input:enabled:active + .outer-circle {
Expand All @@ -48,21 +57,35 @@
background-color: nb-theme(radio-primary-active-inner-circle-color);
}

.native-input:disabled + .outer-circle {
background-color: nb-theme(radio-disabled-background-color);
border-color: nb-theme(radio-disabled-border-color);
}
.native-input:disabled:checked ~ .inner-circle {
background-color: nb-theme(radio-disabled-inner-circle-color);
}
.native-input:disabled ~ .text {
color: nb-theme(radio-disabled-text-color);
.native-input:disabled {
& + .outer-circle {
background-color: nb-theme(radio-disabled-background-color);
border-color: nb-theme(radio-disabled-border-color);
}
& ~ .text {
color: nb-theme(radio-disabled-text-color);
}

&:checked {
& + .outer-circle {
background-color: nb-theme(radio-disabled-checked-background-color);
}
~ .inner-circle {
background-color: nb-theme(radio-disabled-checked-inner-circle-color);
}
}
}

@each $status in nb-get-statuses() {
&.status-#{$status} .native-input:enabled + .outer-circle {
background-color: nb-theme(radio-#{$status}-background-color);
border-color: nb-theme(radio-#{$status}-border-color);
}

&.status-#{$status} .native-input:enabled:checked + .outer-circle {
background-color: nb-theme(radio-#{$status}-checked-background-color);
}

&.status-#{$status} .native-input:enabled:checked ~ .inner-circle {
background-color: nb-theme(radio-#{$status}-inner-circle-color);;
}
Expand Down
Loading