aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/flowview.less
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/css/flowview.less')
-rw-r--r--web/src/css/flowview.less31
1 files changed, 30 insertions, 1 deletions
diff --git a/web/src/css/flowview.less b/web/src/css/flowview.less
index aa8a2df2..419739a4 100644
--- a/web/src/css/flowview.less
+++ b/web/src/css/flowview.less
@@ -6,4 +6,33 @@
max-width: 100%;
max-height: 100%;
}
-} \ No newline at end of file
+}
+
+.edit-flow-container {
+ position: relative;
+}
+
+.edit-flow {
+ position: absolute;
+ right: 0px;
+ top: 5px;
+ height: 40px;
+ width: 40px;
+ border-radius: 20px;
+ z-index: 10000;
+
+ background-color: white;
+ border: solid 2px rgba(248, 145, 59, 0.7);
+
+ text-align: center;
+ font-size: 22px;
+ line-height: 37px;
+
+ transition: all 100ms ease-in-out;
+}
+
+.edit-flow:hover {
+ background-color: rgba(239, 108, 0, 0.7);
+ color: rgba(0,0,0,0.8);
+ border: solid 2px transparent;
+}