File: context-menu.css

package info (click to toggle)
cockpit-podman 67-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,520 kB
  • sloc: javascript: 13,262; python: 6,107; sh: 579; makefile: 146; xml: 16
file content (27 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (2)
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
.contextMenu {
  position: fixed;
  /* xterm accessibility tree has z-index 100 and we need to be in front of it
     * to be able to handle mouse events.
     */
  z-index: 101;
  background: white;
  padding-top: 2px;
  padding-bottom: 2px;
  box-shadow: 0 2px 10px var(--ct-color-subtle-copy);
}

.contextMenuOption {
  padding: 5px 15px;
  min-width: 220px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  border: none;
}

.contextMenuOption:hover,
.contextMenuOption:active {
  background-color: var(--ct-color-link);
  color: white;
}