Created
April 7, 2016 05:05
-
-
Save jniemann66/53e7edab0ed39310820f8930a202f968 to your computer and use it in GitHub Desktop.
Making a flashing button in Qt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QPushButton { | |
color: #fff; | |
border: 1px solid #1b2018; | |
border-radius: 9px; | |
padding: 5px; | |
background: qradialgradient(cx: 0.3, cy: -0.4, | |
fx: 0.3, fy: -0.4, | |
radius: 1.35, stop: 0 #46503f, stop: 1 #2d3328); | |
min-width: 66px; | |
} | |
QPushButton:hover { | |
background: qradialgradient(cx: 0.3, cy: -0.4, | |
fx: 0.3, fy: -0.4, | |
radius: 1.35, stop: 0 #535e4a, stop: 1 #3a4234); | |
} | |
QPushButton:pressed { | |
background: qradialgradient(cx: 0.4, cy: -0.1, | |
fx: 0.4, fy: -0.1, | |
radius: 1.35, stop: 0 #70e01a, stop: 1#3b770e); | |
} | |
QPushButton:disabled { | |
background: qradialgradient(cx: 0.4, cy: -0.1, | |
fx: 0.4, fy: -0.1, | |
radius: 1.35, stop: 0 #70e01a, stop: 1#3b770e); | |
} | |
QPushButton:disabled[flashing="true"] { | |
background: qradialgradient(cx: 0.4, cy: -0.1, | |
fx: 0.4, fy: -0.1, | |
radius: 1.35, stop: 0 #3a4234, stop: 1#21251d); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment