checkbox for grid
This commit is contained in:
parent
73f66a1843
commit
e55dc9a676
1 changed files with 33 additions and 0 deletions
|
|
@ -1441,6 +1441,39 @@
|
|||
.webbpm.ervu_dashboard ag-grid-angular .ag-root .ag-cell .ag-cell-wrapper {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.webbpm.ervu_dashboard ag-grid-angular .ag-root .ag-cell .grid-cell-checkbox {
|
||||
line-height: 1;
|
||||
}
|
||||
.webbpm.ervu_dashboard ag-grid-angular .ag-root .ag-cell input[type="checkbox"] {
|
||||
position: relative;
|
||||
width: var(--indent-medium);
|
||||
height: var(--indent-medium);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border-radius: 4px;
|
||||
background-color: var(--color-dark-20);
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
}
|
||||
.webbpm.ervu_dashboard ag-grid-angular .ag-root .ag-cell input[type="checkbox"]:checked {
|
||||
border: 1px solid var(--color-success);
|
||||
background-color: var(--color-primary-5);
|
||||
}
|
||||
.webbpm.ervu_dashboard ag-grid-angular .ag-root .ag-cell input[type="checkbox"]:checked::before {
|
||||
position: absolute;
|
||||
content: url('../img/svg/mark.svg');
|
||||
top: 1px;
|
||||
left: 1px;
|
||||
}
|
||||
.webbpm.ervu_dashboard ag-grid-angular .ag-root .ag-cell input[type="checkbox"][disabled] {
|
||||
opacity: 0.65;
|
||||
}
|
||||
.webbpm.ervu_dashboard ag-grid-angular .ag-root .ag-cell input[type="checkbox"][disabled]:checked {
|
||||
border-color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
.webbpm.ervu_dashboard ag-grid-angular .ag-overlay-loading-center {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue