@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.
@@ -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(--margin-narrow);
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(--padding-narrow) var(--padding-default);
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(--padding-narrow) 2px var(--padding-narrow);
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(--margin-wide);
21
- padding: var(--padding-default);
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(--padding-wide);
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(--padding-wide);
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(--margin-default);
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(--padding-default);
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(--padding-default);
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(--margin-default);
25
- padding-bottom: var(--padding-default);
24
+ margin-bottom: var(--spacing-medium);
25
+ padding-bottom: var(--spacing-medium);
26
26
  }
27
27
 
28
28
  div[info] {