mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-03 22:19:36 +02:00
119 lines
2.2 KiB
Plaintext
119 lines
2.2 KiB
Plaintext
/*
|
|
Colors:
|
|
White: #f6f5f5
|
|
Dark gray: #323541 (darker: #00020E lighter: #4C4F5B)
|
|
Darker gray: #272a36
|
|
*/
|
|
|
|
QMainWindow
|
|
{
|
|
/* background-color: #f6f5f5;*/
|
|
background-color: #272a36;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/*QToolButton {
|
|
color: #f6f5f5;
|
|
}
|
|
*/
|
|
|
|
QToolButton::hover, QToolButton::checked {
|
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 1,
|
|
stop: 0 #0c0927, stop: 1 #00020E);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
QToolButton::checked:hover {
|
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 1,
|
|
stop: 0 #0c0927, stop: 1 #191C28);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
QToolBar::separator:horizontal {
|
|
/* background-color: #272a36;
|
|
width: 3px;
|
|
color: #f6f5f5;
|
|
/* image: url(:/separator); */
|
|
width: 64;
|
|
}
|
|
|
|
QListView, QTableView {
|
|
background-color: #323541;
|
|
border: 1px solid #323541;
|
|
}
|
|
|
|
QListView::item {
|
|
color: #f6f5f5;
|
|
}
|
|
|
|
QListView::item:alternate {
|
|
background: #EEEEEE;
|
|
}
|
|
|
|
QListView::item:selected {
|
|
background: #272a36;
|
|
}
|
|
|
|
QGraphicsView,
|
|
QPlainTextEdit {
|
|
border-style: none;
|
|
}
|
|
|
|
QPushButton#zoom-in,
|
|
QPushButton#zoom-out,
|
|
QPushButton#reset-zoom,
|
|
QPushButton#zoom-fit {
|
|
background-color: rgba(0, 0, 0, 0%);
|
|
}
|
|
|
|
QPushButton:hover#zoom-in, QPushButton:checked#zoom-in,
|
|
QPushButton:hover#zoom-out, QPushButton:checked#zoom-out,
|
|
QPushButton:hover#reset-zoom, QPushButton:checked#reset-zoom,
|
|
QPushButton:hover#zoom-fit, QPushButton:checked#zoom-fit {
|
|
background-color: qlineargradient(x1: 0, y1: 0, x2: 1, y2: 1,
|
|
stop: 0 #0c0927, stop: 1 #191C28);
|
|
border-radius: 2px;
|
|
border: none;
|
|
}
|
|
|
|
QPushButton:pressed#zoom-in,
|
|
QPushButton:pressed#zoom-out,
|
|
QPushButton:pressed#reset-zoom,
|
|
QPushButton:pressed#zoom-fit {
|
|
border: none;
|
|
}
|
|
|
|
QWidget#zoom-toolbox {
|
|
background-color: #272a36;
|
|
}
|
|
|
|
QTabWidget::pane {
|
|
border: 1px solid #FFF;
|
|
}
|
|
|
|
QTabWidget::tab-bar {
|
|
bottom: 0px;
|
|
}
|
|
|
|
QStatusBar {
|
|
background: #FFF;
|
|
}
|
|
|
|
QStatusBar::item {
|
|
border: 0px solid black;
|
|
}
|
|
|
|
QSplitter::handle:horizontal {
|
|
width: 5px;
|
|
background-color: #323541;
|
|
}
|
|
|
|
QSplitter::handle:vertical {
|
|
height: 5px;
|
|
background-color: #323541;
|
|
}
|
|
|
|
QComboBox QAbstractItemView {
|
|
background: #FFF;
|
|
}
|