-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathinline-edit.css
More file actions
60 lines (58 loc) · 1.92 KB
/
inline-edit.css
File metadata and controls
60 lines (58 loc) · 1.92 KB
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-v5-global--palette--blue-50: #def3ff;
--pf-v5-global--palette--blue-200: #7dc3e8;
}
tr.pf-v5-c-table__editable-row:hover,
tr.pf-v5-c-table__editable-row.pf-m-editing {
background: var(--pf-v5-global--palette--blue-50) !important;
}
tr.pf-v5-c-table__editable-row:hover td,
tr.pf-v5-c-table__editable-row.pf-m-editing td {
border-bottom: 1px solid var(--pf-v5-global--palette--blue-200) !important;
border-top: 1px solid var(--pf-v5-global--palette--blue-200) !important;
}
tr.pf-v5-c-table__editable-row:hover td:first-child,
tr.pf-v5-c-table__editable-row.pf-m-editing td:first-child {
border-left: 1px solid var(--pf-v5-global--palette--blue-200) !important;
}
tr.pf-v5-c-table__editable-row:hover td:last-child,
tr.pf-v5-c-table__editable-row.pf-m-editing td:last-child {
border-right: 1px solid var(--pf-v5-global--palette--blue-200) !important;
}
tr.pf-v5-c-table__editable-row.pf-m-table-editing-first-row {
border-top: 3px solid var(--pf-v5-global--palette--blue-200) !important;
}
tr.pf-v5-c-table__editable-row.pf-m-table-editing-last-row {
border-bottom: 3px solid var(--pf-v5-global--palette--blue-200) !important;
}
tr.pf-v5-c-table__editable-row input {
display: block;
background: var(--pf-v5-global--BackgroundColor--100);
border: 1px solid var(--pf-v5-global--BorderColor--100);
}
tr.pf-v5-c-table__editable-row input:hover {
cursor: text;
}
.pf-v5-c-table__inline-edit-buttons {
position: fixed;
z-index: 1000;
padding: 4px;
margin: 0;
background: var(--pf-v5-global--palette--blue-50);
border: 1px solid var(--pf-v5-global--palette--blue-200);
}
.pf-v5-c-table__inline-edit-buttons.pf-m-top {
border-bottom: 0;
}
.pf-v5-c-table__inline-edit-buttons.pf-m-bottom {
border-top: 0;
}
.pf-v5-c-table__inline-edit-buttons.pf-m-bold {
border-width: 3px;
}
.pf-v5-c-table__inline-edit-buttons button {
margin-left: 4px;
}
.pf-v5-c-table__inline-edit-buttons button:first-child {
margin-left: 0;
}