-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(ktruncate): using icon as button Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix(ktoaster): using icon as button Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix(kslideout): using icon as button Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix(kselect): using icon as button Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix(kmultiselect): using icon as button Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix(kmodal): using icon as button Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix: reset functional button styles Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix(kcopy): not resetting functional button styles Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> * fix(*): minor state fixes --------- Signed-off-by: Philipp Rudloff <philipp.rudloff@konghq.com> Co-authored-by: portikM <maksym.portianoi@konghq.com>
- Loading branch information
1 parent
bf595d2
commit 3eb7c06
Showing
10 changed files
with
97 additions
and
61 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
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
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
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
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,9 @@ | ||
/* Buttons mixins */ | ||
|
||
@mixin defaultButtonReset { | ||
background-color: var(--kui-color-background-transparent, $kui-color-background-transparent); | ||
border: none; | ||
color: inherit; | ||
cursor: pointer; | ||
padding: var(--kui-space-0, $kui-space-0); | ||
} |