element.scss 601 Bytes
Newer Older
乐宝呗666's avatar
乐宝呗666 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// element 样式补丁
.el-card {
  &.is-always-shadow {
    box-shadow: 0 0 8px 0 rgba(232,237,250,.6), 0 2px 4px 0 rgba(232,237,250,.5);
  }
  &.is-hover-shadow {
    &:hover {
      box-shadow: 0 0 8px 0 rgba(232,237,250,.6), 0 2px 4px 0 rgba(232,237,250,.5);
    }
  }
}

.el-menu--horizontal {
  border-bottom: none !important;
}

.el-tabs__item:focus.is-active.is-focus:not(:active) {
  box-shadow: none !important;
19 20 21 22 23 24
}
.el-autocomplete-suggestion li.highlighted, .el-autocomplete-suggestion li:hover {
  text-overflow: inherit;
}
.el-autocomplete-suggestion li {
  padding: 0 .1rem !important;
乐宝呗666's avatar
乐宝呗666 committed
25
}