Skip to content

Commit

Permalink
Merge branch 'master' into fix/313-gv-promote-loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ytvnr authored Mar 25, 2021
2 parents 3595fa7 + 3c6fe56 commit 1091bf3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.2.1](https://github.com/gravitee-io/gravitee-ui-components/compare/v2.2.0...v2.2.1) (2021-03-25)


### Bug Fixes

* **gv-button:** rendering problem with skeleton mode ([5767007](https://github.com/gravitee-io/gravitee-ui-components/commit/5767007c6beb2283ba0c29e45d6dd767f64df8c2)), closes [#311](https://github.com/gravitee-io/gravitee-ui-components/issues/311)

# [2.2.0](https://github.com/gravitee-io/gravitee-ui-components/compare/v2.1.1...v2.2.0) (2021-03-23)


Expand Down
8 changes: 8 additions & 0 deletions src/atoms/gv-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,10 @@ export class GvButton extends LitElement {
}
/* MODES */
:host([skeleton]) .button:not(.link) {
border-color: var(--gv-theme-skeleton-color, #bfbfbf);
}
.button:not(.link) {
background-color: var(--bgc);
border-color: var(--bgc);
Expand Down Expand Up @@ -281,6 +285,10 @@ export class GvButton extends LitElement {
button.link {
text-decoration: underline;
}
:host([skeleton]) .link {
color: transparent;
}
`,
skeleton,
link,
Expand Down

0 comments on commit 1091bf3

Please sign in to comment.