Renamed stylesheets to match a common pattern
@@ -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
|
||||
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||