summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/memory_graph.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/memory_graph.scss')
-rw-r--r--app/assets/stylesheets/framework/memory_graph.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/memory_graph.scss b/app/assets/stylesheets/framework/memory_graph.scss
index 8473f2ef094..81cdf6b59e4 100644
--- a/app/assets/stylesheets/framework/memory_graph.scss
+++ b/app/assets/stylesheets/framework/memory_graph.scss
@@ -1,16 +1,22 @@
.memory-graph-container {
svg {
background: $white-light;
+ cursor: pointer;
+
+ &:hover {
+ box-shadow: 0 0 4px $gray-darkest inset;
+ }
}
path {
fill: none;
stroke: $blue-500;
- stroke-width: 1px;
+ stroke-width: 2px;
}
circle {
stroke: $blue-700;
fill: $blue-700;
+ stroke-width: 4px;
}
}