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
| @import '../../../../styles/theme.less';
|
| .reply {
| &-container {
| background-color: #f5f7fa;
| min-height: calc(100vh - 44px);
| padding-bottom: 80px;
| }
|
| &-header {
| font-size: 16px;
| font-weight: 500;
| padding: 16px;
| background-color: #fff;
| color: #1d2129;
| border-bottom: 1px solid #f2f3f5;
| }
|
| &-detail, &-edit {
| background-color: #fff;
| padding: 0 16px;
| }
|
| &-section {
| padding: 16px 0;
| border-bottom: 1px solid #f2f3f5;
|
| &:last-child {
| border-bottom: none;
| }
| }
|
| &-label {
| font-size: 14px;
| color: #86909c;
| margin-bottom: 8px;
| }
|
| &-value {
| font-size: 14px;
| color: #1d2129;
| line-height: 22px;
| }
|
| &-attachments {
| margin-top: 8px;
| }
|
| &-divider {
| height: 8px;
| background-color: #f5f7fa;
| }
|
| &-textarea {
| padding: 16px 0;
| font-size: 14px;
| border: none;
|
| .ddm-input-control {
| min-height: 100px;
| padding: 0;
| }
| }
|
| &-add-attachment {
| display: flex;
| align-items: center;
| padding: 12px 0 16px;
|
| &-icon {
| margin-right: 8px;
| }
|
| &-text {
| color: #1A6FB8;
| font-size: 14px;
| }
| }
|
| &-attachment {
| display: flex;
| align-items: center;
| height: 48px;
| background-color: #f7f8fa;
| border-radius: 4px;
| padding: 0 12px;
| margin-bottom: 8px;
|
| &-icon {
| margin-right: 8px;
| }
|
| &-name {
| flex: 1;
| font-size: 14px;
| color: #1d2129;
| white-space: nowrap;
| overflow: hidden;
| text-overflow: ellipsis;
| }
|
| &-size {
| font-size: 12px;
| color: #86909c;
| margin: 0 12px;
| }
|
| &-preview, &-delete {
| font-size: 14px;
| color: #1A6FB8;
| }
|
| &-delete {
| color: #f53f3f;
| }
| }
|
| &-footer {
| position: fixed;
| left: 0;
| right: 0;
| bottom: 0;
| background-color: #fff;
| padding: 12px 16px;
| box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
| z-index: 10;
| }
|
| &-submit-btn {
| width: 100%;
| height: 44px;
| border-radius: 4px;
| font-size: 16px;
| }
| }
|
|