stremio-web/src/common/Popup/styles.less
2023-10-23 20:16:10 +03:00

56 lines
No EOL
1.4 KiB
Text

// Copyright (C) 2017-2023 Smart code 203358507
@import (reference) '~@stremio/stremio-colors/less/stremio-colors.less';
.label-container {
// IOS specific
// prevents showing the default context-menu when long pressing an anchor in safari.
-webkit-touch-callout: none !important;
position: relative;
overflow: visible;
.menu-container {
position: absolute;
z-index: 1;
overflow: hidden;
visibility: hidden;
border-radius: var(--border-radius);
background-color: var(--modal-background-color);
box-shadow: var(--outer-glow);
cursor: auto;
margin-top: 1rem;
&.menu-direction-top-left {
top: initial;
right: 0;
bottom: 100%;
left: initial;
visibility: visible;
}
&.menu-direction-bottom-left {
top: 100%;
right: 0;
bottom: initial;
left: initial;
visibility: visible;
}
&.menu-direction-top-right {
top: initial;
right: initial;
bottom: 100%;
left: 0;
visibility: visible;
}
&.menu-direction-bottom-right {
top: 100%;
right: initial;
bottom: initial;
left: 0;
visibility: visible;
}
}
}