aboutsummaryrefslogtreecommitdiff
path: root/src/client/views
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views')
-rw-r--r--src/client/views/ContextMenu.scss10
-rw-r--r--src/client/views/ContextMenuItem.tsx2
2 files changed, 5 insertions, 7 deletions
diff --git a/src/client/views/ContextMenu.scss b/src/client/views/ContextMenu.scss
index 795529780..41a6dc569 100644
--- a/src/client/views/ContextMenu.scss
+++ b/src/client/views/ContextMenu.scss
@@ -3,14 +3,12 @@
.contextMenu-cont {
position: absolute;
display: flex;
- z-index: $contextMenu-zindex;
- box-shadow: $medium-gray 0.2vw 0.2vw 0.4vw;
+ z-index: 100000;
+ box-shadow: 0px 3px 4px rgba(0,0,0,30%);
flex-direction: column;
background: whitesmoke;
- padding-top: 10px;
- padding-bottom: 10px;
- border-radius: 15px;
- border: solid #BBBBBBBB 1px;
+ border-radius: 3px;
+ border: solid $light-gray 1px;
}
// .contextMenu-item:first-child {
diff --git a/src/client/views/ContextMenuItem.tsx b/src/client/views/ContextMenuItem.tsx
index 6fe2abd21..168fcb888 100644
--- a/src/client/views/ContextMenuItem.tsx
+++ b/src/client/views/ContextMenuItem.tsx
@@ -90,7 +90,7 @@ export class ContextMenuItem extends React.Component<ContextMenuProps & { select
</span>
) : null}
<div className="contextMenu-description">
- {this.props.description}
+ {this.props.description.replace(":","")}
</div>
</div>
);