Hides pause an cancel buttons for bg process temporally. Little css adjustments.
This commit is contained in:
parent
c9d17f59cb
commit
8e4a252760
|
@ -396,10 +396,6 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
img.table-thumb {
|
|
||||||
border-radius: 50px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.total-items-header {
|
.total-items-header {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
|
@ -140,7 +140,7 @@
|
||||||
class="icon has-text-success loading-icon">
|
class="icon has-text-success loading-icon">
|
||||||
<div class="control has-icons-right is-loading is-clearfix" />
|
<div class="control has-icons-right is-loading is-clearfix" />
|
||||||
</span>
|
</span>
|
||||||
<span
|
<!-- <span
|
||||||
v-if="bgProcess.done <= 0"
|
v-if="bgProcess.done <= 0"
|
||||||
class="icon has-text-gray action-icon"
|
class="icon has-text-gray action-icon"
|
||||||
@click="pauseProcess(index)">
|
@click="pauseProcess(index)">
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
class="icon has-text-gray action-icon"
|
class="icon has-text-gray action-icon"
|
||||||
@click="pauseProcess(index)">
|
@click="pauseProcess(index)">
|
||||||
<i class="mdi mdi-18px mdi-close-circle-outline"/>
|
<i class="mdi mdi-18px mdi-close-circle-outline"/>
|
||||||
</span>
|
</span> -->
|
||||||
<span
|
<span
|
||||||
v-tooltip="{
|
v-tooltip="{
|
||||||
content: $i18n.get('label_process_completed'),
|
content: $i18n.get('label_process_completed'),
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
</span>
|
</span>
|
||||||
<p>{{ bgProcess.name ? bgProcess.name : $i18n.get('label_unamed_process') }}</p>
|
<p>{{ bgProcess.name ? bgProcess.name : $i18n.get('label_unamed_process') }}</p>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<!-- <span
|
||||||
v-if="bgProcess.done <= 0"
|
v-if="bgProcess.done <= 0"
|
||||||
class="icon has-text-gray action-icon"
|
class="icon has-text-gray action-icon"
|
||||||
@click="pauseProcess(index)">
|
@click="pauseProcess(index)">
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
class="icon has-text-gray action-icon"
|
class="icon has-text-gray action-icon"
|
||||||
@click="pauseProcess(index)">
|
@click="pauseProcess(index)">
|
||||||
<i class="mdi mdi-18px mdi-close-circle-outline"/>
|
<i class="mdi mdi-18px mdi-close-circle-outline"/>
|
||||||
</span>
|
</span> -->
|
||||||
<span
|
<span
|
||||||
v-if="bgProcess.done > 0"
|
v-if="bgProcess.done > 0"
|
||||||
class="icon has-text-success">
|
class="icon has-text-success">
|
||||||
|
|
|
@ -1266,11 +1266,6 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
|
||||||
margin-bottom: $page-small-top-padding;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-control-item {
|
.search-control-item {
|
||||||
|
|
|
@ -455,7 +455,7 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
z-index: 999999;
|
z-index: 999999;
|
||||||
background-color: $turquoise1;
|
background-color: $gray1;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 65px;
|
height: 65px;
|
||||||
|
|
||||||
|
|
|
@ -129,6 +129,10 @@ export default {
|
||||||
|
|
||||||
.search-control {
|
.search-control {
|
||||||
|
|
||||||
|
@media screen and (min-width: 768px) {
|
||||||
|
margin-bottom: $page-small-top-padding;
|
||||||
|
}
|
||||||
|
|
||||||
.gray-icon, .gray-icon .icon {
|
.gray-icon, .gray-icon .icon {
|
||||||
color: $gray4 !important;
|
color: $gray4 !important;
|
||||||
i::before {
|
i::before {
|
||||||
|
|
Loading…
Reference in New Issue