Skip to content

Commit 17fde9f

Browse files
Fix issue on hovering
1 parent 2d140f5 commit 17fde9f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ Using the pre-built version, the application only has to be reloaded after editi
114114

115115
## Maintainers
116116

117-
- [@stefandesu](https://github.com/stefandesu)
118117
- [@nichtich](https://github.com/nichtich)
118+
- [@rodolv-commons](https://github.com/rodolv-commons)
119119

120120
## Contribute
121121

src/components/RegistryNotation.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ export default {
5555
color: var(--color-background);
5656
height: 18px;
5757
.fontSize-verySmall;
58-
background-color: var(--color-secondary-dark-faded-70); // note: only used when disabled
58+
background-color: var(--color-secondary-dark-faded-30); // note: only used when disabled
5959
}
6060
.registry-notation:hover, .registry-notation.registry-enabled:hover {
61-
background-color: var(--color-secondary-dark-faded-35);
61+
background-color: var(--color-secondary-dark-faded-65);
6262
}
6363
.registry-notation-current {
6464
background-color: var(--color-primary-opacity);
@@ -68,7 +68,7 @@ export default {
6868
.fontWeight-heavy;
6969
}
7070
.registry-notation.registry-enabled {
71-
background-color: var(--color-secondary-dark);
71+
background-color: hsl(var(--color-secondary-dark));
7272
.fontWeight-heavy;
7373
}
7474
</style>

src/style/colors.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
--color-primary-opacity: hsla(var(--color-primary-light), 0.7); /* Opacity at 70%*/
1717

1818
--color-secondary-light: 0, 13.9%, 91.1%; /* lighten increase third 8%*/
19-
--color-secondary-dark: hsl(0, 13.9%, 58.1%); /* darken decrease third 25%*/
20-
--color-secondary-dark-faded-70: hsla(var(--color-secondary-light), 0.7); /* Opacity at 70%*/
21-
--color-secondary-dark-faded-35: hsla(var(--color-secondary-light), 0.35); /* Opacity at 35%*/
19+
--color-secondary-dark: 0, 13.9%, 58.1%; /* darken of color-secondary decrease third 25%*/
20+
--color-secondary-dark-faded-30: hsla(var(--color-secondary-dark), 0.3); /* Opacity at 30%*/
21+
--color-secondary-dark-faded-65: hsla(var(--color-secondary-dark), 0.65); /* Opacity at 65%*/
2222

2323
--color-success-light: hsl(100, 70%, 43.24%); /* lighten increase third 15%*/
2424
--color-success-lighter: hsl(100, 70%, 93.24%); /* lighten increase third 50%*/

0 commit comments

Comments
 (0)