@energycap/components 0.38.4-ECAP-19826-email-table-styles.20231010-1023 → 0.38.4-ECAP-19739-fix-page-view-footer-z-index.20231010-1329
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/energycap-email.min.css +1 -1
- package/esm2020/lib/shared/page/page-view/page-view.component.mjs +2 -2
- package/fesm2015/energycap-components.mjs +2 -2
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +2 -2
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/email/_email-base.scss +3 -58
package/package.json
CHANGED
@@ -4,11 +4,9 @@ $ec-color-primary-dark: rgb(26, 26, 35);
|
|
4
4
|
$ec-color-secondary-dark: rgba(26, 26, 35, .66);
|
5
5
|
$ec-color-interactive: rgb(0, 132, 169);
|
6
6
|
$ec-background-color: rgb(255, 255, 255);
|
7
|
-
$ec-border-color:
|
8
|
-
$ec-border-color-dark: #383840;
|
7
|
+
$ec-border-color: rgba(26, 26, 35, .18);
|
9
8
|
$ec-font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
10
9
|
$green-3: #cfd856;
|
11
|
-
$ec-color-danger: rgb(197, 1, 36);
|
12
10
|
|
13
11
|
@mixin body {
|
14
12
|
font-size: 14px;
|
@@ -67,11 +65,6 @@ $ec-color-danger: rgb(197, 1, 36);
|
|
67
65
|
text-decoration: none;
|
68
66
|
background-color: transparent;
|
69
67
|
}
|
70
|
-
|
71
|
-
th,
|
72
|
-
td {
|
73
|
-
text-align: left;
|
74
|
-
}
|
75
68
|
|
76
69
|
a:hover {
|
77
70
|
text-decoration: underline;
|
@@ -126,50 +119,6 @@ $ec-color-danger: rgb(197, 1, 36);
|
|
126
119
|
text-align: center;
|
127
120
|
border-radius: 6px;
|
128
121
|
}
|
129
|
-
|
130
|
-
.email-table {
|
131
|
-
width: 100%;
|
132
|
-
border-spacing: 0;
|
133
|
-
border-collapse: separate;
|
134
|
-
font-size: 12px;
|
135
|
-
margin-bottom: 16px;
|
136
|
-
|
137
|
-
th,
|
138
|
-
td {
|
139
|
-
height: 32px;
|
140
|
-
line-height: 16px;
|
141
|
-
padding: 8px;
|
142
|
-
overflow: hidden;
|
143
|
-
text-overflow: ellipsis;
|
144
|
-
white-space: nowrap;
|
145
|
-
}
|
146
|
-
|
147
|
-
th {
|
148
|
-
font-weight: normal;
|
149
|
-
vertical-align: middle;
|
150
|
-
color: $ec-color-secondary-dark;
|
151
|
-
border-bottom: 1px solid $ec-border-color-dark;
|
152
|
-
}
|
153
|
-
|
154
|
-
td {
|
155
|
-
border-top: 1px solid $ec-border-color;
|
156
|
-
vertical-align: top;
|
157
|
-
}
|
158
|
-
|
159
|
-
th:first-child,
|
160
|
-
td:first-child {
|
161
|
-
padding-left: 0;
|
162
|
-
}
|
163
|
-
|
164
|
-
th:last-child,
|
165
|
-
td:last-child {
|
166
|
-
padding-right: 0;
|
167
|
-
}
|
168
|
-
|
169
|
-
tr:first-child td {
|
170
|
-
border-top: 0;
|
171
|
-
}
|
172
|
-
}
|
173
122
|
|
174
123
|
img {
|
175
124
|
max-width: 100%;
|
@@ -178,10 +127,10 @@ $ec-color-danger: rgb(197, 1, 36);
|
|
178
127
|
|
179
128
|
hr {
|
180
129
|
height: 0;
|
181
|
-
border: 0;
|
130
|
+
border-bottom: 0;
|
182
131
|
overflow: visible;
|
183
132
|
margin: 16px 0;
|
184
|
-
border-
|
133
|
+
border-color: $ec-border-color;
|
185
134
|
}
|
186
135
|
|
187
136
|
.text-left {
|
@@ -209,10 +158,6 @@ $ec-color-danger: rgb(197, 1, 36);
|
|
209
158
|
color: $ec-color-secondary-dark;
|
210
159
|
font-size: 10px;
|
211
160
|
}
|
212
|
-
|
213
|
-
.font-color-danger {
|
214
|
-
color: $ec-color-danger;
|
215
|
-
}
|
216
161
|
}
|
217
162
|
|
218
163
|
@mixin logos {
|