Kdots: Some nextmatch styling

This commit is contained in:
nathan 2024-07-09 14:50:51 -06:00
parent f487587e60
commit f809a5a7a6
2 changed files with 63 additions and 15 deletions

View File

@ -302,8 +302,21 @@ div.et2_nextmatch > div:not(:first-child) {
} }
div.et2_nextmatch .egwGridView_outer { div.et2_nextmatch .egwGridView_outer {
height: 100%; height: 100%;
border-collapse: collapse;
} }
div.et2_nextmatch .egwGridView_outer thead tr th.optcol span.selectcols { div.et2_nextmatch .egwGridView_outer thead > tr {
background-color: var(--sl-color-neutral-50);
border-bottom: var(--sl-panel-border-width) solid var(--sl-color-neutral-200);
}
div.et2_nextmatch .egwGridView_outer thead > tr th {
border-right: var(--sl-panel-border-width) solid var(--sl-color-neutral-200);
}
div.et2_nextmatch .egwGridView_outer thead > tr th div.innerContainer {
max-height: 10em;
overflow-x: hidden;
overflow-y: auto;
}
div.et2_nextmatch .egwGridView_outer thead > tr th.optcol span.selectcols {
height: 9px; height: 9px;
padding: 4px 14px 0 2px; padding: 4px 14px 0 2px;
margin-top: 4px; margin-top: 4px;
@ -313,8 +326,17 @@ div.et2_nextmatch .egwGridView_outer thead tr th.optcol span.selectcols {
display: inline-block; display: inline-block;
background-position: top; background-position: top;
} }
.egwGridView_scrollarea { div.et2_nextmatch .egwGridView_outer .egwGridView_scrollarea {
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
} }
div.et2_nextmatch .egwGridView_outer .egwGridView_scrollarea table {
border-collapse: collapse;
}
div.et2_nextmatch .egwGridView_outer .egwGridView_scrollarea table tr {
border-bottom: var(--sl-panel-border-width) solid var(--sl-color-neutral-200);
}
div.et2_nextmatch .egwGridView_outer .egwGridView_scrollarea table tr.selected {
background-color: var(--highlight-background-color);
}
/*** END WIDGETS ***/ /*** END WIDGETS ***/

View File

@ -352,24 +352,50 @@ div.et2_nextmatch {
.egwGridView_outer { .egwGridView_outer {
height: 100%; height: 100%;
border-collapse: collapse;
thead tr th.optcol span.selectcols { thead > tr {
height: 9px; background-color: var(--sl-color-neutral-50);
padding: 4px 14px 0 2px; border-bottom: var(--sl-panel-border-width) solid var(--sl-color-neutral-200);
margin-top: 4px;
background-image: url(../../../api/templates/default/images/selectcols.svg); th {
background-repeat: no-repeat; border-right: var(--sl-panel-border-width) solid var(--sl-color-neutral-200);
background-size: 10px 10px;
display: inline-block; div.innerContainer {
background-position: top; max-height: 10em;
overflow-x: hidden;
overflow-y: auto;
}
}
th.optcol span.selectcols {
height: 9px;
padding: 4px 14px 0 2px;
margin-top: 4px;
background-image: url(../../../api/templates/default/images/selectcols.svg);
background-repeat: no-repeat;
background-size: 10px 10px;
display: inline-block;
background-position: top;
}
}
.egwGridView_scrollarea {
overflow-x: hidden;
overflow-y: auto;
table {
border-collapse: collapse;
tr {
border-bottom: var(--sl-panel-border-width) solid var(--sl-color-neutral-200);
}
tr.selected {
background-color: var(--highlight-background-color);
}
}
} }
} }
} }
.egwGridView_scrollarea {
overflow-x: hidden;
overflow-y: auto;
}
/*** END WIDGETS ***/ /*** END WIDGETS ***/