如何从扩展面板(Vuetify)中移除阴影?

时间:2019-07-22 18:12:56

标签: vue.js vuetify.js

我想从Vuetify扩展面板中删除阴影。当前,它看起来像这样:

Expansion panel with shadow

我的代码如下:

  <v-layout wrap justify-space-between>
    <v-flex xs12 pb-1>
      <v-card>
        <v-container pa-2>
          <v-expansion-panel expand pa-0>
            <v-expansion-panel-content>
              <template v-slot:header>
                <div>
                  {{ $t("var1") }}
                </div>
              </template>
              <v-layout row wrap>
                <v-flex xs12>
                  <v-text-field
                    class="right-input"
                    :label="$t('var2')"
                    value="600.00"
                    suffix="$"
                    disabled
                    flat
                  ></v-text-field>
                </v-flex>
              </v-layout>
            </v-expansion-panel-content>
          </v-expansion-panel>
        </v-container>
      </v-card>
    </v-flex>
  </v-layout>

是否可以从扩展面板上去除阴影?我尝试将添加到 标记中,但没有解决。我的目标是,在扩展的同时,它看起来像是平面卡。谢谢! :)

4 个答案:

答案 0 :(得分:4)

在 Vuetify v.2 中,您可以在 v-expansion-panels 中使用属性 flat。 此处记录:https://vuetifyjs.com/en/api/v-expansion-panels/#flat

<v-expansion-panels flat>
    <v-expansion-panel >
      <v-expansion-panel-header>
        header
      </v-expansion-panel-header>
      <v-expansion-panel-content>
        Content
      </v-expansion-panel-content>
    </v-expansion-panel>
  </v-expansion-panels>

答案 1 :(得分:3)

使用Veutify 2,以下CSS可以完成这项工作。

.v-expansion-panel::before {
   box-shadow: none !important;
}

答案 2 :(得分:1)

将以下代码行放入CSS:

.v-expansion-panel {
  box-shadow: none;
}

答案 3 :(得分:0)

您可以在1. pip install pytesseract 2. for windows install tesseract-ocr from https://digi.bib.uni-mannheim.de/tesseract select all language options while installing 3. set the tesseract-ocr path under anaconda/lib/site-packages/pytesseract/pytesseract.py tesseract_cmd = 'C:\\Program Files (x86)\\Tesseract-OCR\\tesseract.exe' 4. from pytesseract import image_to_string print(image_to_string(test_file, 'jpn')) #for Japenese text extraction上设置elevation-0类。

这是有效的示例:https://codepen.io/anon/pen/oKjRpm?editors=1010

我宁愿避免更改CSS,因为它将删除所有页面上所有扩展面板上的所有边框和阴影。