summaryrefslogtreecommitdiff
path: root/src/components/Global/TableToolbar.vue
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-06-01 17:40:28 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-06-01 17:49:04 +0300
commit0cbf1713dc23e0039653891fab1fa2c52b4bfaf3 (patch)
tree94f31f3d6935a130d49704c51512016814df15eb /src/components/Global/TableToolbar.vue
parentc4d70da69a3c86f8c07ccdb0f09b755dd99b2155 (diff)
downloadwebui-vue-0cbf1713dc23e0039653891fab1fa2c52b4bfaf3.tar.xz
Add PopoverSlot restyled DateTime and ServerPowerOrerations pages add reload BMC.
Diffstat (limited to 'src/components/Global/TableToolbar.vue')
-rw-r--r--src/components/Global/TableToolbar.vue11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/components/Global/TableToolbar.vue b/src/components/Global/TableToolbar.vue
index 3ac8e2ce..eabe0c98 100644
--- a/src/components/Global/TableToolbar.vue
+++ b/src/components/Global/TableToolbar.vue
@@ -67,12 +67,13 @@ export default {
},
};
</script>
-
<style lang="scss" scoped>
$toolbar-height: 64px;
.toolbar-container {
- width: 100%;
+ width: calc(100vw - 320px);
+ height: $toolbar-height;
+ border-radius: 0px;
position: fixed;
bottom: 0;
right: 0;
@@ -80,18 +81,14 @@ $toolbar-height: 64px;
}
.toolbar-content {
- height: $toolbar-height;
background-color: $white;
color: $white;
- position: absolute;
- left: 0;
- right: 0;
- top: -$toolbar-height;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.06);
+ border-radius: 0px;
}
.toolbar-selected {