@aquera/nile-elements 1.8.9 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent nile-elements following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "nile-elements",
6
- "version": "1.8.9",
6
+ "version": "1.9.0",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -16,7 +16,7 @@ export const styles = css`
16
16
  inline-size: 100%;
17
17
  position: relative;
18
18
  box-sizing: border-box;
19
- border: 1px solid var(--nile-colors-neutral-400, , var(--ng-colors-border-secondary));
19
+ border: 1px solid var(--nile-colors-neutral-400, var(--ng-colors-border-secondary));
20
20
  border-radius: var(--nile-radius-md, var(--ng-radius-xl));
21
21
  background-color: var(--nile-colors-white-base, var(--ng-colors-bg-primary));
22
22
  max-height: 100%;
@@ -139,6 +139,10 @@ export const styles = css`
139
139
  }
140
140
 
141
141
  /* Hover */
142
+ .nav-tab:hover:not(.nav-tab--disabled)::part(base),
143
+ .nav-tab:hover:not(.nav-tab--disabled)::part(label) {
144
+ text-decoration: none;
145
+ }
142
146
  .nav-tab:hover:not(.nav-tab--disabled)::part(base) {
143
147
  color: var(--nile-colors-dark-500, var(--ng-colors-text-brand-secondary-700));
144
148
  background-color: var(--tab-hover-background-color);