Skip to content

Commit d41a690

Browse files
committed
qt: Remove scrollbar.css and all its remaining mentions
1 parent 519b167 commit d41a690

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

src/Makefile.qt.include

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,6 @@ RES_CSS = \
351351
qt/res/css/dark.css \
352352
qt/res/css/general.css \
353353
qt/res/css/light.css \
354-
qt/res/css/scrollbars.css \
355354
qt/res/css/traditional.css
356355

357356
RES_FONTS = \

src/qt/dash.qrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@
5656
</qresource>
5757
<qresource prefix="/css">
5858
<file alias="general">res/css/general.css</file>
59-
<file alias="scrollbars">res/css/scrollbars.css</file>
6059
<file alias="Dark">res/css/dark.css</file>
6160
<file alias="Light">res/css/light.css</file>
6261
<file alias="Traditional">res/css/traditional.css</file>

src/qt/guiutil.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ static const QString darkThemePrefix = "Dark";
9797
static const std::map<QString, QString> mapStyleToTheme {{"general.css", ""},
9898
{"dark.css", "Dark"},
9999
{"light.css", "Light"},
100-
{"traditional.css", "Traditional"},
101-
{"scrollbars.css", ""}};
100+
{"traditional.css", "Traditional"}};
102101

103102
/** Font related default values.
104103
* TODO: Evaluate maybe wrapping this later into some "theme handler" or so..

src/qt/res/css/general.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ loaded and combined in `GUIUtil::loadStyleSheet()` in guitil.cpp.
1111
Hierarchy:
1212
1313
* general.css - base layout: Loaded first if selected theme is not "Traditional" (traditional.css)
14-
* scrollbars.css - custom scrollbars: Loaded second only for windows/linux if general.css is loaded
15-
* <theme.css> - theme css file: Always loaded and loaded last.
14+
* <theme.css> - theme css file: Always loaded last.
1615
1716
To replace <theme.css> there are currently the following themes available:
1817

0 commit comments

Comments
 (0)