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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
@import '../../style/themes/default';
@dawer-prefix-cls: ~'@{ant-prefix}-drawer';
.@{dawer-prefix-cls} {
  position: fixed;
  top: 0;
  width: 0%;
  height: 100%;
  z-index: @zindex-modal;
  > * {
    transition: transform @animation-duration-slow @ease-base-in;
  }
  &-content-wrapper {
    position: fixed;
  }
  .@{dawer-prefix-cls}-content {
    width: 100%;
    height: 100%;
  }
  &-left,
  &-right {
    width: 0%;
    height: 100%;
    .@{dawer-prefix-cls}-content-wrapper {
      height: 100%;
    }
    &.@{dawer-prefix-cls}-open {
      width: 100%;
    }
    &.@{dawer-prefix-cls}-open.no-mask {
      width: 0%;
    }
  }
  &-left {
    &.@{dawer-prefix-cls}-open {
      .@{dawer-prefix-cls}-content-wrapper {
        box-shadow: @shadow-1-right;
      }
    }
  }
  &-right {
    .@{dawer-prefix-cls} {
      &-content-wrapper {
        right: 0;
      }
    }
    &.@{dawer-prefix-cls}-open {
      .@{dawer-prefix-cls}-content-wrapper {
        box-shadow: @shadow-1-left;
      }
    }
  }
  &-top,
  &-bottom {
    width: 100%;
    height: 0%;
    .@{dawer-prefix-cls}-content-wrapper {
      width: 100%;
    }
    &.@{dawer-prefix-cls}-open {
      height: 100%;
    }
    &.@{dawer-prefix-cls}-open.no-mask {
      height: 0%;
    }
  }
  &-top {
    &.@{dawer-prefix-cls}-open {
      .@{dawer-prefix-cls}-content-wrapper {
        box-shadow: @shadow-1-down;
      }
    }
  }
  &-bottom {
    .@{dawer-prefix-cls} {
      &-content-wrapper {
        bottom: 0;
      }
    }
    &.@{dawer-prefix-cls}-open {
      .@{dawer-prefix-cls}-content-wrapper {
        box-shadow: @shadow-1-up;
      }
    }
  }
  &.@{dawer-prefix-cls}-open {
    .@{dawer-prefix-cls} {
      &-mask {
        opacity: 0.3;
        height: 100%;
        animation: antdDrawerFadeIn @animation-duration-slow @ease-base-out;
        transition: none;
      }
    }
  }
  &-title {
    margin: 0;
    font-size: @font-size-lg;
    line-height: 22px;
    font-weight: 500;
    color: @heading-color;
  }
  &-content {
    position: relative;
    background-color: @component-background;
    border: 0;
    background-clip: padding-box;
    z-index: 1;
  }
  &-close {
    cursor: pointer;
    border: 0;
    background: transparent;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: color @animation-duration-slow;
    color: @text-color-secondary;
    outline: 0;
    padding: 0;
    &-x {
      display: block;
      font-style: normal;
      text-align: center;
      text-transform: none;
      text-rendering: auto;
      width: 56px;
      height: 56px;
      line-height: 56px;
      font-size: @font-size-lg;
    }
    &:focus,
    &:hover {
      color: #444;
      text-decoration: none;
    }
  }
  &-header {
    padding: 16px 24px;
    border-radius: @border-radius-base @border-radius-base 0 0;
    background: @component-background;
    color: @text-color;
    border-bottom: @border-width-base @border-style-base @border-color-split;
  }
  &-body {
    padding: 24px;
    font-size: @font-size-base;
    line-height: @line-height-base;
    word-wrap: break-word;
  }
  &-mask {
    position: fixed;
    width: 100%;
    height: 0;
    opacity: 0;
    background-color: @modal-mask-bg;
    filter: ~'alpha(opacity=50)';
    transition: opacity @animation-duration-slow linear, height 0s ease @animation-duration-slow;
  }
  &-open {
    transition: transform @animation-duration-slow @ease-base-out;
    &-content {
      box-shadow: @shadow-2;
    }
  }
}
@keyframes antdDrawerFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.3;
  }
}