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.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/memory_graph.scss b/app/assets/stylesheets/framework/memory_graph.scss
new file mode 100644
index 00000000000..81cdf6b59e4
--- /dev/null
+++ b/app/assets/stylesheets/framework/memory_graph.scss
@@ -0,0 +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: 2px;
+ }
+
+ circle {
+ stroke: $blue-700;
+ fill: $blue-700;
+ stroke-width: 4px;
+ }
+}