Renamed stylesheets to match a common pattern

This commit is contained in:
Balthasar Reuter
2019-01-10 20:53:10 +01:00
parent 8bf042537d
commit acac19dcc3
9 changed files with 12 additions and 12 deletions

View File

@@ -19,9 +19,9 @@
# Available style sheets as tuples of (style name, style file)
styles = (('default', 'stylesheets/default.qss'),
('dark', 'stylesheets/dark.qss'),
('dark (800*600)', 'stylesheets/small-dark.qss'),
('pastel', 'stylesheets/pastel.qss'),
('pastel (800*600)', 'stylesheets/small-pastel.qss'))
('dark (1024 x 600 px)', 'stylesheets/dark-1024x600.qss'),
('dark (800 x 600 px)', 'stylesheets/dark-800x600.qss'),
('pastel (1024 x 600 px)', 'stylesheets/pastel-1024x600.qss'),
('pastel (800 x 600 px)', 'stylesheets/pastel-800x600.qss'))
from .PyQt5Gui import PyQt5Gui # noqa

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -30,7 +30,7 @@ QPushButton:pressed {
/* Idle Screen */
QFrame#IdleMessage {
background-image: url(photobooth/gui/Qt5Gui/images/arrow.png);
background-image: url(photobooth/gui/Qt5Gui/images/arrow-1024x600.png);
background-repeat: no-repeat;
padding: 80px 400px 120px 80px;
}
@@ -96,7 +96,7 @@ QFrame#CountdownMessage {
/* Pose Screen */
QFrame#PoseMessage {
background-image: url(photobooth/gui/Qt5Gui/images/camera.png);
background-image: url(photobooth/gui/Qt5Gui/images/camera-1024x600.png);
background-repeat: no-repeat;
padding: 380px 80px 80px 80px;
}

View File

@@ -30,7 +30,7 @@ QPushButton:pressed {
/* Idle Screen */
QFrame#IdleMessage {
background-image: url(photobooth/gui/Qt5Gui/images/small-arrow.png);
background-image: url(photobooth/gui/Qt5Gui/images/arrow-800x600.png);
background-repeat: no-repeat;
padding: 80px 40px 60px 40px;
}
@@ -95,7 +95,7 @@ QFrame#CountdownMessage {
/* Pose Screen */
QFrame#PoseMessage {
background-image: url(photobooth/gui/Qt5Gui/images/small-camera.png);
background-image: url(photobooth/gui/Qt5Gui/images/camera-800x600.png);
background-repeat: no-repeat;
padding: 280px 80px 80px 80px;
}

View File

@@ -30,7 +30,7 @@ QPushButton:pressed {
/* Idle Screen */
QFrame#IdleMessage {
background-image: url(photobooth/gui/Qt5Gui/images/arrow.png);
background-image: url(photobooth/gui/Qt5Gui/images/arrow-1024x600.png);
background-repeat: no-repeat;
padding: 80px 400px 120px 80px;
}
@@ -96,7 +96,7 @@ QFrame#CountdownMessage {
/* Pose Screen */
QFrame#PoseMessage {
background-image: url(photobooth/gui/Qt5Gui/images/camera.png);
background-image: url(photobooth/gui/Qt5Gui/images/camera-1024x600.png);
background-repeat: no-repeat;
padding: 380px 80px 80px 80px;
}

View File

@@ -30,7 +30,7 @@ QPushButton:pressed {
/* Idle Screen */
QFrame#IdleMessage {
background-image: url(photobooth/gui/Qt5Gui/images/small-arrow.png);
background-image: url(photobooth/gui/Qt5Gui/images/arrow-800x600.png);
background-repeat: no-repeat;
padding: 80px 40px 60px 40px;
}
@@ -95,7 +95,7 @@ QFrame#CountdownMessage {
/* Pose Screen */
QFrame#PoseMessage {
background-image: url(photobooth/gui/Qt5Gui/images/small-camera.png);
background-image: url(photobooth/gui/Qt5Gui/images/camera-800x600.png);
background-repeat: no-repeat;
padding: 280px 80px 80px 80px;
}