zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
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
@use 'sass:map';
@use 'mixins/mixins' as *;
@use 'common/var' as *;
 
@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 getCssVar('timeline-node-color');
  }
 
  & .#{$namespace}-timeline-item__icon {
    color: getCssVar('color-white');
    font-size: getCssVar('font-size-small');
  }
 
  @include e(node) {
    position: absolute;
    background-color: getCssVar('timeline-node-color');
    border-color: getCssVar('timeline-node-color');
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
 
    @include m(normal) {
      left: -1px;
      width: getCssVar('timeline-node-size-normal');
      height: getCssVar('timeline-node-size-normal');
    }
    @include m(large) {
      left: -2px;
      width: getCssVar('timeline-node-size-large');
      height: getCssVar('timeline-node-size-large');
    }
    @include when(hollow) {
      background: getCssVar('color-white');
      border-style: solid;
      border-width: 2px;
    }
 
    @each $type in (primary, success, warning, danger, info) {
      @include m($type) {
        background-color: getCssVar('color', $type);
        border-color: getCssVar('color', $type);
      }
    }
  }
 
  @include e(dot) {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  @include e(content) {
    color: getCssVar('text-color', 'primary');
  }
 
  @include e(timestamp) {
    color: getCssVar('text-color', 'secondary');
    line-height: 1;
    font-size: getCssVar('font-size-small');
 
    @include when(top) {
      margin-bottom: 8px;
      padding-top: 4px;
    }
    @include when(bottom) {
      margin-top: 8px;
    }
  }
}