-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHI-#36 Implement the LESSCSS styles and variables
- Loading branch information
1 parent
a99fc98
commit 6f3748d
Showing
3 changed files
with
50 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
title UI Theme Settings + | ||
project nord-atom-ui + | ||
version + | ||
repository https://github.com/arcticicestudio/nord-atom-ui + | ||
author Arctic Ice Studio + | ||
email [email protected] + | ||
copyright Copyright (C) 2016 + | ||
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
[Index] | ||
> Variables | ||
> User Interface | ||
Full-Width Tab Sizing | ||
*/ | ||
/*+-----------+ | ||
+ Variables + | ||
+-----------+*/ | ||
@theme-setting-tabsizing: ~'theme-@{ui-theme-name}-tabsizing'; | ||
|
||
/*+----------------+ | ||
+ User Interface + | ||
+----------------+*/ | ||
/*+--- Full Width Tab Sizing ---+*/ | ||
[@{theme-setting-tabsizing}="nofullwidth"] { | ||
.theme-setting-tabsizing-nofullwidth(); | ||
} | ||
|
||
.theme-setting-tabsizing-nofullwidth() { | ||
.tab-bar { | ||
width: auto; | ||
|
||
.tab { | ||
width: inherit; | ||
} | ||
|
||
.tab.active, | ||
.tab:hover.active { | ||
width: inherit; | ||
} | ||
} | ||
} |
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