@cooperco/cooper-component-library 0.1.100 → 0.1.102
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/dist/cms/0085-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/cms/0086-add-background-image-to-carousel.cjs +24 -0
- package/dist/cms/0087-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/cms/containerModule.query.ts +3 -0
- package/dist/cms/contentModule.query.ts +1 -0
- package/dist/cms/contentful/migrations/scripts/0085-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/cms/contentful/migrations/scripts/0086-add-background-image-to-carousel.cjs +24 -0
- package/dist/cms/contentful/migrations/scripts/0087-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/cms/contentful/queries/containerModule.query.js +3 -0
- package/dist/cms/contentful/queries/containerModule.query.ts +3 -0
- package/dist/cms/contentful/queries/contentModule.query.js +1 -0
- package/dist/cms/contentful/queries/contentModule.query.ts +1 -0
- package/dist/cms/migrations/scripts/0085-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/cms/migrations/scripts/0086-add-background-image-to-carousel.cjs +24 -0
- package/dist/cms/migrations/scripts/0087-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/cms/queries/containerModule.query.ts +3 -0
- package/dist/cms/queries/contentModule.query.ts +1 -0
- package/dist/cms/scripts/0085-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/cms/scripts/0086-add-background-image-to-carousel.cjs +24 -0
- package/dist/cms/scripts/0087-add-table-highlight-to-content-module.cjs +30 -0
- package/dist/lib/component-lib.js +1861 -1796
- package/dist/lib/component-lib.umd.cjs +23 -23
- package/dist/lib/css/main.css +16 -8
- package/dist/lib/style.css +1 -1
- package/dist/types/src/components/ContentModule/ContentModule.d.ts +6 -0
- package/package.json +1 -1
package/dist/lib/css/main.css
CHANGED
|
@@ -121,8 +121,22 @@ div {
|
|
|
121
121
|
text-align: left;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
|
|
125
|
+
.content-module-body-copy table .table-highlighted-cell {
|
|
126
|
+
background-color: var(--hydrangea) !important;
|
|
127
|
+
color: var(--iris) !important;
|
|
128
|
+
font-family: 'GT-Walsheim-Bd';
|
|
129
|
+
font-weight: 700 !important;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.content-module-body-copy table .table-empty-row,
|
|
133
|
+
.content-module-body-copy table .table-empty-column {
|
|
134
|
+
background-color: var(--iris) !important;
|
|
135
|
+
/* keep text readable; override color if necessary */
|
|
136
|
+
color: white !important;
|
|
137
|
+
font-family: 'GT-Walsheim-Bd';
|
|
138
|
+
font-weight: 700 !important;
|
|
139
|
+
border-bottom: 1px solid rgb(0, 0, 0);
|
|
126
140
|
}
|
|
127
141
|
|
|
128
142
|
.content-module-body-copy table th:not(:last-child) {
|
|
@@ -148,9 +162,6 @@ div {
|
|
|
148
162
|
text-align: left;
|
|
149
163
|
}
|
|
150
164
|
|
|
151
|
-
.content-module-body-copy table td:nth-child(2) {
|
|
152
|
-
background-color: var(--hydrangea);
|
|
153
|
-
}
|
|
154
165
|
|
|
155
166
|
.content-module-body-copy table td:only-child {
|
|
156
167
|
background-color: var(--iris);
|
|
@@ -190,9 +201,6 @@ div {
|
|
|
190
201
|
--bullet-color: var(--rosemary);
|
|
191
202
|
}
|
|
192
203
|
|
|
193
|
-
.content-module-body-copy table td:nth-child(2) {
|
|
194
|
-
--bullet-color: var(--iris);
|
|
195
|
-
}
|
|
196
204
|
|
|
197
205
|
.content-module-body-copy table td:nth-child(3),
|
|
198
206
|
.content-module-body-copy table td:nth-child(4) {
|