| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 | 
							- /**
 - * Initialize
 - **/
 - 
 - .popupmenu {
 -     min-width: 75px;
 -     text-align: left;
 -     padding: 0px;
 -     width: 150px;
 -     white-space: nowrap;
 - 
 -     &__item {
 -         list-style-type: none;
 -         height: 35px;
 -     }
 - 
 -     // Link Appearance
 -     &__link,
 -     &__contents {
 -         display: block;
 -         box-sizing: border-box;
 -         text-decoration: none;
 -         height: 100%;
 -         font-size: 9pt;
 -         width: 100%;
 -         cursor: pointer;
 -         padding: 0 5px;
 -         color: $popupMenuColor;
 - 
 -         &:hover {
 -             background-color: $popupMenuHoverBackground;
 -             color: $popupMenuHoverColor;
 -         }
 - 
 -         &.disabled {
 -             pointer-events: none;
 -         }
 -     }
 - 
 -     &__text {
 -         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%;
 - 
 -                 &::-webkit-slider-runnable-track {
 -                     background-color: $popupSliderColor;
 -                 }
 - 
 -                 &::-moz-range-track {
 -                     background-color: $popupSliderColor;
 -                 }
 - 
 -                 &::-ms-fill-lower {
 -                     background-color: $popupSliderColor;
 -                 }
 -             }
 -         }
 -     }
 - 
 -     &__icon {
 -         vertical-align: middle;
 -         position: relative;
 -         display: inline-block;
 -         min-width: 20px;
 -         height: 100%;
 - 
 -         > * {
 -             @include absoluteAligning();
 -         }
 -     }
 - 
 -     .icon-kick,
 -     .icon-play,
 -     .icon-stop {
 -         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: -16px -24px;
 - }
 - 
 - span.remotevideomenu:hover ul.popupmenu, ul.popupmenu:hover {
 -     display:block !important;
 - }
 
 
  |