jiti-meet/css/_popup_menu.scss

100 lines
1.9 KiB
SCSS
Raw Permalink Normal View History

2016-10-27 13:09:27 +00:00
/**
* Initialize
**/
.popupmenu {
min-width: 75px;
text-align: left;
2016-10-20 12:32:08 +00:00
padding: 0;
white-space: nowrap;
2016-10-27 13:09:27 +00:00
&__item {
list-style-type: none;
height: 35px;
2016-10-27 13:09:27 +00:00
&:hover {
background-color: rgba(9, 30, 66, 0.04);
2016-10-27 13:09:27 +00:00
}
}
2016-10-27 13:09:27 +00:00
// Link Appearance
&__link,
&__contents {
2016-10-27 13:09:27 +00:00
display: block;
box-sizing: border-box;
text-decoration: none;
height: 100%;
font-size: 9pt;
width: 100%;
cursor: pointer;
padding: 0 5px;
2016-10-27 13:09:27 +00:00
&.disabled {
pointer-events: none;
}
}
&__text {
2016-10-27 13:09:27 +00:00
display: inline-block;
vertical-align: middle;
}
&__link {
i {
cursor: pointer;
}
}
&__contents {
display: flex;
/**
* Positioning styles on the slider and its container are used to make
* the container fit the popup width, by removing the slider from the
* page flow, and then making the slider fit the container.
*/
.popupmenu__slider_container {
position: relative;
width: 100%;
.popupmenu__slider {
position: absolute;
top: 50%;
transform: translate(0, -50%);
width: 100%;
}
}
}
2016-10-27 13:09:27 +00:00
&__icon {
vertical-align: middle;
position: relative;
display: inline-block;
min-width: 20px;
2016-10-27 13:09:27 +00:00
height: 100%;
2016-10-27 13:09:27 +00:00
> * {
@include absoluteAligning();
}
}
.icon-kick,
.icon-play,
.icon-stop {
2016-10-27 13:09:27 +00:00
font-size: 8pt;
}
}
/**
* Override reset css styling modifying all lists and set negative margin to
* reduce the visibility of padding on AtlasKit
* InlineDialogs.
*/
ul.popupmenu {
margin: -15px;
}
span.remotevideomenu:hover ul.popupmenu, ul.popupmenu:hover {
display:block !important;
}