| 1 | .OwnerStack { |
| 2 | max-width: 100%; |
| 3 | overflow-x: auto; |
| 4 | flex: 1; |
| 5 | display: flex; |
| 6 | align-items: center; |
| 7 | position: relative; |
| 8 | } |
| 9 | |
| 10 | .Component, |
| 11 | .Component[data-reach-menu-item] { |
| 12 | font-family: var(--font-family-monospace); |
| 13 | font-size: var(--font-size-monospace-normal); |
| 14 | user-select: none; |
| 15 | white-space: nowrap; |
| 16 | display: flex; |
| 17 | align-items: center; |
| 18 | } |
| 19 | |
| 20 | .Component[data-reach-menu-item][data-selected], |
| 21 | .Component[data-reach-menu-item][data-selected]:hover { |
| 22 | color: var(--color-text-selected); |
| 23 | background: var(--color-background-selected); |
| 24 | } |
| 25 | .Component[data-reach-menu-item][data-selected]:focus { |
| 26 | outline: none; |
| 27 | } |
| 28 | |
| 29 | .Bar { |
| 30 | display: flex; |
| 31 | flex: 1 1 auto; |
| 32 | overflow-x: auto; |
| 33 | } |
| 34 | |
| 35 | .OwnerStackFlatListContainer { |
| 36 | display: inline-flex; |
| 37 | align-items: baseline; |
| 38 | } |
| 39 | |
| 40 | .OwnerStackFlatListSeparator { |
| 41 | user-select: none; |
| 42 | } |
| 43 | |
| 44 | .VRule { |
| 45 | flex: 0 0 auto; |
| 46 | height: 20px; |
| 47 | width: 1px; |
| 48 | background-color: var(--color-border); |
| 49 | margin: 0 0.5rem; |
| 50 | } |
| 51 | |
| 52 | .MenuButton { |
| 53 | border-radius: 0.25rem; |
| 54 | display: inline-flex; |
| 55 | align-items: center; |
| 56 | padding: 0; |
| 57 | flex: 0 0 auto; |
| 58 | border: none; |
| 59 | background: var(--color-button-background); |
| 60 | color: var(--color-button); |
| 61 | } |
| 62 | .MenuButtonContent { |
| 63 | display: inline-flex; |
| 64 | align-items: center; |
| 65 | border-radius: 0.25rem; |
| 66 | padding: 0.25rem; |
| 67 | } |
| 68 | .MenuButton:hover { |
| 69 | color: var(--color-button-hover); |
| 70 | } |
| 71 | .MenuButton[aria-expanded='true'], |
| 72 | .MenuButton[aria-expanded='true']:active { |
| 73 | color: var(--color-button-active); |
| 74 | outline: none; |
| 75 | } |
| 76 | |
| 77 | .MenuButton:focus, |
| 78 | .MenuButtonContent:focus { |
| 79 | outline: none; |
| 80 | } |
| 81 | .MenuButton:focus > .MenuButtonContent { |
| 82 | background: var(--color-button-background-focus); |
| 83 | } |
| 84 | |
| 85 | .Modal[data-reach-menu-list] { |
| 86 | display: inline-flex; |
| 87 | flex-direction: column; |
| 88 | background-color: var(--color-background); |
| 89 | color: var(--color-button); |
| 90 | padding: 0.25rem 0; |
| 91 | padding-right: 0; |
| 92 | border: 1px solid var(--color-border); |
| 93 | border-radius: 0.25rem; |
| 94 | max-height: 10rem; |
| 95 | overflow: auto; |
| 96 | |
| 97 | /* Make sure this is above the DevTools, which are above the Overlay */ |
| 98 | z-index: 10000002; |
| 99 | position: relative; |
| 100 | |
| 101 | /* Reach UI tries to set its own :( */ |
| 102 | font-family: var(--font-family-monospace); |
| 103 | font-size: var(--font-size-monospace-normal); |
| 104 | } |
| 105 | |
| 106 | .NotInStore, |
| 107 | .NotInStore:hover { |
| 108 | color: var(--color-dimmest); |
| 109 | } |
| 110 | |
| 111 | .BadgesBlock { |
| 112 | margin-left: 0.25rem; |
| 113 | } |