aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DocumentDecorations.scss
diff options
context:
space:
mode:
authorJude <julie_wang1@brown.edu>2019-03-09 11:28:34 -0500
committerJude <julie_wang1@brown.edu>2019-03-09 11:28:34 -0500
commitf858a4fc74476c5720cc215c70f12733d757d085 (patch)
tree3a984187eec283ae056448bbf3d1aa429161aaad /src/client/views/DocumentDecorations.scss
parent2d9c1fd55c4d2c9bf275aeaf6a83703cebba374f (diff)
improved text node and reduced selection border thickness
Diffstat (limited to 'src/client/views/DocumentDecorations.scss')
-rw-r--r--src/client/views/DocumentDecorations.scss64
1 files changed, 32 insertions, 32 deletions
diff --git a/src/client/views/DocumentDecorations.scss b/src/client/views/DocumentDecorations.scss
index 8ce9796f1..dc8c3a0cc 100644
--- a/src/client/views/DocumentDecorations.scss
+++ b/src/client/views/DocumentDecorations.scss
@@ -1,33 +1,33 @@
-@import 'global_variables';
+@import "global_variables";
#documentDecorations-container {
- position: absolute;
- display: grid;
- z-index: 1000;
- grid-template-rows: 20px 1fr 20px;
- grid-template-columns: 20px 1fr 20px;
- pointer-events: none;
- #documentDecorations-centerCont {
- background: none;
- }
- .documentDecorations-resizer {
- pointer-events: auto;
- background: $light-accent;
- opacity: 0.4;
- }
- #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;
- }
-} \ No newline at end of file
+ position: absolute;
+ display: grid;
+ z-index: 1000;
+ grid-template-rows: 10px 1fr 10px;
+ grid-template-columns: 10px 1fr 10px;
+ pointer-events: none;
+ #documentDecorations-centerCont {
+ background: none;
+ }
+ .documentDecorations-resizer {
+ pointer-events: auto;
+ background: $alt-accent;
+ opacity: 0.4;
+ }
+ #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;
+ }
+}