GH-4193 - Updating table view structure for drag (#4194)
This commit is contained in:
parent
a30c1692ac
commit
fedcf57fb6
2 changed files with 11 additions and 11 deletions
|
@ -3,7 +3,6 @@
|
|||
.Table {
|
||||
margin-top: 16px;
|
||||
margin-left: 0 !important;
|
||||
padding: 0 20px !important;
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
flex: 1;
|
||||
|
@ -112,9 +111,9 @@
|
|||
flex-direction: row;
|
||||
color: rgb(var(--center-channel-color-rgb));
|
||||
border-right: solid 1px rgba(var(--center-channel-color-rgb), 0.08);
|
||||
border-bottom: solid 1px rgba(var(--center-channel-color-rgb), 0.08);
|
||||
border-left: 1px solid transparent;
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
box-sizing: border-box;
|
||||
padding: 8px;
|
||||
height: 44px;
|
||||
|
@ -214,21 +213,25 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
width: fit-content;
|
||||
padding-left: 12px;
|
||||
}
|
||||
|
||||
.octo-table-header,
|
||||
.octo-table-row,
|
||||
.octo-table-footer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
border-bottom: solid 1px rgba(var(--center-channel-color-rgb), 0.09);
|
||||
margin-left: 32px;
|
||||
|
||||
&.hidden {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.octo-table-row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.octo-table-header {
|
||||
@include z-index(table-header);
|
||||
position: sticky;
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
&:hover {
|
||||
background-color: rgba(var(--center-channel-color-rgb), 0.05);
|
||||
overflow: initial;
|
||||
margin-left: -60px;
|
||||
|
||||
.delete-button {
|
||||
display: block;
|
||||
|
@ -39,13 +38,10 @@
|
|||
@include z-index(table-row-action-cell);
|
||||
position: relative;
|
||||
align-items: center;
|
||||
left: 8px;
|
||||
padding: 8px;
|
||||
height: 44px;
|
||||
}
|
||||
|
||||
.octo-table-cell-btn {
|
||||
display: flex;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.title-cell {
|
||||
|
@ -58,8 +54,9 @@
|
|||
}
|
||||
|
||||
.action-cell {
|
||||
display: none;
|
||||
margin-left: 20px;
|
||||
display: flex;
|
||||
visibility: hidden;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.URLProperty:hover .Button_Copy {
|
||||
|
|
Loading…
Reference in a new issue