diff options
Diffstat (limited to 'src/main/resources/base/app.qss')
-rw-r--r-- | src/main/resources/base/app.qss | 32 |
1 files changed, 24 insertions, 8 deletions
diff --git a/src/main/resources/base/app.qss b/src/main/resources/base/app.qss index 0d6e912..723bfa3 100644 --- a/src/main/resources/base/app.qss +++ b/src/main/resources/base/app.qss @@ -16,6 +16,10 @@ QLineEdit:focus{ border-color: #7cabf9; } +QFrame{ + background-color: white; +} + QTabBar { qproperty-drawBase: 0; left: 5px; @@ -89,7 +93,8 @@ QTabBar::tab:bottom:only-one { } QDockWidget { - color: #828282; + color: white; + background-color: white; border: 1px solid #e6e6e6; } @@ -113,19 +118,24 @@ QDockWidget::float-button:pressed { background-color: #e0e0e0; } +QScrollArea{ + border-style: none; + border-width: 0px; +} + QToolButton { color: #f2f2f2; text-align: center; background-color: rgba(213, 213, 213, 0); - border: 1px solid #828282; + border: 0px solid #828282; outline: none; + border-radius: 8px; } QToolButton:hover, QToolButton:focus { color: black; - background-color: qlineargradient(spread:pad, x1:1, y1:0.545, x2:1, y2:0, stop:0 #3874f2, stop:1 #5e90fa); - border-color: #3874f2; + border: 3px solid #3874f2; } QToolButton:disabled, @@ -145,13 +155,18 @@ QToolButton:checked { } sectionLabel{ + border-color: gray; border-style: solid; - border-color: grey; + border-width: 0px 0px 1px 0px; padding-bottom: 3px; margin-bottom: 3px; - margin-top: 5px; + margin-top: 10px; text-align: left; - border-width: 0px 0px 2px 0px; + font-size: 20px; +} + +sectionLabel:first-child{ + margin-top: 0px; } customView QPushButton{ @@ -184,4 +199,5 @@ customTabWidget::pane { border: 2px solid #E6E6E3; border-radius: 7px; padding: 1px; - background-color: #E6E6E3;} + background-color: #E6E6E3; +}
\ No newline at end of file |