-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: ammar92 <[email protected]> Co-authored-by: Jeroen Dekkers <[email protected]>
- Loading branch information
1 parent
040ab57
commit 87fb3ba
Showing
3 changed files
with
25 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,26 @@ | ||
/* Tabs - Variables */ | ||
|
||
:root { | ||
/* Tab */ | ||
--tabs-border-color: #cccccc; | ||
--tabs-border-width: 0; | ||
|
||
/* Active tab */ | ||
--tabs-item-active-text-color: var(--branding-color-1-darker); | ||
--tabs-item-active-border-color: var(--branding-color-1-darker); | ||
--tabs-item-active-hover-border-color: var(--branding-color-1-darker); | ||
--tabs-item-active-hover-text-color: var(--branding-color-1-darker); | ||
/* Tab */ | ||
--tabs-border-color: #cccccc; | ||
--tabs-item-text-color: var(--application-base-text-color); | ||
|
||
/* Hover */ | ||
--tabs-item-hover-text-color: var(--branding-color-1-darker); | ||
--tabs-item-hover-border-color: var(--branding-color-1-darker); | ||
/* Active tab */ | ||
--tabs-item-active-text-color: var(--application-base-text-color); | ||
--tabs-item-active-border-color: var(--kat-purrple-6); | ||
--tabs-item-active-hover-border-color: var(--kat-purrple-6); | ||
--tabs-item-active-hover-text-color: var(--application-base-text-color); | ||
--tabs-item-active-border-width: 0 0 4px 0; | ||
|
||
/* Hover */ | ||
--tabs-item-hover-border-width: 0 0 4px 0; | ||
--tabs-item-hover-border-color: #d4d4d4; | ||
} | ||
|
||
.tabs ul li > a:focus, | ||
ul.tabs li > a:focus { | ||
border: 0 0 4px 0; | ||
border-color: var(--kat-purrple-6); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters