* Show declname in java import error * Don't clear window stack when saving preferences * Fixed spacing in source group UI, status view and error view * Resize graph scene rect when widget is resized * Graph node centering respect no animation preference * Fixed undoing of view commands * Avoid scrollbar jump when restoring graph scroll position * Deactivate local symbols in code when clicking into empty space
124 lines
2.5 KiB
CSS
124 lines
2.5 KiB
CSS
QTabWidget::tab-bar {
|
|
alignment: left;
|
|
}
|
|
|
|
QTabBar::tab {
|
|
background-color: <color:tab/background>;
|
|
color: <color:tab/text>;
|
|
padding: 12px 75px 5px 12px;
|
|
border: 0px;
|
|
border-bottom: 4px solid <color:tab/background>;
|
|
/*font-size: <setting:font_size>px;*/
|
|
/*font-weight: bold;*/
|
|
}
|
|
|
|
QTabBar::tab:hover {
|
|
border-bottom: 4px solid <color:tab/hover>;
|
|
}
|
|
|
|
QTabBar::tab:selected {
|
|
border-bottom: 4px solid <color:tab/active>;
|
|
color: <color:tab/active>;
|
|
}
|
|
|
|
QTabWidget::pane {
|
|
top: 0px;
|
|
background: <color:tab/background>;
|
|
color: <color:tab/text>;
|
|
border: 0px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
|
|
QTableView {
|
|
color: <color:table/text/normal>;
|
|
background-color: <color:table/table_line_1/normal>;
|
|
alternate-background-color: <color:table/table_line_2/normal>;
|
|
border-radius: 10px;
|
|
border: 1px solid <color:table/table>;
|
|
margin: 10px 10px 2px;
|
|
padding-right: 10px;
|
|
font-size: <setting:font_size>px;
|
|
}
|
|
|
|
QFrame {
|
|
background-color: <color:tab/background>;
|
|
}
|
|
|
|
QTableView::item {
|
|
border-left: 1px solid <color:table/table>;
|
|
}
|
|
|
|
QTableView::item:selected {
|
|
color: <color:table/text/active>;
|
|
background-color: <color:table/table_line_1/active>;
|
|
alternate-background-color: <color:table/table_line_2/active>;
|
|
}
|
|
|
|
QHeaderView {
|
|
background-color: transparent;
|
|
}
|
|
|
|
QHeaderView::section:horizontal {
|
|
background-color: transparent;
|
|
border: none;
|
|
border-bottom: 1px solid <color:table/table>;
|
|
border-left: 1px solid <color:table/table>;
|
|
color: <color:table/text/normal>;
|
|
font-size: <setting:font_size>px;
|
|
font-weight: bold;
|
|
padding: 1px 6px;
|
|
height: <setting:font_size+5>px;
|
|
}
|
|
|
|
QHeaderView::section:vertical {
|
|
background-color: transparent;
|
|
border: none;
|
|
color: <color:table/text/normal>;
|
|
font-size: <setting:font_size>px;
|
|
padding-right: 5px;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
|
|
QCheckBox {
|
|
color: <color:table/text/normal>;
|
|
border-color: <color:table/table>;
|
|
margin: 0;
|
|
/*background-color: <color:table/table>;*/
|
|
}
|
|
|
|
QScrollBar:vertical {
|
|
}
|
|
|
|
QScrollBar::handle:vertical {
|
|
min-height: 20px;
|
|
}
|
|
|
|
QScrollBar::add-line:vertical {
|
|
height: 20px;
|
|
subcontrol-position: bottom;
|
|
subcontrol-origin: margin;
|
|
}
|
|
|
|
QScrollBar::sub-line:vertical {
|
|
height: 20px;
|
|
subcontrol-position: top;
|
|
subcontrol-origin: margin;
|
|
}
|
|
QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical {
|
|
width: 3px;
|
|
height: 3px;
|
|
background: white;
|
|
}
|
|
|
|
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
|
|
background: none;
|
|
}
|
|
|
|
QTableView QTableCornerButton::section {
|
|
background-color: <color:table/background>;
|
|
border-bottom: 1px solid <color:table/table>;
|
|
border-top-left-radius: 10px;
|
|
}
|