File: inline-edit.css

package info (click to toggle)
cockpit 354-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 308,956 kB
  • sloc: javascript: 775,606; python: 40,351; ansic: 35,655; cpp: 11,117; sh: 3,511; makefile: 580; xml: 261
file content (60 lines) | stat: -rw-r--r-- 1,970 bytes parent folder | download | duplicates (8)
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;
}