summaryrefslogtreecommitdiff
path: root/src/components/_sila/Global/PopoverInfo.vue
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-07-13 12:12:58 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-07-13 12:12:58 +0300
commitac2e648139a370f1c5b418cfb1694b348f992f8e (patch)
tree3d29fa28a97a2fbb0b1ad4cc2e0dc1d9065bab76 /src/components/_sila/Global/PopoverInfo.vue
parentb2bea3021aea8be3d4bc34f965bf58297c358bca (diff)
downloadwebui-vue-ac2e648139a370f1c5b418cfb1694b348f992f8e.tar.xz
Add pages bms
Issue: SILABMC-191
Diffstat (limited to 'src/components/_sila/Global/PopoverInfo.vue')
-rw-r--r--src/components/_sila/Global/PopoverInfo.vue40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/components/_sila/Global/PopoverInfo.vue b/src/components/_sila/Global/PopoverInfo.vue
new file mode 100644
index 00000000..4b1b0b0d
--- /dev/null
+++ b/src/components/_sila/Global/PopoverInfo.vue
@@ -0,0 +1,40 @@
+<template>
+ <b-popover :target="id" triggers="hover" placement="top">
+ <span class="regular-12px">{{ description }}</span>
+ </b-popover>
+</template>
+
+<script>
+export default {
+ props: {
+ description: {
+ type: String,
+ default: '',
+ },
+ id: {
+ type: String,
+ default: '',
+ },
+ },
+};
+</script>
+<style lang="scss" scoped>
+.popover::v-deep {
+ background-color: #040a0f;
+ width: 168px;
+ height: 76px;
+}
+
+.popover::v-deep .arrow {
+ visibility: visible;
+}
+
+.popover::v-deep .arrow::after {
+ border-top-color: #040a0f;
+ border-bottom-color: #040a0f;
+}
+
+.regular-12px {
+ color: $white;
+}
+</style>