Blame view

node_modules/element-ui/packages/theme-chalk/src/popover.scss 812 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  @import "mixins/mixins";
  @import "common/var";
  @import "./popper";
  
  @include b(popover) {
    position: absolute;
    background: $--popover-fill;
    min-width: 150px;
    border-radius: 4px;
    border: 1px solid $--popover-border-color;
    padding: $--popover-padding;
    z-index: $--index-popper;
    color: $--color-text-regular;
    line-height: 1.4;
    text-align: justify;
    font-size: $--popover-font-size;
    box-shadow: $--box-shadow-light;
  
    @include m(plain) {
      padding: $--popover-padding-large;
    }
  
    @include e(title) {
      color: $--popover-title-color;
      font-size: $--popover-title-font-size;
      line-height: 1;
      margin-bottom: 12px;
    }
  
    @include e(reference) {
      &:focus:not(.focusing), &:focus:hover {
        outline-width: 0;
      }
    }
  
    &:focus:active, &:focus {
      outline-width: 0;
    }
  }