Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/tray/NCButtonBackground.qml')
-rw-r--r--src/gui/tray/NCButtonBackground.qml25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/gui/tray/NCButtonBackground.qml b/src/gui/tray/NCButtonBackground.qml
new file mode 100644
index 000000000..678c5902b
--- /dev/null
+++ b/src/gui/tray/NCButtonBackground.qml
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) by Claudio Cambra <claudio.cambra@nextcloud.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ */
+
+import QtQuick 2.15
+
+Rectangle {
+ property bool hovered: false
+ property real normalOpacity: 0.3
+ property real hoverOpacity: 1.0
+
+ color: "transparent"
+ opacity: hovered ? hoverOpacity : normalOpacity
+ radius: width / 2
+}