Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(tag): 馃悰 Fix opacity percentage #69

Merged
merged 1 commit into from
Sep 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion GRAPHEXT_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,7 @@ We must take into account that the 'custom' version of this package for graphext
## Developing with Graphext, Storybook and Blueprint:

There are some special commands on `docker-compose.yml` created to work easier with Graphext, Storybook and Blueprint.
There is more information about it on **WORKING WITH 馃數 BLUEPRINT** section of [Storybook readme.](https://pre.graphext.com/storybook/?path=/story/design-system-how-to-use--page)
There is more information about it on **WORKING WITH 馃數 BLUEPRINT** section of [Storybook readme.](https://pre.graphext.com/storybook/?path=/story/design-system-how-to-use--page)

## Warning:
**DO NOT USE the `%` on CSS Opacity because it breaks on Graphext build**, use instead `opacity: 0.5;` for example.
12 changes: 6 additions & 6 deletions graphext-versions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"@blueprintjs/core": "3.53.0-graphext38",
"@blueprintjs/datetime": "3.23.20-graphext38",
"@blueprintjs/icons": "3.32.0-graphext38",
"@blueprintjs/select": "3.18.12-graphext38",
"@blueprintjs/table": "3.9.14-graphext38",
"@blueprintjs/popover2": "0.13.0-graphext38"
"@blueprintjs/core": "3.53.0-graphext39",
"@blueprintjs/datetime": "3.23.20-graphext39",
"@blueprintjs/icons": "3.32.0-graphext39",
"@blueprintjs/select": "3.18.12-graphext39",
"@blueprintjs/table": "3.9.14-graphext39",
"@blueprintjs/popover2": "0.13.0-graphext39"
}
6 changes: 3 additions & 3 deletions packages/core/src/components/tag/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@

&.#{$ns}-g-disabled {
background-color: transparent;
opacity: 60%;
opacity: 0.6;

&.#{$ns}-interactive {
cursor: pointer;
Expand All @@ -257,7 +257,7 @@
&.#{$ns}-active,
&:active {
background-color: $g-light-base5;
opacity: 100%;
opacity: 1;
}
}

Expand All @@ -273,7 +273,7 @@
&.#{$ns}-active,
&:active {
background-color: $g-dark-base5;
opacity: 100%;
opacity: 1;
}
}

Expand Down