Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

_popup_menu.scss 1.2KB

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