Преглед на файлове

UI: Update Acri theme styling

Adds new styling for checked buttons when
they are pressed or hovered

Adds a hover styling for dropdown boxes
Warchamp7 преди 4 години
родител
ревизия
1588357583
променени са 1 файла, в които са добавени 15 реда и са изтрити 0 реда
  1. 15 0
      UI/data/themes/Acri.qss

+ 15 - 0
UI/data/themes/Acri.qss

@@ -428,6 +428,11 @@ QComboBox {
 	padding-left: 10px;
 }
 
+QDateTimeEdit:hover,
+QComboBox:hover {
+    background-color: rgb(61,61,63);
+}
+
 QDateTimeEdit::drop-down,
 QComboBox::drop-down {
 	border:none;
@@ -563,10 +568,20 @@ QPushButton:hover {
 	border: 1px solid rgb(54,70,131);
 }
 
+QPushButton:checked:hover {
+	background-color: rgb(116,32,49);
+	border-color: rgb(176,12,47);
+}
+
 QPushButton:pressed {
 	background-color: rgb(22,31,65);
 }
 
+QPushButton:checked:pressed {
+	background-color: rgb(63,21,30);
+	border-color: rgb(132,22,45);
+}
+
 QPushButton:disabled {
 	border: 1px solid rgb(35,36,38);
 	background-color: rgb(26,26,27);