mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-07 12:54:24 +02:00
-Renamed button "Clear Filters" to "All Messages" -Changed search result matching text to a more visible color -Made Date/Time text more visible -Added count of current messages in window -Set window to show all messages with no filtering upon first opening
122 lines
No EOL
2.6 KiB
Text
122 lines
No EOL
2.6 KiB
Text
|
|
QPlainTextEdit {
|
|
font-family: Inconsolata, Consolas, Courier New, monospace;
|
|
font-size: 16px;
|
|
padding-left: 28px;
|
|
padding-top: 7px;
|
|
color: #333333;
|
|
background-color: #FFFFFF;
|
|
border: none;
|
|
selection-background-color: #7b91b5;
|
|
}
|
|
|
|
QLineEdit {
|
|
font-family: Inconsolata, Consolas, Courier New, monospace;
|
|
padding-left: 7px;
|
|
background-color: #CCCCCC;
|
|
border-width: 0;
|
|
border-top-right-radius: 9px;
|
|
border-bottom-right-radius: 9px;
|
|
color: #333333;
|
|
font-size: 12px;
|
|
}
|
|
|
|
QPushButton#searchButton {
|
|
background: url(:/styles/search.svg);
|
|
background-repeat: none;
|
|
background-position: left center;
|
|
background-origin: content;
|
|
padding-left: 7px;
|
|
background-color: #CCCCCC;
|
|
border-width: 0;
|
|
border-top-left-radius: 9px;
|
|
border-bottom-left-radius: 9px;
|
|
}
|
|
|
|
QPushButton#searchNextButton {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #CCCCCC;
|
|
color: #3d3d3d;
|
|
border-width: 0;
|
|
border-radius: 9px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
QPushButton#searchPrevButton {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #CCCCCC;
|
|
color: #3d3d3d;
|
|
border-width: 0;
|
|
border-radius: 9px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
QPushButton#revealLogButton {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
background: url(:/styles/txt-file.svg);
|
|
background-repeat: none;
|
|
background-position: left center;
|
|
background-origin: content;
|
|
padding-left: 10px;
|
|
background-color: #333333;
|
|
color: #BBBBBB;
|
|
border-width: 0;
|
|
border-radius: 9px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
QPushButton#allLogsButton {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
background-color: #333333;
|
|
color: #BBBBBB;
|
|
border-width: 0;
|
|
border-radius: 9px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
QCheckBox {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
text-align: center;
|
|
color: #3d3d3d;
|
|
border-width: 0;
|
|
border-radius: 9px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
QCheckBox::indicator:unchecked {
|
|
image: url(:/styles/unchecked.svg);
|
|
}
|
|
|
|
QCheckBox::indicator:checked {
|
|
image: url(:/styles/checked.svg);
|
|
}
|
|
|
|
QComboBox {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #CCCCCC;
|
|
color: #3d3d3d;
|
|
border-width: 0;
|
|
border-radius: 9px;
|
|
font-size: 11px;
|
|
padding-left: 7px;
|
|
}
|
|
|
|
QComboBox::drop-down {
|
|
border-width: 0px;
|
|
padding-right: 7px;
|
|
}
|
|
|
|
QComboBox::down-arrow {
|
|
image: url(:/styles/filter.png);
|
|
border-width: 0px;
|
|
}
|
|
|
|
QLabel#messageCount {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
text-align: center;
|
|
color: #3d3d3d;
|
|
font-size: 11px;
|
|
} |