aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/ContextMenu.scss
blob: f6830d9cd379943aae412b0fcf5cf99736e18145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@import "global_variables";
.contextMenu-cont {
  position: absolute;
  display: flex;
  z-index: 1000;
  box-shadow: $intermediate-color 0.2vw 0.2vw 0.4vw;
  flex-direction: column;
}

.contextMenu-item:first-child {
  background: $intermediate-color;
  color: $light-color;
}

.contextMenu-item:first-child::placeholder {
  color: $light-color;
}

.contextMenu-item:first-child:hover {
  background: $intermediate-color;
  color: $light-color;
}

.contextMenu-item {
  width: auto;
  height: auto;
  background: $light-color-secondary;
  display: flex;
  justify-content: left;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.1s;
  border-width: 0.11px;
  border-style: none;
  border-color: $intermediate-color;
  border-bottom-style: solid;
  padding: 10px;
  white-space: nowrap;
  font-size: 13px;
}

.contextMenu-item:hover {
  transition: all 0.1s;
  background: $lighter-alt-accent;
}

.contextMenu-description {
  text-align: left;
  width: 8vw;
}