-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gui/toolmenuheaderwidget: Use ledBorder instead of BlinkingButton.
The led color will be set through a style property. The led is new handled here. Signed-off-by: andreidanila1 <[email protected]>
- Loading branch information
1 parent
39e7f25
commit 6a677bb
Showing
4 changed files
with
79 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
QWidget[&&property&&="idle"] { | ||
border-left: &border_width_2& solid transparent; | ||
border-radius: 0; | ||
} | ||
|
||
QWidget[&&property&&="error"] { | ||
border-left: &border_width_2& solid red; | ||
border-radius: 0; | ||
} | ||
|
||
QWidget[&&property&&="success"] { | ||
border-left: &border_width_2& solid green; | ||
border-radius: 0; | ||
} |