Added CompositView, which implements both View and ViewLayout, for combining Views to one Widget. The layout can be set to either horizontal or vertical. SearchView, RefreshView and UndoRedoView are combined to one DockWidget by the ComponentManager now. fortune cookie message = You'll get more secure and confident with your relationship with your co-workers.
73 lines
1.3 KiB
CSS
73 lines
1.3 KiB
CSS
#search_bar {
|
|
background: white;
|
|
}
|
|
|
|
QWidget#search_box_container {
|
|
background: #E0E0E0;
|
|
border: none;
|
|
border-bottom-left-radius: 12px;
|
|
border-top-left-radius: 12px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
QLineEdit#search_box {
|
|
background: #E0E0E0;
|
|
border: none;
|
|
font-family: "Source Code Pro";
|
|
font-size: 16px;
|
|
height: 24px;
|
|
selection-background-color: #B2B2B2;
|
|
}
|
|
|
|
QWidget#search_box_highlight {
|
|
background: #B2B2B2;
|
|
border: none;
|
|
height: 24px;
|
|
}
|
|
|
|
QAbstractItemView#search_box_popup {
|
|
background-color: white;
|
|
border: none;
|
|
font-family: "Source Code Pro";
|
|
font-size: 14pt;
|
|
margin: 8px 0 0;
|
|
min-height: 26px;
|
|
selection-background-color: #B2B2B2;
|
|
}
|
|
|
|
QPushButton#search_button {
|
|
background: #E0E0E0;
|
|
border: none;
|
|
border-bottom-right-radius: 12px;
|
|
border-top-right-radius: 12px;
|
|
background-position: 15px 5px;
|
|
height: 30px;
|
|
width: 30px;
|
|
}
|
|
|
|
#search_button:hover {
|
|
background: #B2B2B2;
|
|
}
|
|
|
|
#search_button:pressed {
|
|
background: #626262;
|
|
}
|
|
|
|
/*QPushButton#case_sensitive_button {
|
|
border: none;
|
|
border-image: url(data/gui/search_view/images/button_case_sensitive_inactive.png);
|
|
height: 26px;
|
|
width: 26px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
QPushButton#case_sensitive_button:checked {
|
|
border-image: url(data/gui/search_view/images/button_case_sensitive_active.png);
|
|
}*/
|
|
|
|
QToolTip {
|
|
background-color: rgb(204, 204, 204);
|
|
border: 1px solid rgb(0, 0, 0);
|
|
color: rgb(0, 0, 0);
|
|
}
|