@burh/nuxt-core 1.0.278 → 1.0.280
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
<div class="bg-white content-right tabs ">
|
|
3
3
|
<el-tabs
|
|
4
4
|
:class="active"
|
|
5
|
-
class="mt-3
|
|
5
|
+
class="mt-3 handle-icon-color"
|
|
6
6
|
v-model="active"
|
|
7
7
|
>
|
|
8
|
-
<el-tab-pane class="history" name="history">
|
|
8
|
+
<el-tab-pane class="history ml-2" name="history">
|
|
9
9
|
<span class="tab__icon-pane" slot="label">
|
|
10
10
|
<img
|
|
11
11
|
class="img__icon-pane img__icon--history"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
</p>
|
|
32
32
|
</el-tab-pane>
|
|
33
33
|
|
|
34
|
-
<el-tab-pane name="notes" v-if="isNotesActived">
|
|
34
|
+
<el-tab-pane name="notes" class="ml-2" v-if="isNotesActived">
|
|
35
35
|
<span class="tab__icon-pane" slot="label">
|
|
36
36
|
<img
|
|
37
37
|
class="img__icon-pane img__icon--notes"
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
</div>
|
|
97
97
|
</el-tab-pane>
|
|
98
98
|
|
|
99
|
-
<el-tab-pane name="documents">
|
|
99
|
+
<el-tab-pane name="documents" class="ml-2">
|
|
100
100
|
<span class="tab__icon-pane" slot="label">
|
|
101
101
|
<img
|
|
102
102
|
class="img__icon-pane img__icon--documents"
|
|
@@ -226,7 +226,7 @@ export default {
|
|
|
226
226
|
acceptedFiles: 'image/*, application/pdf',
|
|
227
227
|
},
|
|
228
228
|
isLocked: !this.companyHasProduct(
|
|
229
|
-
this.$store.state.loja.showableProducts['
|
|
229
|
+
this.$store.state.loja.showableProducts['HISTORICO_USUARIO']
|
|
230
230
|
),
|
|
231
231
|
};
|
|
232
232
|
},
|
|
@@ -491,6 +491,11 @@ export default {
|
|
|
491
491
|
}
|
|
492
492
|
}
|
|
493
493
|
|
|
494
|
+
/deep/ .el-tabs__nav-scroll {
|
|
495
|
+
display: flex;
|
|
496
|
+
justify-content: space-around;
|
|
497
|
+
}
|
|
498
|
+
|
|
494
499
|
.readmore {
|
|
495
500
|
overflow: hidden;
|
|
496
501
|
text-overflow: ellipsis;
|