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.

_jitsi_popover.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. height: $popoverMenuPadding;
  20. width: 100px;
  21. position: absolute;
  22. bottom: -$popoverMenuPadding;
  23. }
  24. &__showmore {
  25. display: block;
  26. text-align: center;
  27. width: 90px;
  28. margin: 10px auto;
  29. }
  30. > .arrow {
  31. position: absolute;
  32. display: block;
  33. left: 50%;
  34. bottom: -5px;
  35. margin-left: -5px;
  36. width: 0;
  37. height: 0;
  38. border-color: transparent;
  39. border-top-color: $popoverBg;
  40. border-style: solid;
  41. border-width: 5px;
  42. border-bottom-width: 0;
  43. }
  44. }