You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_popup_menu.scss 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /**
  2. * Initialize
  3. **/
  4. .popupmenu {
  5. padding: 0;
  6. margin: 2px 0;
  7. bottom: 0;
  8. height: auto;
  9. &:first-child {
  10. margin-top: 2px;
  11. }
  12. &__item {
  13. list-style-type: none;
  14. text-align: left;
  15. height: 35px;
  16. &:hover {
  17. background-color: $popupMenuSelectedItemBackground;
  18. }
  19. }
  20. // Link Appearance
  21. &__link {
  22. display: block;
  23. box-sizing: border-box;
  24. text-decoration: none;
  25. color: #fff;
  26. padding: 5px;
  27. height: 100%;
  28. font-size: 9pt;
  29. width: 100%;
  30. cursor: hand;
  31. &.disabled {
  32. color: gray !important;
  33. pointer-events: none;
  34. }
  35. }
  36. &__text {
  37. display: inline-block;
  38. vertical-align: middle;
  39. }
  40. &__icon {
  41. vertical-align: middle;
  42. position: relative;
  43. display: inline-block;
  44. width: 20px;
  45. height: 100%;
  46. text-align: center;
  47. > * {
  48. @include absoluteAligning();
  49. }
  50. }
  51. .icon-kick {
  52. font-size: 8pt;
  53. }
  54. }
  55. span.remotevideomenu:hover ul.popupmenu, ul.popupmenu:hover {
  56. display:block !important;
  57. }
  58. .remote-control-spinner {
  59. top: 6px;
  60. left: 2px;
  61. }