Warning, /plasma/qqc2-breeze-style/style/impl/SmallBoxShadow.qml is written in an unsupported language. File is not indexed.

0001 /* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
0002  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0003  */
0004 
0005 import QtQuick
0006 import org.kde.kirigami as Kirigami
0007 
0008 import "." as Impl
0009 
0010 // Simple box shadow which is ideal for subtle shadows, as it is very performant.
0011 Rectangle {
0012     id: root
0013     anchors.top: parent.top
0014     anchors.topMargin: 1
0015     anchors.left: parent.left
0016     anchors.right: parent.right
0017     height: parent.height
0018     z: -1
0019     color: Qt.rgba(0, 0, 0, 0.1)
0020 }