2021-03-17 10:16:30 +01:00
|
|
|
import QtQuick 2.13
|
2021-09-28 18:04:06 +03:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-03-17 10:16:30 +01:00
|
|
|
|
2021-10-18 12:34:16 +02:00
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
|
|
|
StatusFlatRoundButton {
|
2021-05-28 13:35:21 -04:00
|
|
|
id: moreActionsBtn
|
2021-10-18 12:34:16 +02:00
|
|
|
implicitHeight: 32
|
|
|
|
implicitWidth: 32
|
2021-05-28 13:35:21 -04:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2021-10-18 12:34:16 +02:00
|
|
|
icon.name: "more"
|
|
|
|
type: StatusFlatRoundButton.Type.Secondary
|
|
|
|
backgroundHoverColor: Style.current.contextMenuButtonBackgroundHoverColor
|
2021-03-17 10:16:30 +01:00
|
|
|
}
|