Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

_popup_menu.scss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /**
  2. * Initialize
  3. **/
  4. .popupmenu {
  5. min-width: 75px;
  6. text-align: left;
  7. padding: 0;
  8. white-space: nowrap;
  9. &__item {
  10. list-style-type: none;
  11. height: 35px;
  12. &:hover {
  13. background-color: rgba(9, 30, 66, 0.04);
  14. }
  15. }
  16. // Link Appearance
  17. &__link,
  18. &__contents {
  19. display: block;
  20. box-sizing: border-box;
  21. text-decoration: none;
  22. height: 100%;
  23. font-size: 9pt;
  24. width: 100%;
  25. cursor: pointer;
  26. padding: 0 5px;
  27. &.disabled {
  28. pointer-events: none;
  29. }
  30. }
  31. &__text {
  32. display: inline-block;
  33. vertical-align: middle;
  34. }
  35. &__link {
  36. i {
  37. cursor: pointer;
  38. }
  39. }
  40. &__contents {
  41. display: flex;
  42. /**
  43. * Positioning styles on the slider and its container are used to make
  44. * the container fit the popup width, by removing the slider from the
  45. * page flow, and then making the slider fit the container.
  46. */
  47. .popupmenu__slider_container {
  48. position: relative;
  49. width: 100%;
  50. .popupmenu__slider {
  51. position: absolute;
  52. top: 50%;
  53. transform: translate(0, -50%);
  54. width: 100%;
  55. }
  56. }
  57. }
  58. &__icon {
  59. vertical-align: middle;
  60. position: relative;
  61. display: inline-block;
  62. min-width: 20px;
  63. height: 100%;
  64. > * {
  65. @include absoluteAligning();
  66. }
  67. }
  68. .icon-kick {
  69. font-size: 8pt;
  70. }
  71. }
  72. /**
  73. * Override reset css styling modifying all lists and set negative margin to
  74. * reduce the visibility of padding on AtlasKit
  75. * InlineDialogs.
  76. */
  77. ul.popupmenu {
  78. margin: -15px;
  79. }
  80. span.remotevideomenu:hover ul.popupmenu, ul.popupmenu:hover {
  81. display:block !important;
  82. }
  83. .remote-control-spinner {
  84. top: 6px;
  85. left: 2px;
  86. }