]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/context-menu/context-menu-container.component.css
LP1915464 follow-up: use spaces, not tabs; remove extra comma
[Evergreen.git] / Open-ILS / src / eg2 / src / app / share / context-menu / context-menu-container.component.css
1
2 .eg-context-menu {
3   /* These fonts were applied specifically for the MARC editor
4    * context menus.  Might want to make these optional. */
5   font-family: 'Lucida Console', Monaco, monospace;
6
7   /* put a hard limit on the popover width */
8   max-width: 550px;
9 }
10
11 .eg-context-menu .popover-body {
12   max-height: 400px;
13
14   /* Text exceeding the max-height / max-width will results in scrolls.
15    * In most cases, this should not happen. */
16   overflow-y: auto;
17   overflow-x: auto;
18 }
19
20 .eg-context-menu .popover-body .menu-entry {
21   /* force the menu to expand horizontally to display the text */
22   white-space: nowrap;
23 }
24
25 .eg-context-menu .popover-body .menu-entry:hover {
26   background-color: #f8f9fa; 
27 }