diff --git a/applets/kickoff/package/contents/ui/FullRepresentation.qml b/applets/kickoff/package/contents/ui/FullRepresentation.qml --- a/applets/kickoff/package/contents/ui/FullRepresentation.qml +++ b/applets/kickoff/package/contents/ui/FullRepresentation.qml @@ -118,18 +118,18 @@ id: header } - Rectangle { + PlasmaCore.SvgItem { id: headerSeparator - - height: Math.floor(units.devicePixelRatio) - color: theme.textColor - opacity: 0.2 - width: root.width - 2 * units.gridUnit - anchors { top: header.top horizontalCenter: header.horizontalCenter } + height: Math.floor(units.devicePixelRatio) + width: root.width - 2 * units.gridUnit + elementId: "horizontal-line" + svg: PlasmaCore.Svg { + imagePath: "widgets/line" + } } Item { @@ -234,6 +234,7 @@ PropertyChanges { target:tabBarSeparator width: Math.floor(units.devicePixelRatio) + elementId: "vertical-line" } AnchorChanges { target: tabBarSeparator @@ -284,6 +285,7 @@ PropertyChanges { target:tabBarSeparator height: Math.floor(units.devicePixelRatio) + elementId: "horizontal-line" } AnchorChanges { target: tabBarSeparator @@ -334,6 +336,7 @@ PropertyChanges { target:tabBarSeparator width: Math.floor(units.devicePixelRatio) + elementId: "vertical-line" } AnchorChanges { target: tabBarSeparator @@ -391,6 +394,7 @@ PropertyChanges { target:tabBarSeparator height: Math.floor(units.devicePixelRatio) + elementId: "horizontal-line" } AnchorChanges { target: tabBarSeparator @@ -447,11 +451,11 @@ } } // tabBar - Rectangle { + PlasmaCore.SvgItem { id: tabBarSeparator - - color: theme.textColor - opacity: 0.2 + svg: PlasmaCore.Svg { + imagePath: "widgets/line" + } } MouseArea {