File size: 2,430 Bytes
519a20c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.dataMaidDialogContainer {
    height: 100%;
    overflow: hidden;
}

.dataMaidDialog {
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    overflow: hidden;
}

.dataMaidDialogHeader {
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: left;
}

.dataMaidHeaderInfo {
    flex: 1;
    margin: 0;
    padding: 5px 10px;
}

.dataMaidTextView {
    width: 100%;
    height: 100%;
    font-family: var(--monoFontFamily);
    resize: none;
    font-size: 0.95em;
}

.dataMaidImageView {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dataMaidSpinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.dataMaidPlaceholder {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05em;
}

.dataMaidResultsList:empty {
    display: none;
}

.dataMaidResultsList {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    height: 100%;
    flex-grow: 1;
}

.dataMaidCategory {
    border: 1px solid var(--SmartThemeBorderColor);
    border-radius: 10px;
    padding: 0 10px;
}

.dataMaidCategoryHeader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 5px;
    padding: 0 5px;
}

.dataMaidCategoryDetails {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.dataMaidCategoryName {
    flex: 3;
    font-weight: bold;
    font-size: 1.1em;
}

.dataMaidCategoryInfo {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.dataMaidCategoryContent {
    border: 1px solid var(--SmartThemeBorderColor);
    padding: 5px;
    border-radius: 10px;
    background-color: var(--black30a);
    margin: 10px 0;
}

.dataMaidCategoryContent>.info-block {
    white-space: pre-wrap;
}

.dataMaidItem {
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 100%;
    border-bottom: 1px solid var(--SmartThemeBorderColor);
}

.dataMaidItem:last-child {
    border-bottom: none;
}

.dataMaidItemHeader {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dataMaidItemName {
    display: flex;
    flex: 1;
    align-items: baseline;
    gap: 2px;
    word-break: break-all;
}

.dataMaidItemActions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dataMaidItemActions>button {
    font-size: 0.9em;
}