@things-factory/notification 7.0.1-beta.1 → 7.0.1-beta.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/client/viewparts/notification-badge.ts +1 -1
- package/client/viewparts/notification-item.ts +1 -1
- package/client/viewparts/notification-list.ts +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/notification-badge.js +1 -1
- package/dist-client/viewparts/notification-badge.js.map +1 -1
- package/dist-client/viewparts/notification-item.js +1 -1
- package/dist-client/viewparts/notification-item.js.map +1 -1
- package/dist-client/viewparts/notification-list.js +1 -1
- package/dist-client/viewparts/notification-list.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
|
@@ -28,7 +28,7 @@ export class NotificationBadge extends connect(store)(LitElement) {
|
|
|
28
28
|
font-family: var(--theme-font);
|
|
29
29
|
font-size: 0.3em;
|
|
30
30
|
background: var(--md-sys-color-error, rgb(186 26 26));
|
|
31
|
-
color: var(--
|
|
31
|
+
color: var(--md-sys-color-on-primary);
|
|
32
32
|
width: 14px;
|
|
33
33
|
height: 14px;
|
|
34
34
|
text-align: center;
|
|
@@ -100,7 +100,7 @@ export class NotificationItem extends LitElement {
|
|
|
100
100
|
padding: 0px var(--padding-narrow) 2px var(--padding-narrow);
|
|
101
101
|
border-radius: var(--border-radius);
|
|
102
102
|
font-size: 0.8em;
|
|
103
|
-
color: var(--
|
|
103
|
+
color: var(--md-sys-color-on-primary);
|
|
104
104
|
--md-icon-size: 14px;
|
|
105
105
|
}
|
|
106
106
|
span.more * {
|
|
@@ -28,7 +28,7 @@ export class NotificationList extends connect(store)(localize(i18next)(LitElemen
|
|
|
28
28
|
height: 0px;
|
|
29
29
|
border-left: 7px solid transparent;
|
|
30
30
|
border-right: 7px solid transparent;
|
|
31
|
-
border-bottom: 7px solid var(--
|
|
31
|
+
border-bottom: 7px solid var(--md-sys-color-on-primary);
|
|
32
32
|
position: absolute;
|
|
33
33
|
margin-top: -7px;
|
|
34
34
|
right: 50px;
|