@energycap/components 0.38.4-ECAP-19826-email-table-styles.20231010-1542 → 0.38.4
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 -55
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,47 +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
|
-
}
|
143
|
-
|
144
|
-
th {
|
145
|
-
font-weight: normal;
|
146
|
-
vertical-align: middle;
|
147
|
-
color: $ec-color-secondary-dark;
|
148
|
-
border-bottom: 1px solid $ec-border-color-dark;
|
149
|
-
}
|
150
|
-
|
151
|
-
td {
|
152
|
-
border-top: 1px solid $ec-border-color;
|
153
|
-
vertical-align: top;
|
154
|
-
}
|
155
|
-
|
156
|
-
th:first-child,
|
157
|
-
td:first-child {
|
158
|
-
padding-left: 0;
|
159
|
-
}
|
160
|
-
|
161
|
-
th:last-child,
|
162
|
-
td:last-child {
|
163
|
-
padding-right: 0;
|
164
|
-
}
|
165
|
-
|
166
|
-
tr:first-child td {
|
167
|
-
border-top: 0;
|
168
|
-
}
|
169
|
-
}
|
170
122
|
|
171
123
|
img {
|
172
124
|
max-width: 100%;
|
@@ -175,10 +127,10 @@ $ec-color-danger: rgb(197, 1, 36);
|
|
175
127
|
|
176
128
|
hr {
|
177
129
|
height: 0;
|
178
|
-
border: 0;
|
130
|
+
border-bottom: 0;
|
179
131
|
overflow: visible;
|
180
132
|
margin: 16px 0;
|
181
|
-
border-
|
133
|
+
border-color: $ec-border-color;
|
182
134
|
}
|
183
135
|
|
184
136
|
.text-left {
|
@@ -206,10 +158,6 @@ $ec-color-danger: rgb(197, 1, 36);
|
|
206
158
|
color: $ec-color-secondary-dark;
|
207
159
|
font-size: 10px;
|
208
160
|
}
|
209
|
-
|
210
|
-
.font-color-danger {
|
211
|
-
color: $ec-color-danger;
|
212
|
-
}
|
213
161
|
}
|
214
162
|
|
215
163
|
@mixin logos {
|