@things-factory/notification 7.0.1-rc.9 → 7.0.1
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-item.ts +3 -3
- package/client/viewparts/notification-list.ts +3 -3
- package/client/viewparts/notification-sender.ts +4 -4
- package/client/viewparts/notification-setting-let.ts +2 -2
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/notification-item.js +3 -3
- package/dist-client/viewparts/notification-item.js.map +1 -1
- package/dist-client/viewparts/notification-list.js +3 -3
- package/dist-client/viewparts/notification-list.js.map +1 -1
- package/dist-client/viewparts/notification-sender.js +4 -4
- package/dist-client/viewparts/notification-sender.js.map +1 -1
- package/dist-client/viewparts/notification-setting-let.js +2 -2
- package/dist-client/viewparts/notification-setting-let.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
|
@@ -72,7 +72,7 @@ export class NotificationItem extends LitElement {
|
|
|
72
72
|
width: var(--type-dot-size);
|
|
73
73
|
height: var(--type-dot-size);
|
|
74
74
|
border-radius: 50%;
|
|
75
|
-
margin-right: var(--
|
|
75
|
+
margin-right: var(--spacing-small);
|
|
76
76
|
}
|
|
77
77
|
[titler] * {
|
|
78
78
|
vertical-align: middle;
|
|
@@ -90,14 +90,14 @@ export class NotificationItem extends LitElement {
|
|
|
90
90
|
opacity: 1;
|
|
91
91
|
}
|
|
92
92
|
[detail] {
|
|
93
|
-
padding: var(--
|
|
93
|
+
padding: var(--spacing-small) var(--spacing-medium);
|
|
94
94
|
border-radius: var(--border-radius);
|
|
95
95
|
font-size: 0.85em;
|
|
96
96
|
}
|
|
97
97
|
span.more {
|
|
98
98
|
margin-left: 16px;
|
|
99
99
|
float: right;
|
|
100
|
-
padding: 0px var(--
|
|
100
|
+
padding: 0px var(--spacing-small) 2px var(--spacing-small);
|
|
101
101
|
border-radius: var(--border-radius);
|
|
102
102
|
font-size: 0.8em;
|
|
103
103
|
color: var(--md-sys-color-on-primary);
|
|
@@ -17,8 +17,8 @@ export class NotificationList extends connect(store)(localize(i18next)(LitElemen
|
|
|
17
17
|
display: block;
|
|
18
18
|
background-color: var(--md-sys-color-surface);
|
|
19
19
|
box-shadow: var(--box-shadow);
|
|
20
|
-
margin-right: var(--
|
|
21
|
-
padding: var(--
|
|
20
|
+
margin-right: var(--spacing-large);
|
|
21
|
+
padding: var(--spacing-medium);
|
|
22
22
|
max-height: 100%;
|
|
23
23
|
overflow-x: hidden;
|
|
24
24
|
overflow-y: auto;
|
|
@@ -57,7 +57,7 @@ export class NotificationList extends connect(store)(localize(i18next)(LitElemen
|
|
|
57
57
|
}
|
|
58
58
|
[no-notifications] {
|
|
59
59
|
margin: 0;
|
|
60
|
-
padding: var(--
|
|
60
|
+
padding: var(--spacing-large);
|
|
61
61
|
text-align: center;
|
|
62
62
|
font-size: var(--fontsize-default);
|
|
63
63
|
font-weight: bold;
|
|
@@ -19,7 +19,7 @@ export class NotificationSender extends localize(i18next)(LitElement) {
|
|
|
19
19
|
css`
|
|
20
20
|
:host {
|
|
21
21
|
display: flex;
|
|
22
|
-
padding: var(--
|
|
22
|
+
padding: var(--spacing-large);
|
|
23
23
|
background-color: var(--md-sys-color-background);
|
|
24
24
|
color: var(--md-sys-color-on-background);
|
|
25
25
|
}
|
|
@@ -31,7 +31,7 @@ export class NotificationSender extends localize(i18next)(LitElement) {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
[content] > * {
|
|
34
|
-
margin: var(--
|
|
34
|
+
margin: var(--spacing-medium);
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
[content] {
|
|
@@ -52,7 +52,7 @@ export class NotificationSender extends localize(i18next)(LitElement) {
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
md-elevated-button {
|
|
55
|
-
margin-left: var(--
|
|
55
|
+
margin-left: var(--spacing-medium);
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
label {
|
|
@@ -63,7 +63,7 @@ export class NotificationSender extends localize(i18next)(LitElement) {
|
|
|
63
63
|
|
|
64
64
|
@media screen and (max-width: 480px) {
|
|
65
65
|
:host {
|
|
66
|
-
padding: var(--
|
|
66
|
+
padding: var(--spacing-medium);
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
69
|
`
|
|
@@ -21,8 +21,8 @@ export class NotificationSettingLet extends localize(i18next)(LitElement) {
|
|
|
21
21
|
display: flex;
|
|
22
22
|
align-items: center;
|
|
23
23
|
border-bottom: var(--border-dim-color);
|
|
24
|
-
margin-bottom: var(--
|
|
25
|
-
padding-bottom: var(--
|
|
24
|
+
margin-bottom: var(--spacing-medium);
|
|
25
|
+
padding-bottom: var(--spacing-medium);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
div[info] {
|