文本编辑器样式
()
| 181 | |
| 182 | |
| 183 | def get_textedit_style() -> str: |
| 184 | """文本编辑器样式""" |
| 185 | return f""" |
| 186 | QTextEdit {{ |
| 187 | background-color: {COLORS['surface']}; |
| 188 | border: 1px solid {COLORS['border']}; |
| 189 | border-radius: 6px; |
| 190 | padding: 8px; |
| 191 | color: {COLORS['text_primary']}; |
| 192 | }} |
| 193 | |
| 194 | QTextEdit:focus {{ |
| 195 | border-color: {COLORS['primary']}; |
| 196 | outline: none; |
| 197 | }} |
| 198 | """ |
| 199 | |
| 200 | |
| 201 | def get_scrollarea_style() -> str: |
no outgoing calls
no test coverage detected