| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /* DupFind Modern Dark Theme */
- QMainWindow {
- background-color: #1e1e1e;
- color: #e0e0e0;
- }
- QWidget {
- background-color: #1e1e1e;
- color: #e0e0e0;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- }
- QPushButton {
- background-color: #333333;
- border: 1px solid #444444;
- border-radius: 4px;
- padding: 8px 16px;
- color: #ffffff;
- font-weight: bold;
- }
- QPushButton:hover {
- background-color: #444444;
- border: 1px solid #555555;
- }
- QPushButton:pressed {
- background-color: #222222;
- }
- /* Delete Button Specific */
- QPushButton#deleteBtn {
- background-color: #c0392b;
- border: none;
- }
- QPushButton#deleteBtn:hover {
- background-color: #e74c3c;
- }
- QListWidget {
- background-color: #252526;
- border: 1px solid #333333;
- border-radius: 4px;
- outline: 0;
- }
- QListWidget::item {
- padding: 5px;
- border-bottom: 1px solid #333333;
- }
- QListWidget::item:selected {
- background-color: #37373d;
- color: #007acc;
- }
- QScrollArea {
- border: none;
- }
- #imgCard {
- background-color: #2d2d2d;
- border: 1px solid #3f3f3f;
- border-radius: 8px;
- margin: 5px;
- }
- #imgCard:hover {
- border: 1px solid #007acc;
- background-color: #33333d;
- }
- QProgressBar {
- border: 1px solid #333333;
- border-radius: 4px;
- text-align: center;
- background-color: #252526;
- }
- QProgressBar::chunk {
- background-color: #007acc;
- }
- QLabel {
- color: #cccccc;
- }
- QSlider::handle:horizontal {
- background: #007acc;
- border: 1px solid #007acc;
- width: 14px;
- height: 14px;
- margin: -5px 0;
- border-radius: 7px;
- }
- QSlider::groove:horizontal {
- border: 1px solid #333333;
- height: 4px;
- background: #333333;
- margin: 2px 0;
- }
- /* QListView and Checkbox visibility fixes */
- QListView {
- background-color: #1e1e1e;
- color: #e0e0e0;
- border: none;
- }
- QListView::item {
- color: #e0e0e0;
- }
- QCheckBox {
- color: #e0e0e0;
- }
- QCheckBox::indicator {
- width: 18px;
- height: 18px;
- }
|