| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- MainWindow {
- background-color: #1E1E1E;
- }
- CustomTitleBar {
- margin-bottom: 15px;
- }
- CustomTitleBar QLabel#IconLabel {
- min-width: 28px;
- min-height: 28px;
- background-repeat: no-repeat;
- }
- CustomTitleBar QLabel#TitleLabel {
- font: "黑体";
- font-size: 28px;
- font-weight: bold;
- color: #e0ffff;
- }
- CustomTitleBar QToolButton {
- min-width: 20px;
- max-width: 20px;
- min-height: 18px;
- max-height: 18px;
- border: none;
- background-color: transparent;
- }
- CustomTitleBar QToolButton#SettingButton {
- background-color: transparent;
- }
- CustomTitleBar QToolButton#CloseButton {
- background-color: #921010;
- }
- CustomTitleBar QToolButton#CloseButton:hover {
- background-color: #F10000;
- }
- CustomTitleBar QToolButton#CloseButton:pressed {
- background-color: #BF0000;
- }
- PagePanel {
- border: none;
- }
- PagePanel QTabBar {
- background-color: transparent;
- border-bottom: 1px solid #e0ffff;
- }
- PagePanel QTabBar::tab {
- width: 60px;
- height: 30px;
- font-weight: bold;
- color: #e0ffff;
- background-color: #0085ff;
- border-bottom: 1px solid #e0ffff;
- }
- PagePanel QTabBar::tab:selected {
- background-color: #006fff;
- }
- PagePanel QTabBar::tab:hover {
- background-color: #69b4ff;
- }
- PagePanel QTabBar::tab:pressed {
- background-color: #006fff;
- }
- PagePanel QSplitter {
- border: none;
- }
- PagePanel QSplitter::handle {
- width: 1px;
- }
- PagePanel QSplitter::handle:horizontal {
- width: 1px;
- }
- PagePanel QListWidget {
- min-width: 60px;
- max-width: 300px;
- color: #e0ffff;
- background-color: transparent;
- outline: 0;
- border: none;
- }
- PagePanel QListWidget::item {
- border: none;
- height: 30px;
- }
- PagePanel QListWidget::item:hover{
- background-color: #69b4ff;
- }
- PagePanel QListWidget::item:selected {
- border: none;
- }
- PagePanel QListWidget::item:selected:!active,
- PagePanel QListWidget::item:selected:active {
- color: #e0ffff;
- border: none;
- background-color: #006fff;
- }
- IconPanel {
- border: none;
- background-color: transparent;
- }
- KMenu {
- menu-scrollable: 1;
- color: #DDDDDD;
- Qproperty-hoverColor: #FFFFFF;
- }
- KMenu:disabled {
- color: #666666;
- }
|