Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

_jitsi_popover.scss 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .jitsipopover {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. z-index: $jitsipopoverZ;
  6. display: none;
  7. max-width: 300px;
  8. min-width: 100px;
  9. text-align: left;
  10. color: $popoverFontColor;
  11. background-color: $popoverBg;
  12. background-clip: padding-box;
  13. border-radius: $borderRadius;
  14. /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
  15. /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
  16. white-space: normal;
  17. margin-top: -$popoverMenuPadding;
  18. &__menu-padding,
  19. &__menu-padding-top {
  20. position: absolute;
  21. width: 100px;
  22. }
  23. /**
  24. * Invisible padding is added to the bottom of the popover to extend its
  25. * height so it does not close when moving the mouse from the trigger
  26. * element towards the popover itself.
  27. */
  28. &__menu-padding {
  29. bottom: -$popoverMenuPadding;
  30. height: $popoverMenuPadding;
  31. }
  32. /**
  33. * Invisible padding is added to the top of the popover to extend its height
  34. * so it does not close automatically when its height is shrunk from showing
  35. * less video statistics.
  36. */
  37. &__menu-padding-top {
  38. height: 20px;
  39. top: -20px;
  40. }
  41. &__showmore {
  42. display: block;
  43. text-align: center;
  44. width: 90px;
  45. margin: 10px auto;
  46. }
  47. > .arrow {
  48. position: absolute;
  49. display: block;
  50. left: 50%;
  51. bottom: -5px;
  52. margin-left: -5px;
  53. width: 0;
  54. height: 0;
  55. border-color: transparent;
  56. border-top-color: $popoverBg;
  57. border-style: solid;
  58. border-width: 5px;
  59. border-bottom-width: 0;
  60. }
  61. /**
  62. * Override default "top" styles to support popovers appearing from the
  63. * left of the popover trigger element.
  64. */
  65. &.left {
  66. margin-left: -$popoverMenuPadding;
  67. margin-top: 0;
  68. .arrow {
  69. border-color: transparent transparent transparent $popoverBg;
  70. border-width: 5px 0px 5px 5px;
  71. margin-left: 0;
  72. margin-top: -5px;
  73. }
  74. .jitsipopover {
  75. &__menu-padding {
  76. bottom: 0;
  77. height: 100%;
  78. width: $popoverMenuPadding;
  79. }
  80. }
  81. }
  82. }