Blame view

src/styles/components/divider.less 2.89 KB
b26389a0   xiaofengsha   * 对照AntDesign,实现了...
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
  
  
  @divider-prefix-cls: ~"@{css-prefix}divider";
  
  @font-size-base         : 14px;
  @font-size-lg           : @font-size-base + 2px;
  @heading-color          : fade(#000, 85%);
  
  .reset-component() {
    font-family: @font-family;
    font-size: @font-size-base;
    line-height: @line-height-base;
    color: @text-color;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .@{divider-prefix-cls} {
    .reset-component;
    background: @border-color-split;
  
    &,  // for compatiable
    &-vertical {
      margin: 0 8px;
      display: inline-block;
      height: 0.9em;
      width: 1px;
      vertical-align: middle;
      position: relative;
      top: -0.06em;
    }
    &-horizontal {
      display: block;
      height: 1px;
      width: 100%;
      margin: 24px 0;
    }
    &-horizontal&-with-text {
      display: table;
      white-space: nowrap;
      text-align: center;
      background: transparent;
      font-weight: 500;
      color: @heading-color;
      font-size: @font-size-lg;
      margin: 16px 0;
  
      &:before,
      &:after {
        content: '';
        display: table-cell;
        position: relative;
        top: 50%;
        width: 50%;
        border-top: 1px solid @border-color-split;
        transform: translateY(50%);
      }
    }
    &-inner-text {
      display: inline-block;
      padding: 0 24px;
    }
    &-horizontal&-with-text-left {
      display: table;
      white-space: nowrap;
      text-align: center;
      background: transparent;
      font-weight: 500;
      color: @heading-color;
      font-size: @font-size-base;
      margin: 16px 0;
  
      &:before {
        content: '';
        display: table-cell;
        position: relative;
        top: 50%;
        width: 5%;
        border-top: 1px solid @border-color-split;
        transform: translateY(50%);
      }
      &:after {
        content: '';
        display: table-cell;
        position: relative;
        top: 50%;
        width: 95%;
        border-top: 1px solid @border-color-split;
        transform: translateY(50%);
      }
      &-inner-text {
        display: inline-block;
        padding: 0 10px;
      }
    }
  
    &-horizontal&-with-text-right {
      display: table;
      white-space: nowrap;
      text-align: center;
      background: transparent;
      font-weight: 500;
      color: @heading-color;
      font-size: @font-size-base;
      margin: 16px 0;
  
      &:before {
        content: '';
        display: table-cell;
        position: relative;
        top: 50%;
        width: 95%;
        border-top: 1px solid @border-color-split;
        transform: translateY(50%);
      }
      &:after {
        content: '';
        display: table-cell;
        position: relative;
        top: 50%;
        width: 5%;
        border-top: 1px solid @border-color-split;
        transform: translateY(50%);
      }
      &-inner-text {
        display: inline-block;
        padding: 0 10px;
      }
    }
    &-dashed {
      background: none;
      border-top: 1px dashed @border-color-split;
    }
    &-horizontal&-with-text&-dashed {
      border-top: 0;
      &:before,
      &:after {
        border-style: dashed none none;
      }
    }
  }