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.
37 lines
572 B
CSS
37 lines
572 B
CSS
#refresh_bar {
|
|
background: white;
|
|
}
|
|
|
|
QPushButton {
|
|
background: #E0E0E0;
|
|
border: none;
|
|
background-position: 15px 5px;
|
|
height: 30px;
|
|
width: 30px;
|
|
}
|
|
|
|
QPushButton:hover, QPushButton:checked {
|
|
background: #B2B2B2;
|
|
}
|
|
|
|
QPushButton:pressed {
|
|
background: #626262;
|
|
}
|
|
|
|
#refresh_button {
|
|
border-bottom-left-radius: 12px;
|
|
border-top-left-radius: 12px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
#auto_refresh_button {
|
|
border-bottom-right-radius: 12px;
|
|
border-top-right-radius: 12px;
|
|
}
|
|
|
|
QToolTip {
|
|
background-color: rgb(204, 204, 204);
|
|
border: 1px solid rgb(0, 0, 0);
|
|
color: rgb(0, 0, 0);
|
|
}
|