superdesk-ui-framework 3.0.50 → 3.0.53
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/app/styles/_simple-list.scss +1 -0
- package/app/styles/components/_list-item.scss +1 -0
- package/app-typescript/components/avatar/avatar-image.tsx +8 -4
- package/app-typescript/components/avatar/avatar-placeholder.tsx +23 -3
- package/app-typescript/components/avatar/avatar.tsx +38 -11
- package/dist/examples.bundle.js +230 -209
- package/dist/superdesk-ui.bundle.css +4 -2
- package/dist/superdesk-ui.bundle.js +210 -189
- package/package.json +1 -1
- package/react/components/avatar/avatar-image.d.ts +1 -0
- package/react/components/avatar/avatar-image.js +6 -4
- package/react/components/avatar/avatar-placeholder.d.ts +1 -1
- package/react/components/avatar/avatar-placeholder.js +13 -3
- package/react/components/avatar/avatar.d.ts +11 -0
- package/react/components/avatar/avatar.js +13 -4
@@ -35131,7 +35131,8 @@ a.label {
|
|
35131
35131
|
display: flex;
|
35132
35132
|
flex-direction: row;
|
35133
35133
|
align-items: center;
|
35134
|
-
gap: 0.8rem;
|
35134
|
+
gap: 0.8rem;
|
35135
|
+
color: var(--color-text); }
|
35135
35136
|
.simple-list .simple-list__item [class^="icon-"], .simple-list .simple-list__item [class*=" icon-"] {
|
35136
35137
|
flex-grow: 0;
|
35137
35138
|
flex-shrink: 0; }
|
@@ -41826,7 +41827,8 @@ a.text-link {
|
|
41826
41827
|
flex-direction: row;
|
41827
41828
|
background-color: var(--sd-item__main-Bg);
|
41828
41829
|
transition: background-color 0.2s linear;
|
41829
|
-
flex-shrink: 0;
|
41830
|
+
flex-shrink: 0;
|
41831
|
+
color: var(--color-text); }
|
41830
41832
|
.sd-list-item:hover {
|
41831
41833
|
background-color: var(--sd-item__main-Bg--hover);
|
41832
41834
|
cursor: pointer; }
|