Blame view

node_modules/element-ui/packages/theme-chalk/src/timeline-item.scss 1.67 KB
7820380e   “wangming”   1
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
  @import "mixins/mixins";
  @import "common/var";
  
  @include b(timeline-item) {
    position: relative;
    padding-bottom: 20px;
  
    @include e(wrapper) {
      position: relative;
      padding-left: 28px;
      top: -3px;
    }
  
    @include e(tail) {
      position: absolute;
      left: 4px;
      height: 100%;
      border-left: 2px solid $--timeline-node-color;
    }
  
    @include e(icon) {
      color: $--color-white;
      font-size: $--font-size-small;
    }
  
    @include e(node) {
      position: absolute;
      background-color: $--timeline-node-color;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
  
      @include m(normal) {
        left: -1px;
        width: $--timeline-node-size-normal;
        height: $--timeline-node-size-normal;
      }
      @include m(large) {
        left: -2px;
        width: $--timeline-node-size-large;
        height: $--timeline-node-size-large;
      }
  
      @include m(primary) {
        background-color: $--color-primary;
      }
      @include m(success) {
        background-color: $--color-success;
      }
      @include m(warning) {
        background-color: $--color-warning;
      }
      @include m(danger) {
        background-color: $--color-danger;
      }
      @include m(info) {
        background-color: $--color-info;
      }
    }
  
    @include e(dot) {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    @include e(content) {
      color: $--color-text-primary;
    }
  
    @include e(timestamp) {
      color: $--color-text-secondary;
      line-height: 1;
      font-size: $--font-size-small;
  
      @include when(top) {
        margin-bottom: 8px;
        padding-top: 4px;
      }
      @include when(bottom) {
        margin-top: 8px;
      }
    }
  }