-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove SCSS variable usages in components (#2137)
* feat: removed SCSS variable usages in components and other custom styles * feat: removed SCSS variable files in components * refactor: code refactoring * refactor: deleted old logic to search SCSS variables * refactor: refactoring variables and Anotation component * feat: added CSS hooks plus tokens for IconButton * refactor: refacoring IconButton component * refactor: some refactoring * feat: update replace-scss-vars script to handle interpolation expressions * feat: remove SCSS variables in docs site and start using custom media queries --------- Co-authored-by: Viktor Rusakov <[email protected]>
- Loading branch information
1 parent
ad4b847
commit 2a7e53a
Showing
130 changed files
with
4,530 additions
and
4,159 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,104 @@ | ||
@mixin annotation-triangle($triangle-color, $triangle-direction) { | ||
content: ""; | ||
height: 0; | ||
width: 0; | ||
position: absolute; | ||
border: solid transparent; | ||
|
||
@if $triangle-direction == top { | ||
border-bottom-color: $triangle-color; | ||
border-width: 0 var(--pgn-size-annotation-arrow-border-width) var(--pgn-size-annotation-arrow-border-width); | ||
right: 0; | ||
left: 0; | ||
top: calc(var(--pgn-size-annotation-arrow-border-width) * -1); | ||
margin: 0 auto; | ||
} | ||
|
||
@else if $triangle-direction == right { | ||
border-left-color: $triangle-color; | ||
border-width: | ||
var(--pgn-size-annotation-arrow-border-width) 0 var(--pgn-size-annotation-arrow-border-width) | ||
var(--pgn-size-annotation-arrow-border-width); | ||
top: 0; | ||
bottom: 0; | ||
right: calc(var(--pgn-size-annotation-arrow-border-width) * -1); | ||
margin: auto 0; | ||
} | ||
|
||
@else if $triangle-direction == bottom { | ||
border-top-color: $triangle-color; | ||
border-width: var(--pgn-size-annotation-arrow-border-width) var(--pgn-size-annotation-arrow-border-width) 0; | ||
right: 0; | ||
left: 0; | ||
bottom: calc(var(--pgn-size-annotation-arrow-border-width) * -1); | ||
margin: 0 auto; | ||
} | ||
|
||
@else if $triangle-direction == left { | ||
border-right-color: $triangle-color; | ||
border-width: | ||
var(--pgn-size-annotation-arrow-border-width) var(--pgn-size-annotation-arrow-border-width) | ||
var(--pgn-size-annotation-arrow-border-width) 0; | ||
top: 0; | ||
bottom: 0; | ||
left: calc(var(--pgn-size-annotation-arrow-border-width) * -1); | ||
margin: auto 0; | ||
} | ||
|
||
@else { | ||
@error "Unknown direction #{$triangle-direction}."; | ||
} | ||
} | ||
|
||
@mixin annotation-variant($bg-color, $text-color, $direction) { | ||
background-color: $bg-color; | ||
color: $text-color; | ||
|
||
// set additional margin to arrow side of the Annotation | ||
margin-#{$direction}: | ||
calc( | ||
var(--pgn-size-annotation-arrow-border-width) + var(--pgn-spacing-annotation-arrow-side-margin) | ||
); | ||
|
||
[dir="rtl"] & { | ||
@if $direction == left { | ||
margin-left: 0; | ||
margin-right: | ||
calc( | ||
var(--pgn-size-annotation-arrow-border-width) + var(--pgn-spacing-annotation-arrow-side-margin) | ||
); | ||
} | ||
|
||
@else if $direction == right { | ||
margin-right: 0; | ||
margin-left: | ||
calc( | ||
var(--pgn-size-annotation-arrow-border-width) + var(--pgn-spacing-annotation-arrow-side-margin) | ||
); | ||
} | ||
} | ||
|
||
&::after { | ||
@include annotation-triangle($bg-color, $direction); | ||
|
||
[dir="rtl"] & { | ||
@if $direction == left { | ||
left: initial; | ||
right: calc(var(--pgn-size-annotation-arrow-border-width) * -1); | ||
border-width: | ||
var(--pgn-size-annotation-arrow-border-width) 0 var(--pgn-size-annotation-arrow-border-width) | ||
var(--pgn-size-annotation-arrow-border-width); | ||
border-left-color: $bg-color; | ||
} | ||
|
||
@else if $direction == right { | ||
right: initial; | ||
left: calc(var(--pgn-size-annotation-arrow-border-width) * -1); | ||
border-width: | ||
var(--pgn-size-annotation-arrow-border-width) var(--pgn-size-annotation-arrow-border-width) | ||
var(--pgn-size-annotation-arrow-border-width) 0; | ||
border-right-color: $bg-color; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.