1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
:root {
--pf-v6-global--palette--blue-50: #def3ff;
--pf-v6-global--palette--blue-200: #7dc3e8;
}
tr.pf-v6-c-table__editable-row:hover,
tr.pf-v6-c-table__editable-row.pf-m-editing {
background: var(--pf-v6-global--palette--blue-50) !important;
}
tr.pf-v6-c-table__editable-row:hover td,
tr.pf-v6-c-table__editable-row.pf-m-editing td {
border-bottom: 1px solid var(--pf-v6-global--palette--blue-200) !important;
border-top: 1px solid var(--pf-v6-global--palette--blue-200) !important;
}
tr.pf-v6-c-table__editable-row:hover td:first-child,
tr.pf-v6-c-table__editable-row.pf-m-editing td:first-child {
border-left: 1px solid var(--pf-v6-global--palette--blue-200) !important;
}
tr.pf-v6-c-table__editable-row:hover td:last-child,
tr.pf-v6-c-table__editable-row.pf-m-editing td:last-child {
border-right: 1px solid var(--pf-v6-global--palette--blue-200) !important;
}
tr.pf-v6-c-table__editable-row.pf-m-table-editing-first-row {
border-top: 3px solid var(--pf-v6-global--palette--blue-200) !important;
}
tr.pf-v6-c-table__editable-row.pf-m-table-editing-last-row {
border-bottom: 3px solid var(--pf-v6-global--palette--blue-200) !important;
}
tr.pf-v6-c-table__editable-row input {
display: block;
background: var(--pf-v6-global--BackgroundColor--100);
border: 1px solid var(--pf-v6-global--BorderColor--100);
}
tr.pf-v6-c-table__editable-row input:hover {
cursor: text;
}
.pf-v6-c-table__inline-edit-buttons {
position: fixed;
z-index: 1000;
padding: 4px;
margin: 0;
background: var(--pf-v6-global--palette--blue-50);
border: 1px solid var(--pf-v6-global--palette--blue-200);
}
.pf-v6-c-table__inline-edit-buttons.pf-m-top {
border-bottom: 0;
}
.pf-v6-c-table__inline-edit-buttons.pf-m-bottom {
border-top: 0;
}
.pf-v6-c-table__inline-edit-buttons.pf-m-bold {
border-width: 3px;
}
.pf-v6-c-table__inline-edit-buttons button {
margin-left: 4px;
}
.pf-v6-c-table__inline-edit-buttons button:first-child {
margin-left: 0;
}
|