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