Dock fan-out stacks, drag-to-combine, pill gesture rewrite, and the ii patch set (TaskbarApps stacks API, Config dock.stacks schema) — pulled from the live phone and made canonical here. deploy.sh grew a manifest and a --phone mode: rsync the surface over, symlink ii into it, so live edits land in a git tree instead of drifting.
13 lines
371 B
QML
13 lines
371 B
QML
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
RippleButton {
|
|
Layout.fillHeight: true
|
|
Layout.topMargin: Appearance.sizes.elevationMargin - Appearance.sizes.hyprlandGapsOut
|
|
implicitWidth: implicitHeight - topInset - bottomInset
|
|
buttonRadius: Appearance.rounding.normal
|
|
|
|
background.implicitHeight: 50
|
|
}
|