x === docObject)]}
- class="listGrid"
- class:mListGridChecked={selectedObjectIdsSet.has(docObject._id)}
+ class="listGrid antiList__row"
+ class:checking={selectedObjectIdsSet.has(docObject._id)}
class:mListGridFixed={selectedRowIndex === combinedGroupedIssues.findIndex((x) => x === docObject)}
class:mListGridSelected={selectedRowIndex === combinedGroupedIssues.findIndex((x) => x === docObject)}
on:contextmenu|preventDefault={(event) =>
@@ -195,26 +206,33 @@
on:mouseover={() => handleRowFocused(docObject)}
>
+
+
+
+ {
+ onObjectChecked([docObject], event.detail)
+ }}
+ />
+
+
+
+
{#each itemModels as attributeModel, attributeModelIndex}
{#if attributeModelIndex === 0}
-
-
-
- {
- onObjectChecked([docObject], event.detail)
- }}
- />
-
-
-
-
-
+
+
{:else if attributeModelIndex === 1}
@@ -299,28 +317,13 @@
color: var(--theme-caption-color);
border-bottom: 1px solid var(--theme-button-border-hovered);
- &.mListGridChecked {
+ &.checking {
background-color: var(--theme-table-bg-hover);
-
- .eListGridCheckBox {
- opacity: 1;
- }
}
&.mListGridSelected {
background-color: var(--menu-bg-select);
}
-
- .eListGridCheckBox {
- display: flex;
- align-items: center;
- justify-content: center;
- opacity: 0;
-
- &:hover {
- opacity: 1;
- }
- }
}
.filler {
diff --git a/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte b/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte
index c8ac6cfc86..48cc50adad 100644
--- a/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte
+++ b/plugins/tracker-resources/src/components/issues/edit/EditIssue.svelte
@@ -13,7 +13,7 @@
// limitations under the License.
-->