Bring backs most services
This commit is contained in:
parent
71cb79b08b
commit
ec3bff68ac
16 changed files with 1038 additions and 13 deletions
|
|
@ -18,7 +18,7 @@ NPanel {
|
|||
border.color: Colors.backgroundTertiary
|
||||
border.width: Math.min(1, Style.borderMedium * scaling)
|
||||
width: 340 * scaling
|
||||
height: 300
|
||||
height: 320 // TBC
|
||||
anchors.top: parent.top
|
||||
anchors.right: parent.right
|
||||
anchors.topMargin: Style.marginTiny * scaling
|
||||
|
|
@ -66,6 +66,10 @@ NPanel {
|
|||
}
|
||||
}
|
||||
|
||||
NDivider {
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
||||
DayOfWeekRow {
|
||||
Layout.fillWidth: true
|
||||
spacing: 0
|
||||
|
|
|
|||
10
Widgets/NDivider.qml
Normal file
10
Widgets/NDivider.qml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import QtQuick
|
||||
import Quickshell
|
||||
import Quickshell.Widgets
|
||||
import qs.Services
|
||||
|
||||
Rectangle {
|
||||
width: parent.width
|
||||
height: Math.max(1, Style.borderThin * scaling)
|
||||
color: Colors.outline
|
||||
}
|
||||
|
|
@ -22,7 +22,6 @@ Rectangle {
|
|||
color: root.hovering ? Colors.accentPrimary : "transparent"
|
||||
|
||||
Text {
|
||||
id: iconText
|
||||
anchors.centerIn: parent
|
||||
text: root.icon
|
||||
font.family: "Material Symbols Outlined"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue