Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gui: Fix scroll area dark theme styles #1785

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 4 additions & 24 deletions src/qt/forms/researcherwizardauthpage.ui
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,6 @@
<string>Gridcoin needs to verify your BOINC account CPID. Please follow the instructions below to change your BOINC account username. The network needs 24 to 48 hours to verify a new CPID.</string>
</property>
<layout class="QVBoxLayout" name="authPageLayout">
<item>
<spacer name="headerSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>10</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="step1Label">
<property name="text">
Expand Down Expand Up @@ -194,13 +178,6 @@
</property>
</spacer>
</item>
<item>
<widget class="Line" name="line">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QScrollArea" name="rememberScrollArea">
<property name="widgetResizable">
Expand All @@ -215,9 +192,12 @@
<x>0</x>
<y>0</y>
<width>610</width>
<height>266</height>
<height>291</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QLabel" name="rememberLabel">
Expand Down
8 changes: 4 additions & 4 deletions src/qt/res/stylesheets/dark_stylesheet.qss
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ QMenu::item:selected {
color:white;
}

QScrollArea > QWidget > QWidget {
background-color: rgb(49,54,59);
}

/* horizontal scrollbar */

QScrollBar:horizontal {
Expand Down Expand Up @@ -517,10 +521,6 @@ QToolBar#toolbar3 QLabel{
background-color: rgb(49,54,59);
}

#scrollAreaWidgetContents{
background-color: rgb(49,54,59);
}

/* options dialog */

#OptionsDialog #statusLabel{
Expand Down