@tetacom/ng-components 1.3.5 → 1.3.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tetacom/ng-components",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.1.0",
6
6
  "@angular/core": "^17.1.0"
package/style/table.scss CHANGED
@@ -1,5 +1,5 @@
1
- @import "util/color-util.scss";
2
- @import "util/font-util.scss";
1
+ @import 'util/color-util.scss';
2
+ @import 'util/font-util.scss';
3
3
 
4
4
  .table {
5
5
  display: flex;
@@ -84,11 +84,13 @@
84
84
  }
85
85
  }
86
86
 
87
- &:hover, &_active {
87
+ &:hover,
88
+ &_active {
88
89
  background: var(--color-text-20);
89
90
  }
90
91
 
91
- &:hover &__menu, &__menu_open {
92
+ &:hover &__menu,
93
+ &__menu_open {
92
94
  display: flex;
93
95
  }
94
96
 
@@ -143,7 +145,6 @@
143
145
  &:hover &__resize {
144
146
  display: block;
145
147
  }
146
-
147
148
  }
148
149
 
149
150
  &__dropdown {
@@ -191,9 +192,14 @@
191
192
  background-color: var(--color-global-bgmain);
192
193
  }
193
194
 
194
- &_selected, &_selected:hover {
195
+ &_selected,
196
+ &_selected:hover {
195
197
  background-color: var(--color-primary-10);
196
198
  }
199
+
200
+ &_disabled {
201
+ color: var(--color-text-50);
202
+ }
197
203
  }
198
204
  }
199
205