Buey Modal滚动条出现在两个轴上,我只希望y轴滚动条

问题描述

我正在尝试仅使用y轴滚动条创建模态。当前发生的情况是,当y高度大于窗口时,模态同时以x和y滚动条结尾,内容部分Buefy的css以某种方式增加了20px的边距。没有任何内容会导致宽度大于b模式宽度减去自动填充x2。我试图添加到vue组件的本地样式中以覆盖Buefy的css,但并不高兴。 b-modal的with设置为680,我在Vue 2.6.11中使用Buefy 0.9.2,特别是我创建的本地CSS样式是:

<template>
  <section>
    <div class="center">
      <p class="title is-5">Image Inventory</p>
    </div>
    <b-table
      :data="images"
      :paginated="isPaginated"
      :per-page="perPage"
      :current-page.sync="currentPage"
      :default-sort-direction="defaultSortDirection"
      :striped="isStriped"
      :narrowed="isNarrowed"
      default-sort="roadName"
    >
      <b-table-column
        field="title"
        label="Title"
        width="300"
        sortable
        v-slot="props"
      >{{ props.row.title }}</b-table-column>
      <b-table-column
        field="fileName"
        label="File"
        width="300"
        v-slot="props"
      >{{ props.row.fileName }}</b-table-column>
      <b-table-column field="_id" label="Action" width="150" sortable v-slot="props">
        <a href="#" @click="cardModal(props.row._id)">
          <b-icon icon="details" />
        </a>
        <router-link :to="{ name: 'EditImg',params: { id: props.row._id } }">
          <b-icon icon="pencil" />
        </router-link>
        <a href="#" @click="deleteImg(props.row._id)">
          <b-icon icon="delete-forever" />
        </a>
      </b-table-column>
    </b-table>
    <b-field grouped group-multiline>
      <b-select v-model="perPage" :disabled="!isPaginated">
        <option value="10">10 per page</option>
        <option value="20">20 per page</option>
        <option value="30">30 per page</option>
        <option value="40">40 per page</option>
      </b-select>
    </b-field>
    <b-modal :active.sync="isCardModalActive" :width="600">
      <header class="modal-card-head">
        <p class="modal-card-title">
          Image Details
          <br />
          <span style="font-size:14px">for {{mTitle}}</span>
        </p>
      </header>
      <section class="modal-card-body">
        <img :src="mImageURL" :width="500" />
        <div class="content">
          Filename: {{mFileName}}
          <br />
        </div>Notes:
        <textarea rows="6" cols="50" v-model="mNotes" />
        <br />
      </section>
      <footer class="modal-card-foot">
        <a href="#" @click="editClose()">
          <b-icon icon="pencil" />
        </a>
        <a href="#" @click="modalClose()">
          <b-icon icon="window-close" />
        </a>
      </footer>
    </b-modal>
  </section>
</template>

<script>
import RsService from "../services/RsService";

export default {
  name: "Images",data() {
    return {
      images: [],isPaginated: true,isPaginationSimple: false,isNarrowed: true,isStriped: true,defaultSortDirection: "asc",currentPage: 1,perPage: 10,mTitle: "",mImageURL: "",mFileName: "",mId: "",mNotes: "",isCardModalActive: false,};
  },mounted() {
    this.getImglist();
  },methods: {
    editClose() {
      this.isCardModalActive = false;
      this.$router.push({
        name: "EditImg",params: { id: this.mId },});
    },modalClose() {
      this.isCardModalActive = false;
    },async getImglist() {
      const response = await RsService.fetchImglist();
      this.images = response.data.images;
    },async deleteImg(id) {
      await RsService.deleteImg(id);
      this.getImglist();
    },async cardModal(id) {
      const response = await RsService.getImgById(id);
      this.mImageURL = "./static/img/" + response.data.fileName;
      this.mFileName = response.data.fileName;
      this.mTitle = response.data.title;
      this.mId = response.data._id;
      this.mNotes = response.data.notes;
      this.isCardModalActive = true;
    },},};
</script>
   <style scoped>
section {
  display: block;
  margin: auto;
  width: 750px;
  padding: 10px;
}
.center {
  text-align: center;
}
.animation-content.modal-content{
  margin: 0px !important;
  border: 0px;
  padding: 0px;
}
.modal-card-head {
  background-color: rgb(106,181,243);
  width: 600px;
}
.modal-card-body {
  margin: 0px !important;
  border: 0px;
  background-color: white;
  width: 600px;
  text-align: center;
}
.modal-card-foot {
  background-color: rgb(106,243);
  width: 600px;
}
.modal-content,.modal-card {
  margin: 0px !important;
  max-height: calc(100vh - 160px);
  overflow-y: auto !important;
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
}
</style>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...