@linzjs/step-ag-grid 17.5.0 → 17.5.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/dist/GridTheme.scss +15 -0
- package/package.json +1 -1
- package/src/styles/GridTheme.scss +15 -0
package/dist/GridTheme.scss
CHANGED
|
@@ -194,4 +194,19 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
194
194
|
.ag-cell-wrapper {
|
|
195
195
|
width: 100%;
|
|
196
196
|
}
|
|
197
|
+
|
|
198
|
+
.ag-row-highlight-above::after, .ag-row-highlight-below::after {
|
|
199
|
+
content: '';
|
|
200
|
+
height: 2px;
|
|
201
|
+
background-color: transparent;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.ag-row-highlight-above::after{
|
|
205
|
+
border-top: 2px dashed lui.$andrea;
|
|
206
|
+
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.ag-row-highlight-below::after {
|
|
210
|
+
border-bottom: 2px dashed lui.$andrea;
|
|
211
|
+
}
|
|
197
212
|
}
|
package/package.json
CHANGED
|
@@ -194,4 +194,19 @@ $grid-base-font-size: calc(#{lui.$base-font-size} - 1px);
|
|
|
194
194
|
.ag-cell-wrapper {
|
|
195
195
|
width: 100%;
|
|
196
196
|
}
|
|
197
|
+
|
|
198
|
+
.ag-row-highlight-above::after, .ag-row-highlight-below::after {
|
|
199
|
+
content: '';
|
|
200
|
+
height: 2px;
|
|
201
|
+
background-color: transparent;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.ag-row-highlight-above::after{
|
|
205
|
+
border-top: 2px dashed lui.$andrea;
|
|
206
|
+
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.ag-row-highlight-below::after {
|
|
210
|
+
border-bottom: 2px dashed lui.$andrea;
|
|
211
|
+
}
|
|
197
212
|
}
|