mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-19 12:22:16 +03:00
8d0df62c49
Signed-off-by: Claudio Cambra <claudio.cambra@gmail.com>
21 lines
637 B
QML
21 lines
637 B
QML
import QtQml 2.15
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.2
|
|
import Style 1.0
|
|
import com.nextcloud.desktopclient 1.0
|
|
|
|
Label {
|
|
required property string section
|
|
|
|
topPadding: Style.unifiedSearchResultSectionItemVerticalPadding
|
|
bottomPadding: Style.unifiedSearchResultSectionItemVerticalPadding
|
|
leftPadding: Style.unifiedSearchResultSectionItemLeftPadding
|
|
|
|
text: section
|
|
font.pixelSize: Style.unifiedSearchResultTitleFontSize
|
|
color: UserModel.currentUser.accentColor
|
|
|
|
Accessible.role: Accessible.Separator
|
|
Accessible.name: qsTr("Search results section %1").arg(section)
|
|
}
|