More icons
This commit is contained in:
parent
032087b611
commit
b2d629e6a1
4 changed files with 8 additions and 6 deletions
|
|
@ -14,8 +14,10 @@ Singleton {
|
||||||
"settings": "settings",
|
"settings": "settings",
|
||||||
"refresh": "refresh",
|
"refresh": "refresh",
|
||||||
"add": "plus",
|
"add": "plus",
|
||||||
"circle-check": "circle-check",
|
"trash": "trash-filled",
|
||||||
"exclamation-circle": "exclamation-circle",
|
"toast-notice": "circle-check",
|
||||||
|
"toast-warning": "exclamation-circle",
|
||||||
|
"warning": "exclamation-circle",
|
||||||
"stop": "player-stop-filled",
|
"stop": "player-stop-filled",
|
||||||
"media-pause": "player-pause",
|
"media-pause": "player-pause",
|
||||||
"media-play": "player-play",
|
"media-play": "player-play",
|
||||||
|
|
@ -31,7 +33,7 @@ Singleton {
|
||||||
"download-speed": "download",
|
"download-speed": "download",
|
||||||
"upload-speed": "upload",
|
"upload-speed": "upload",
|
||||||
"storage": "device-floppy",
|
"storage": "device-floppy",
|
||||||
"ethernet": "network",
|
"ethernet": "plug-connected",
|
||||||
"keyboard": "keyboard",
|
"keyboard": "keyboard",
|
||||||
|
|
||||||
"shutdown": "power",
|
"shutdown": "power",
|
||||||
|
|
|
||||||
|
|
@ -86,7 +86,7 @@ NPanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
NIcon {
|
NIcon {
|
||||||
icon: "bell-slash"
|
icon: "bell-off"
|
||||||
font.pointSize: 64 * scaling
|
font.pointSize: 64 * scaling
|
||||||
color: Color.mOnSurfaceVariant
|
color: Color.mOnSurfaceVariant
|
||||||
Layout.alignment: Qt.AlignHCenter
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
|
|
||||||
|
|
@ -91,7 +91,7 @@ NPanel {
|
||||||
spacing: Style.marginS * scaling
|
spacing: Style.marginS * scaling
|
||||||
|
|
||||||
NIcon {
|
NIcon {
|
||||||
icon: "exclamation-circle"
|
icon: "warning"
|
||||||
font.pointSize: Style.fontSizeL * scaling
|
font.pointSize: Style.fontSizeL * scaling
|
||||||
color: Color.mError
|
color: Color.mError
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -118,7 +118,7 @@ Item {
|
||||||
// Icon
|
// Icon
|
||||||
NIcon {
|
NIcon {
|
||||||
id: icon
|
id: icon
|
||||||
icon: (root.type == "warning") ? "exclamation-circle" : "circle-check"
|
icon: (root.type == "warning") ? "toast-warning" : "toast-notice"
|
||||||
color: {
|
color: {
|
||||||
switch (root.type) {
|
switch (root.type) {
|
||||||
case "warning":
|
case "warning":
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue