Blame view

node_modules/element-ui/packages/theme-chalk/src/table-column.scss 1.72 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
  @import "mixins/mixins";
  @import "checkbox";
  @import "tag";
  @import "common/var";
  
  @include b(table-column) {
    @include m(selection) {
      .cell {
        padding-left: 14px;
        padding-right: 14px;
      }
    }
  }
  
  @include b(table-filter) {
    border: solid 1px $--border-color-lighter;
    border-radius: 2px;
    background-color: $--color-white;
    box-shadow: $--dropdown-menu-box-shadow;
    box-sizing: border-box;
    margin: 2px 0;
  
    /** used for dropdown mode */
    @include e(list) {
      padding: 5px 0;
      margin: 0;
      list-style: none;
      min-width: 100px;
    }
  
    @include e(list-item) {
      line-height: 36px;
      padding: 0 10px;
      cursor: pointer;
      font-size: $--font-size-base;
  
      &:hover {
        background-color: $--dropdown-menuItem-hover-fill;
        color: $--dropdown-menuItem-hover-color;
      }
  
      @include when(active) {
        background-color: $--color-primary;
        color: $--color-white;
      }
    }
  
    @include e(content) {
      min-width: 100px;
    }
  
    @include e(bottom) {
      border-top: 1px solid $--border-color-lighter;
      padding: 8px;
  
      button {
        background: transparent;
        border: none;
        color: $--color-text-regular;
        cursor: pointer;
        font-size: $--font-size-small;
        padding: 0 3px;
  
        &:hover {
          color: $--color-primary;
        }
  
        &:focus {
          outline: none;
        }
  
        &.is-disabled {
          color: $--disabled-color-base;
          cursor: not-allowed;
        }
      }
    }
  
    @include e(wrap) {
      max-height: 280px;
    }
  
    @include e(checkbox-group) {
      padding: 10px;
  
      label.el-checkbox {
        display: block;
        margin-right: 5px;
        margin-bottom: 8px;
        margin-left: 5px;
      }
  
      .el-checkbox:last-child {
        margin-bottom: 0;
      }
    }
  }