fix: datatable cell edit box shadow

This commit is contained in:
prssanna 2020-11-11 17:39:37 +05:30
parent 72aab54796
commit 3b5a1a6c38
2 changed files with 12 additions and 8 deletions

View file

@ -78,6 +78,10 @@
input {
font-size: inherit;
height: 27px;
&:focus {
box-shadow: none;
}
}
}
@ -129,14 +133,6 @@ table td.dt-cell {
position: relative;
}
.report-view {
.dt-row:last-child:not(.dt-row-filter) {
.dt-cell {
border-bottom: 1px solid var(--border-color);
}
}
}
.report-action-checkbox {
margin: 0;
margin-left: 10px;

View file

@ -81,6 +81,14 @@
overflow: auto;
}
.report-view {
.dt-row:last-child:not(.dt-row-filter) {
.dt-cell {
border-bottom: 1px solid var(--border-color);
}
}
}
.chart-wrapper {
border-bottom: 1px solid $border-color;
}