Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
.pf-c-console {
.pf-v5-c-console {
display: grid;
grid-template-areas:
'actions-main actions-extra'
'main main';
row-gap: var(--pf-v5-global--spacer--md);
}
.pf-c-console__actions {
.pf-v5-c-console__actions {
grid-area: actions-main;
display: flex;
}
.pf-c-console__actions > div {
.pf-v5-c-console__actions > div {
margin-right: var(--pf-v5-global--spacer--sm);
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.pf-c-console__desktop-viewer {
.pf-v5-c-console__desktop-viewer {
grid-area: main;
display: grid;
gap: var(--pf-v5-global--spacer--md);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
.pf-c-console__serial {
.pf-v5-c-console__serial {
grid-area: main;
}
.pf-c-console__actions-serial {
.pf-v5-c-console__actions-serial {
grid-area: actions-extra;
display: flex;
justify-content: flex-end;
}
.pf-c-console__actions-serial > button {
.pf-v5-c-console__actions-serial > button {
margin-right: var(--pf-v5-global--spacer--sm);
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.pf-c-console__vnc {
.pf-v5-c-console__vnc {
grid-area: main;
}
.pf-c-console__actions-vnc {
.pf-v5-c-console__actions-vnc {
grid-area: actions-extra;
display: flex;
flex-wrap: wrap;
Expand Down
60 changes: 30 additions & 30 deletions packages/react-styles/src/css/components/Table/inline-edit.css
Original file line number Diff line number Diff line change
@@ -1,60 +1,60 @@
:root {
--pf-v5-global--Blue--50: #def3ff;
--pf-v5-global--Blue--200: #7dc3e8;
--pf-v5-global--palette--blue-50: #def3ff;
--pf-v5-global--palette--blue-200: #7dc3e8;
}

tr.pf-c-table__editable-row:hover,
tr.pf-c-table__editable-row.pf-m-editing {
background: var(--pf-v5-global--Blue--50) !important;
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-c-table__editable-row:hover td,
tr.pf-c-table__editable-row.pf-m-editing td {
border-bottom: 1px solid var(--pf-v5-global--Blue--200) !important;
border-top: 1px solid var(--pf-v5-global--Blue--200) !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-c-table__editable-row:hover td:first-child,
tr.pf-c-table__editable-row.pf-m-editing td:first-child {
border-left: 1px solid var(--pf-v5-global--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-c-table__editable-row:hover td:last-child,
tr.pf-c-table__editable-row.pf-m-editing td:last-child {
border-right: 1px solid var(--pf-v5-global--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-c-table__editable-row.pf-m-table-editing-first-row {
border-top: 3px solid var(--pf-v5-global--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-c-table__editable-row.pf-m-table-editing-last-row {
border-bottom: 3px solid var(--pf-v5-global--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-c-table__editable-row input {
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);
border: 1px solid var(--pf-v5-global--BorderColor--100);
}
tr.pf-c-table__editable-row input:hover {
tr.pf-v5-c-table__editable-row input:hover {
cursor: text;
}

.pf-c-table__inline-edit-buttons {
.pf-v5-c-table__inline-edit-buttons {
position: fixed;
z-index: 1000;
padding: 4px;
margin: 0;
background: var(--pf-v5-global--Blue--50);
border: 1px solid var(--pf-v5-global--Blue--200);
background: var(--pf-v5-global--palette--blue-50);
border: 1px solid var(--pf-v5-global--palette--blue-200);
}
.pf-c-table__inline-edit-buttons.pf-m-top {
.pf-v5-c-table__inline-edit-buttons.pf-m-top {
border-bottom: 0;
}
.pf-c-table__inline-edit-buttons.pf-m-bottom {
.pf-v5-c-table__inline-edit-buttons.pf-m-bottom {
border-top: 0;
}
.pf-c-table__inline-edit-buttons.pf-m-bold {
.pf-v5-c-table__inline-edit-buttons.pf-m-bold {
border-width: 3px;
}
.pf-c-table__inline-edit-buttons button {
.pf-v5-c-table__inline-edit-buttons button {
margin-left: 4px;
}
.pf-c-table__inline-edit-buttons button:first-child {
.pf-v5-c-table__inline-edit-buttons button:first-child {
margin-left: 0;
}