aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DocumentDecorations.scss
diff options
context:
space:
mode:
authorFawn <fangrui_tong@brown.edu>2019-04-01 17:22:49 -0400
committerFawn <fangrui_tong@brown.edu>2019-04-01 17:22:49 -0400
commit5246c3c38acda6cbd8636577ff8f658657609d88 (patch)
tree6c8e055add9837a8d050de7498f7d4d8432c6215 /src/client/views/DocumentDecorations.scss
parent0ae1eac2e2b26c0eee747c81ea1478118b4ec874 (diff)
set up for templating
Diffstat (limited to 'src/client/views/DocumentDecorations.scss')
-rw-r--r--src/client/views/DocumentDecorations.scss18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/client/views/DocumentDecorations.scss b/src/client/views/DocumentDecorations.scss
index 11595aa01..642d7caf3 100644
--- a/src/client/views/DocumentDecorations.scss
+++ b/src/client/views/DocumentDecorations.scss
@@ -1,4 +1,5 @@
@import "global_variables";
+
#documentDecorations-container {
position: absolute;
display: grid;
@@ -6,26 +7,32 @@
grid-template-rows: 8px 1fr 8px 30px;
grid-template-columns: 8px 1fr 8px;
pointer-events: none;
+
#documentDecorations-centerCont {
background: none;
}
+
.documentDecorations-resizer {
pointer-events: auto;
background: $alt-accent;
opacity: 0.8;
}
+
#documentDecorations-topLeftResizer,
#documentDecorations-bottomRightResizer {
cursor: nwse-resize;
}
+
#documentDecorations-topRightResizer,
#documentDecorations-bottomLeftResizer {
cursor: nesw-resize;
}
+
#documentDecorations-topResizer,
#documentDecorations-bottomResizer {
cursor: ns-resize;
}
+
#documentDecorations-leftResizer,
#documentDecorations-rightResizer {
cursor: ew-resize;
@@ -115,4 +122,15 @@
display: flex;
justify-content: center;
align-items: center;
+}
+
+.templating-button {
+ height: 20px;
+ width: 20px;
+ margin-top: 10px;
+ border-radius: 50%;
+ opacity: 0.9;
+ pointer-events: auto;
+ background-color: red;
+ cursor: pointer;
} \ No newline at end of file