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:
parent
81501ea41b
commit
723855a9d5
@ -368,7 +368,7 @@ ul.status-filter-bar .status-filter-indicator .indicator {
|
|||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.job-list .tabulator-row, .task-list .tabulator-row {
|
.with-clickable-row .tabulator-row {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
:activeStatuses="shownStatuses"
|
:activeStatuses="shownStatuses"
|
||||||
@click="toggleStatusFilter"
|
@click="toggleStatusFilter"
|
||||||
/>
|
/>
|
||||||
<div class="job-list" id="flamenco_job_list"></div>
|
<div class="job-list with-clickable-row" id="flamenco_job_list"></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
@click="toggleStatusFilter"
|
@click="toggleStatusFilter"
|
||||||
/>
|
/>
|
||||||
<div class="tabulator-container">
|
<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>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user