summaryrefslogtreecommitdiff
path: root/src/views/MemoryModules/Specification/MemoryStaticPage.vue
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-07-12 09:22:20 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-07-12 09:22:20 +0300
commit3f676232af56a272148cf8cff0cbcb78a3d7eb4a (patch)
tree0fe99fce083b70990e2e7f80c1e8e4124df93843 /src/views/MemoryModules/Specification/MemoryStaticPage.vue
parent1a71a3d8c56d11b912b4aa3fdcb64935ac414a34 (diff)
downloadwebui-vue-3f676232af56a272148cf8cff0cbcb78a3d7eb4a.tar.xz
fix tables global styles
Diffstat (limited to 'src/views/MemoryModules/Specification/MemoryStaticPage.vue')
-rw-r--r--src/views/MemoryModules/Specification/MemoryStaticPage.vue21
1 files changed, 5 insertions, 16 deletions
diff --git a/src/views/MemoryModules/Specification/MemoryStaticPage.vue b/src/views/MemoryModules/Specification/MemoryStaticPage.vue
index 8a4b9c2e..5e544868 100644
--- a/src/views/MemoryModules/Specification/MemoryStaticPage.vue
+++ b/src/views/MemoryModules/Specification/MemoryStaticPage.vue
@@ -1,5 +1,6 @@
<template>
<b-container
+ id="page-memory-specification"
:style="{ display: 'flex', 'flex-direction': 'column' }"
fluid="xxl pt-0 m-0"
>
@@ -9,7 +10,7 @@
<b-table
responsive="md"
show-empty
- class="bootstrap-rounded-table"
+ no-border-collapse
:items="items"
:fields="fields"
:empty-text="$t('global.table.emptyMessage')"
@@ -28,7 +29,7 @@
<b-table
responsive="md"
show-empty
- class="bootstrap-rounded-table"
+ no-border-collapse
:items="items_slots"
:fields="fields"
:empty-text="$t('global.table.emptyMessage')"
@@ -57,7 +58,7 @@
<b-table
responsive="md"
show-empty
- class="bootstrap-rounded-table"
+ no-border-collapse
:items="items_modules"
:fields="fields"
:empty-text="$t('global.table.emptyMessage')"
@@ -116,18 +117,12 @@ export default {
key: 'parametr',
label: 'Статус',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: `bootstrap-rounded-table__column-first
- memory-table-col-first`,
- tdClass: 'regular-12px bootstrap-rounded-table__td',
+ thStyle: { width: '50%' },
},
{
key: 'value',
label: 'Значение',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-last',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
],
items: [
@@ -221,12 +216,6 @@ export default {
},
};
</script>
-<style lang="scss">
-.memory-table-col-first {
- width: 50%;
-}
-</style>
-
<style lang="scss" scoped>
.info_section {
margin-bottom: 0px;