ydb-embedded-ui 6.2.1 → 6.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,15 +15,16 @@
15
15
 
16
16
  &__clipboard-button {
17
17
  display: flex;
18
- visibility: hidden;
19
18
  flex-shrink: 0;
20
19
 
21
20
  margin-left: 8px;
22
21
 
22
+ opacity: 0;
23
23
  color: var(--g-color-text-secondary);
24
24
 
25
- &_visible {
26
- visibility: visible;
25
+ &_visible,
26
+ &:focus-visible {
27
+ opacity: 1;
27
28
  }
28
29
  }
29
30
 
@@ -119,10 +119,9 @@ body,
119
119
  .data-table__row,
120
120
  .ydb-virtual-table__row,
121
121
  .ydb-tree-view__item {
122
- &:hover,
123
- &:focus-within {
122
+ &:hover {
124
123
  & .clipboard-button {
125
- visibility: visible;
124
+ opacity: 1;
126
125
  }
127
126
  }
128
127
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-embedded-ui",
3
- "version": "6.2.1",
3
+ "version": "6.2.2",
4
4
  "files": [
5
5
  "dist"
6
6
  ],