Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions panels/notification/bubble/package/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Window {
}

visible: Applet.visible
width: 380
width: 390
height: Math.max(10, bubbleView.height + bubbleView.anchors.topMargin + bubbleView.anchors.bottomMargin)
DLayerShellWindow.layer: DLayerShellWindow.LayerTop
DLayerShellWindow.anchors: DLayerShellWindow.AnchorBottom | DLayerShellWindow.AnchorRight
Expand All @@ -57,9 +57,11 @@ Window {
width: 360
height: contentHeight
anchors {
centerIn: parent
margins: 10
topMargin: 20
right: parent.right
bottom: parent.bottom
bottomMargin: 10
rightMargin: 10
margins: 30
}

spacing: 10
Expand Down
3 changes: 1 addition & 2 deletions panels/notification/center/package/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ Window {
anchors {
top: parent.top
left: parent.left
margins: 10
rightMargin: 20
margins: 20
bottom: parent.bottom
}

Expand Down
2 changes: 1 addition & 1 deletion panels/notification/plugin/NotifyItemBackground.qml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Control {
active: control.dropShadowColor
sourceComponent: BoxShadow {
shadowOffsetX: 0
shadowOffsetY: 6
shadowOffsetY: 8
shadowColor: control.ColorSelector.dropShadowColor
shadowBlur: 20
cornerRadius: backgroundRect.radius
Expand Down
6 changes: 4 additions & 2 deletions panels/notification/plugin/NotifyItemContent.qml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ NotifyItem {
color1: Palette {
normal {
common: ("transparent")
crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)
// TODO crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)
crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 1.0)
}
normalDark {
crystal: Qt.rgba(24 / 255.0, 24 / 255.0, 24 / 255.0, 0.5)
// TODO crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)
crystal: Qt.rgba(24 / 255.0, 24 / 255.0, 24 / 255.0, 1.0)
}
}
color2: color1
Expand Down
6 changes: 4 additions & 2 deletions panels/notification/plugin/SettingActionButton.qml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ ActionButton {
color1: Palette {
normal {
common: ("transparent")
crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)
// TODO crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)
crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 1.0)
}
normalDark {
crystal: Qt.rgba(24 / 255.0, 24 / 255.0, 24 / 255.0, 0.5)
// TODO crystal: Qt.rgba(240 / 255.0, 240 / 255.0, 240 / 255.0, 0.5)
crystal: Qt.rgba(24 / 255.0, 24 / 255.0, 24 / 255.0, 1.0)
}
}

Expand Down