summaryrefslogtreecommitdiff
path: root/src/views/Motherboard
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/Motherboard
parent1a71a3d8c56d11b912b4aa3fdcb64935ac414a34 (diff)
downloadwebui-vue-3f676232af56a272148cf8cff0cbcb78a3d7eb4a.tar.xz
fix tables global styles
Diffstat (limited to 'src/views/Motherboard')
-rw-r--r--src/views/Motherboard/DynamicInfo/helpers.js14
-rw-r--r--src/views/Motherboard/Specification/MotherboardSpecificationPage.vue14
2 files changed, 2 insertions, 26 deletions
diff --git a/src/views/Motherboard/DynamicInfo/helpers.js b/src/views/Motherboard/DynamicInfo/helpers.js
index e98f1873..890482ee 100644
--- a/src/views/Motherboard/DynamicInfo/helpers.js
+++ b/src/views/Motherboard/DynamicInfo/helpers.js
@@ -427,44 +427,30 @@ export const AccessoryData = {
{
key: 'name',
label: 'Имя модуля',
- thClass: 'bootstrap-fans-table__th semi-bold-12px',
- tdClass: 'bootstrap-fans-table__td light-12px',
},
{
key: 'currentValue',
label: 'Текущее, С°',
- thClass: 'bootstrap-fans-table__th semi-bold-12px',
- tdClass: 'bootstrap-fans-table__td light-12px',
},
{
key: 'middleTemperature',
label: 'Среднее, С°',
- thClass: 'bootstrap-fans-table__th semi-bold-12px',
- tdClass: 'bootstrap-fans-table__td light-12px',
},
{
key: 'lowerCaution',
label: 'Минимальное, С°',
- thClass: 'bootstrap-fans-table__th semi-bold-12px',
- tdClass: 'bootstrap-fans-table__td light-12px',
},
{
key: 'minDate',
label: 'Дата минимального',
- thClass: 'bootstrap-fans-table__th semi-bold-12px',
- tdClass: 'bootstrap-fans-table__td light-12px',
},
{
key: 'upperCaution',
label: 'Максимальное, С°',
- thClass: 'bootstrap-fans-table__th semi-bold-12px',
- tdClass: 'bootstrap-fans-table__td light-12px',
},
{
key: 'maxDate',
label: 'Дата максимального',
- thClass: 'bootstrap-fans-table__th semi-bold-12px',
- tdClass: 'bootstrap-fans-table__td light-12px',
},
],
items: [],
diff --git a/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue b/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
index 926c231c..56586dcf 100644
--- a/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
+++ b/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
@@ -9,7 +9,8 @@
<b-table
responsive="md"
show-empty
- class="bootstrap-rounded-table"
+ class="table-rounded"
+ no-border-collapse
:items="items"
:fields="fields"
:empty-text="$t('global.table.emptyMessage')"
@@ -47,17 +48,11 @@ export default {
key: 'parametr',
label: 'Параметр',
formatter: this.dataFormatter,
- thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
- class: 'bootstrap-rounded-table__column-first',
- tdClass: 'regular-12px bootstrap-rounded-table__td',
},
{
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: [
@@ -86,8 +81,3 @@ export default {
},
};
</script>
-<style lang="scss" scoped>
-.bootstrap-rounded-table {
- margin: 16px 0;
-}
-</style>