forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-06 ee7848e5597f688b7f7eecdb10b3e9679dc9c016
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
@import '../../styles/theme.less';
 
.myMessage {
    &-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
 
    &-tabs {
        background-color: #f2f3f5;
        display: flex;
        border-radius: 2px;
        padding: 4px;
 
        &-item {
            padding: 2px 12px;
            cursor: pointer;
 
            &-active {
                color: @main-color;
                background-color: #ffffff;
                border-radius: 2px;
            }
        }
    }
 
    &-main {
        flex: 1;
        overflow-y: auto;
 
        &-item {
            padding: 16px 8px 16px 8px;
            border-bottom: 1px dashed @divider-color;
            max-height: 140px;
 
            &-read {
                opacity: 0.6;
            }
 
            &-footer {
                color: @text-color-secondary;
            }
 
            &-color1 {
                color: #ff5500;
            }
 
            &-color2 {
                color: #02d1d1;
            }
        }
 
        .ant-typography,
        .ellipsis-text-2 {
            margin-bottom: 8px;
        }
    }
 
    &-empty {
        margin: auto;
    }
 
    &-modal {
        &-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid @divider-color;
            margin-bottom: 12px;
 
            &-subtitle {
                color: @text-color-secondary;
            }
 
            h4 {
                margin-bottom: 0;
            }
        }
 
        &-main {
            max-height: 265px;
            overflow-y: auto;
        }
    }
}