1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 04:02:42 +01:00

Fix color tag of logs/tty

This commit is contained in:
Elad Ashkenazi 2023-07-31 05:00:46 +03:00
parent c108b31954
commit 8a4617d3c2
8 changed files with 14 additions and 14 deletions

View File

@ -44,13 +44,13 @@ QLabel#gamelist_icon_background_color {
} }
/* log stylesheet */ /* log stylesheet */
QTextEdit#tty_frame { QPlainTextEdit#tty_frame {
background-color:#ffffff; background-color:#ffffff;
} }
QLabel#tty_text { QLabel#tty_text {
color:#000000; color:#000000;
} }
QTextEdit#log_frame { QPlainTextEdit#log_frame {
background-color:#ffffff; background-color:#ffffff;
} }
QLabel#log_level_always { QLabel#log_level_always {

View File

@ -253,7 +253,7 @@ QLabel#thumbnail_icon_color {
} }
/* Set Log colors */ /* Set Log colors */
QTextEdit#log_frame { QPlainTextEdit#log_frame {
background-color: #000; /* Black */ background-color: #000; /* Black */
} }
QLabel#log_level_always { QLabel#log_level_always {
@ -285,7 +285,7 @@ QLabel#log_stack {
} }
/* Set TTY colors */ /* Set TTY colors */
QTextEdit#tty_frame { QPlainTextEdit#tty_frame {
background-color: #000; /* Black */ background-color: #000; /* Black */
} }
QLabel#tty_text { QLabel#tty_text {

View File

@ -579,7 +579,7 @@ QLabel#thumbnail_icon_color {
} }
/* Log colors */ /* Log colors */
QTextEdit#log_frame { QPlainTextEdit#log_frame {
background-color: #23262d; background-color: #23262d;
} }
@ -620,7 +620,7 @@ QLabel#log_stack {
} }
/* TTY colors */ /* TTY colors */
QTextEdit#tty_frame { QPlainTextEdit#tty_frame {
background-color: #23262d; background-color: #23262d;
} }

View File

@ -292,7 +292,7 @@ QLabel#debugger_frame_pc {
} }
/* Set Log colors */ /* Set Log colors */
QTextEdit#log_frame { QPlainTextEdit#log_frame {
background-color: #000000; /* Black */ background-color: #000000; /* Black */
} }
QLabel#log_level_always { QLabel#log_level_always {
@ -323,7 +323,7 @@ QLabel#log_stack {
color: #ffffff; /* White */ color: #ffffff; /* White */
} }
/* Set TTY colors */ /* Set TTY colors */
QTextEdit#tty_frame { QPlainTextEdit#tty_frame {
background-color: #000000; /* Black */ background-color: #000000; /* Black */
} }
QLabel#tty_text { QLabel#tty_text {

View File

@ -250,7 +250,7 @@ QLabel#thumbnail_icon_color {
} }
/* Set Log colors */ /* Set Log colors */
QTextEdit#log_frame { QPlainTextEdit#log_frame {
background-color: #181d24; /* Black */ background-color: #181d24; /* Black */
} }
QLabel#log_level_always { QLabel#log_level_always {
@ -282,7 +282,7 @@ QLabel#log_stack {
} }
/* Set TTY colors */ /* Set TTY colors */
QTextEdit#tty_frame { QPlainTextEdit#tty_frame {
background-color: #181d24; /* Black */ background-color: #181d24; /* Black */
} }
QLabel#tty_text { QLabel#tty_text {

View File

@ -611,7 +611,7 @@ QLineEdit:focus {
} }
/* Log colors */ /* Log colors */
QTextEdit#log_frame { QPlainTextEdit#log_frame {
background-color: #111525; background-color: #111525;
} }

View File

@ -619,7 +619,7 @@ QLineEdit:focus {
} }
/* Log colors */ /* Log colors */
QTextEdit#log_frame { QPlainTextEdit#log_frame {
background-color: #FFFFFF; background-color: #FFFFFF;
} }

View File

@ -65,11 +65,11 @@ namespace gui
"QDockWidget::close-button, QDockWidget::float-button{ background-color: #e3e3e3; }" "QDockWidget::close-button, QDockWidget::float-button{ background-color: #e3e3e3; }"
// log frame tty // log frame tty
"QTextEdit#tty_frame { background-color: #ffffff; }" "QPlainTextEdit#tty_frame { background-color: #ffffff; }"
"QLabel#tty_text { color: #000000; }" "QLabel#tty_text { color: #000000; }"
// log frame log // log frame log
"QTextEdit#log_frame { background-color: #ffffff; }" "QPlainTextEdit#log_frame { background-color: #ffffff; }"
"QLabel#log_level_always { color: #107896; }" "QLabel#log_level_always { color: #107896; }"
"QLabel#log_level_fatal { color: #ff00ff; }" "QLabel#log_level_fatal { color: #ff00ff; }"
"QLabel#log_level_error { color: #C02F1D; }" "QLabel#log_level_error { color: #C02F1D; }"