1
0
Fork 0
mirror of synced 2024-07-03 05:31:23 +12:00
Rare/rare/styles/RareStyle.qss

154 lines
2.2 KiB
Plaintext
Raw Normal View History

2021-02-10 23:48:25 +13:00
QWidget {
background-color: #202225;
color: white;
}
2021-02-27 07:28:54 +13:00
QLabel {
2021-02-20 00:57:55 +13:00
background-color: transparent;
}
2021-02-10 23:48:25 +13:00
2021-03-19 00:45:59 +13:00
QTabBar#main_tab_bar {
2021-03-01 08:01:15 +13:00
border-bottom: none;
2021-03-10 06:13:04 +13:00
background-color: #2b2b2c;
}
2021-03-19 00:45:59 +13:00
QTabBar::tab#main_tab_bar {
2021-03-27 01:29:26 +13:00
border-bottom: none;
2021-03-01 08:01:15 +13:00
}
2021-02-27 07:28:54 +13:00
QTabBar::tab#main_tab_bar {
2021-03-01 08:01:15 +13:00
border-bottom: none;
2021-03-09 03:07:07 +13:00
padding: 5px
2021-02-10 23:48:25 +13:00
}
2021-03-19 00:45:59 +13:00
QTabBar::tab:selected#main_tab_bar {
2021-03-10 06:13:04 +13:00
background-color: gray;
2021-03-01 08:01:15 +13:00
}
2021-02-10 23:48:25 +13:00
2021-02-27 07:28:54 +13:00
QTabBar::tab:hover#main_tab_bar {
2021-03-10 06:13:04 +13:00
border-bottom: 2px solid black;
2021-03-01 08:01:15 +13:00
2021-02-10 23:48:25 +13:00
}
2021-04-09 23:30:59 +12:00
QGroupBox {
padding: 4px;
margin: 8px;
}
2021-04-09 23:30:59 +12:00
QGroupBox#settings_widget {
border: 1px solid gray;
font-size: 13px;
border-radius: 3px;
margin-top: 1ex;
padding-top: 4px;
padding-bottom: 4px;
}
QGroupBox#game_widget_icon {
2021-04-06 23:41:52 +12:00
border: none;
padding: 0;
margin: 0;
2021-04-06 23:41:52 +12:00
}
2021-04-09 23:30:59 +12:00
QGroupBox#group {
font-size: 15px;
font-weight: bold;
2021-04-06 23:41:52 +12:00
border: 1px solid white;
margin-top: 10px;
padding: 8px;
}
2021-02-10 23:48:25 +13:00
QToolButton {
2021-03-10 06:13:04 +13:00
padding: 6px;
2021-02-10 23:48:25 +13:00
}
QPushButton {
2021-03-10 06:13:04 +13:00
border: 1px solid white;
border-radius: 4px;
background-color: #3c3f41;
padding: 3px;
}
2021-03-19 00:45:59 +13:00
QPushButton:hover {
2021-03-10 06:13:04 +13:00
background-color: #223;
2021-02-10 23:48:25 +13:00
}
QPushButton::menu-indicator {
subcontrol-position: right center;
subcontrol-origin: padding;
left: -2px;
border-style: none;
}
QPushButton#menu {
padding: 0px;
margin: 0px;
border-style: none;
}
2021-03-19 00:45:59 +13:00
QPushButton#menu_button {
2021-03-10 06:13:04 +13:00
background-color: transparent;
border: none;
}
2021-03-19 00:45:59 +13:00
QPushButton:hover#menu_button {
2021-03-10 06:13:04 +13:00
background-color: #334;
}
2021-03-10 06:13:04 +13:00
QLineEdit {
border: 1px solid white;
}
2021-02-27 07:28:54 +13:00
2021-03-19 00:45:59 +13:00
QCheckBox {
2021-03-10 06:13:04 +13:00
color: #F0F0F0;
background-color: none;
}
2021-04-09 23:30:59 +12:00
QCheckBox::indicator {
2021-04-09 23:30:59 +12:00
}
2021-02-27 07:28:54 +13:00
2021-03-10 06:13:04 +13:00
2021-02-27 07:28:54 +13:00
#list_widget {
border-top: 2px solid white;
2021-02-18 06:44:24 +13:00
}
2021-02-27 07:28:54 +13:00
QPushButton:hover#installed_menu_button {
2021-02-18 06:44:24 +13:00
background-color: green;
2021-02-20 00:57:55 +13:00
}
2021-02-27 07:28:54 +13:00
QTabBar::tab#settings_bar {
2021-02-20 00:57:55 +13:00
border-radius: 0;
}
QTabBar::tab:hover#settings_bar {
border-left: 2px solid white;
}
QTabBar::tab::selected#settings_bar {
background-color: darkslategrey;
}
2021-03-10 06:13:04 +13:00
2021-03-19 00:45:59 +13:00
#search_bar {
2021-03-10 06:13:04 +13:00
padding: 3px;
border-radius: 5px;
background-color: #334;
}
QTabBar::tab:disabled#settings_bar {
color: transparent;
background-color: transparent;
}
2021-02-28 03:54:26 +13:00
/*
QScrollBar:vertical{
border: 1px solid white;
}
QScrollBar::handle:vertical{
background-color: gray;
border-radius: 4px;
}
*/