aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/LinkEditor.scss
diff options
context:
space:
mode:
authorFawn <fangrui_tong@brown.edu>2019-06-13 12:05:06 -0400
committerFawn <fangrui_tong@brown.edu>2019-06-13 12:05:06 -0400
commit8c70b822ddd6f2a92d3f3d30cd54c47efad38605 (patch)
treed5e26b9e79f014b171f6d7a1c45037153c23101a /src/client/views/nodes/LinkEditor.scss
parentbd829aa067912baa08c18c09f5dcfcd3853e45ad (diff)
updated styling on link editor
Diffstat (limited to 'src/client/views/nodes/LinkEditor.scss')
-rw-r--r--src/client/views/nodes/LinkEditor.scss18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/client/views/nodes/LinkEditor.scss b/src/client/views/nodes/LinkEditor.scss
index b56f3046a..df7bd6086 100644
--- a/src/client/views/nodes/LinkEditor.scss
+++ b/src/client/views/nodes/LinkEditor.scss
@@ -110,12 +110,14 @@
flex-direction: column;
}
.linkEditor-option {
- background-color: red;
+ background-color: $light-color-secondary;
border: 1px solid $intermediate-color;
border-top: 0;
+ padding: 3px;
cursor: pointer;
&:hover {
- background-color: $light-color-secondary;
+ background-color: $intermediate-color;
+ font-weight: bold;
}
}
}
@@ -124,10 +126,10 @@
height: 20px;
display: flex;
justify-content: space-between;
- button {
- width: 31%;
+ .linkEditor-groupOpts {
+ width: calc(33% - 3px);
height: 20px;
- margin-left: 6px;
+ // margin-left: 6px;
padding: 0;
font-size: 10px;
&:first-child { // delete
@@ -137,4 +139,10 @@
background-color: gray;
}
}
+ .linkEditor-groupOpts button {
+ width: 100%;
+ height: 20px;
+ font-size: 10px;
+ padding: 0;
+ }
} \ No newline at end of file