Added experimental flat layout, part I
This commit is contained in:
@@ -6,17 +6,13 @@ QWidget
|
||||
font-size: 14px;
|
||||
font-family: Segoe UI, sans-serif;
|
||||
}
|
||||
|
||||
/*
|
||||
QMainWindow
|
||||
{
|
||||
background-color: #272727;
|
||||
}
|
||||
*/
|
||||
|
||||
QSplitter
|
||||
{
|
||||
color: red;
|
||||
background-color: #272727;
|
||||
}
|
||||
/* Spezifisches Styling für Buttons */
|
||||
QPushButton
|
||||
{
|
||||
@@ -72,14 +68,8 @@ QToolButton:disabled {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* Styling anhand von Objektnamen (ID) */
|
||||
#loginButton
|
||||
{
|
||||
font-weight: bold;
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
QListView
|
||||
/*
|
||||
QTableView
|
||||
{
|
||||
background-color: #404142;
|
||||
border-radius: 8px;
|
||||
@@ -87,7 +77,7 @@ QListView
|
||||
show-decoration-selected: 0;
|
||||
}
|
||||
|
||||
QListView::item
|
||||
QTableView::item
|
||||
{
|
||||
border: 2px solid #2196F3;
|
||||
border-radius: 8px;
|
||||
@@ -95,26 +85,28 @@ QListView::item
|
||||
margin: 4px;
|
||||
background-color: white;
|
||||
}
|
||||
*/
|
||||
|
||||
QListView::item:hover
|
||||
QTableView::item:hover
|
||||
{
|
||||
border-color: #FF9800;
|
||||
background-color: #fff8f0;
|
||||
}
|
||||
|
||||
QListView::item:selected
|
||||
QTableView::item:selected
|
||||
{
|
||||
border-color: #F44336; /* Roter Rahmen */
|
||||
background-color: #ffebee;
|
||||
}
|
||||
|
||||
QListView::item:selected:hover
|
||||
QTableView::item:selected:hover
|
||||
{
|
||||
border-color: #FF9800;
|
||||
background-color: #ffe0b2;
|
||||
}
|
||||
*/
|
||||
|
||||
QListView::item:focus
|
||||
QTableView::item:focus
|
||||
{
|
||||
/*
|
||||
// outline: none; Entfernt das Focus-Rectangle
|
||||
|
||||
Reference in New Issue
Block a user