mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-22 14:54:38 +08:00
Merge pull request #2432 from aignatov-bio/ai-sci-4304-fix-assigned-task-position
Fix assigned tasks position [SCI-4304]
This commit is contained in:
commit
a0015fe184
1 changed files with 20 additions and 36 deletions
|
@ -6,13 +6,6 @@
|
||||||
.repository-table {
|
.repository-table {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
|
|
||||||
&.editing {
|
|
||||||
tbody>tr.blocked {
|
|
||||||
opacity: .4;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.dataTables_filter {
|
.dataTables_filter {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
@ -32,28 +25,28 @@
|
||||||
// Assigned
|
// Assigned
|
||||||
|
|
||||||
.assigned-column {
|
.assigned-column {
|
||||||
|
padding: 1px 8px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
.fas {
|
||||||
|
line-height: 35px;
|
||||||
|
text-align: center;
|
||||||
|
width: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
.repository-row-edit-icon {
|
.repository-row-edit-icon {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: none;
|
display: none;
|
||||||
width: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.repository-row-lock-icon {
|
|
||||||
width: 30px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.assign-counter-container {
|
.assign-counter-container {
|
||||||
border-radius: $border-radius-tag;
|
border-radius: $border-radius-tag;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: calc(100% - 2px);
|
line-height: 35px;
|
||||||
margin-left: 30px;
|
|
||||||
padding-top: 7px;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 1px;
|
right: 0;
|
||||||
width: calc(100% - 38px);
|
width: calc(100% - 40px);
|
||||||
|
|
||||||
.assign-counter {
|
.assign-counter {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
@ -69,7 +62,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.circle-icon {
|
.circle-icon {
|
||||||
margin-left: 30px;
|
margin: 9px 30px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -206,40 +199,31 @@
|
||||||
.repository-row-edit-icon {
|
.repository-row-edit-icon {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.assign-counter-container,
|
|
||||||
.circle-icon {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.editing {
|
.editing {
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr[data-editable=false] {
|
|
||||||
.assign-counter-container {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
table[data-editable=false] {
|
|
||||||
.assign-counter-container {
|
|
||||||
margin-left: 30px !important;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&.editing {
|
&.editing {
|
||||||
tbody {
|
tbody {
|
||||||
|
tr.blocked {
|
||||||
|
opacity: .4;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
tr:hover {
|
tr:hover {
|
||||||
.assigned-column {
|
.assigned-column {
|
||||||
.repository-row-edit-icon {
|
.repository-row-edit-icon {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.assign-counter-container,
|
.assign-counter-container {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
.circle-icon {
|
.circle-icon {
|
||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue