Web: move styling of 'clickable' table rows to separate class

Instead of doing this styling per table, just add a class that indicates
it has clickable rows.
This commit is contained in:
Sybren A. Stüvel 2022-05-30 18:29:33 +02:00
parent 81501ea41b
commit 723855a9d5
3 changed files with 3 additions and 3 deletions

View File

@ -368,7 +368,7 @@ ul.status-filter-bar .status-filter-indicator .indicator {
background-color: transparent;
}
.job-list .tabulator-row, .task-list .tabulator-row {
.with-clickable-row .tabulator-row {
cursor: pointer;
}

View File

@ -7,7 +7,7 @@
:activeStatuses="shownStatuses"
@click="toggleStatusFilter"
/>
<div class="job-list" id="flamenco_job_list"></div>
<div class="job-list with-clickable-row" id="flamenco_job_list"></div>
</div>
</template>

View File

@ -6,7 +6,7 @@
@click="toggleStatusFilter"
/>
<div class="tabulator-container">
<div class="task-list" id="flamenco_task_list"></div>
<div class="task-list with-clickable-row" id="flamenco_task_list"></div>
</div>
</template>