mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
Actually fix workspaces, fix dim panel
This commit is contained in:
@@ -188,7 +188,7 @@ Item {
|
||||
anchors.fill: parent
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: {
|
||||
WorkspaceManager.switchToWorkspace(model.idx);
|
||||
WorkspaceManager.switchToWorkspace(model.id);
|
||||
}
|
||||
z: 20
|
||||
hoverEnabled: true
|
||||
|
||||
+2
-2
@@ -23,6 +23,6 @@
|
||||
"onAccent": "#0E0F10",
|
||||
"outline": "#565758",
|
||||
|
||||
"shadow": "#B30E0F10",
|
||||
"overlay": "#660E0F10"
|
||||
"shadow": "#0E0F10",
|
||||
"overlay": "#0E0F10"
|
||||
}
|
||||
|
||||
+2
-3
@@ -97,8 +97,8 @@ Singleton {
|
||||
property color outline: themeData.outline
|
||||
|
||||
// Shadows & Overlays
|
||||
property color shadow: themeData.shadow
|
||||
property color overlay: themeData.overlay
|
||||
property color shadow: applyOpacity(themeData.shadow, "B3")
|
||||
property color overlay: applyOpacity(themeData.overlay, "66")
|
||||
|
||||
// Font Properties
|
||||
property string fontFamily: "Roboto" // Family for all text
|
||||
@@ -108,4 +108,3 @@ Singleton {
|
||||
property int fontSizeSmall: 14 // Small text like clock, labels
|
||||
property int fontSizeCaption: 12 // Captions and fine print
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user