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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .jitsipopover {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. z-index: 1010;
  6. display: none;
  7. max-width: 300px;
  8. min-width: 100px;
  9. padding: 1px;
  10. text-align: left;
  11. color: $popoverFontColor;
  12. background-color: $popoverBg;
  13. background-clip: padding-box;
  14. border: 1px solid $popoverBg;
  15. border-radius: 3px;
  16. /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
  17. /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
  18. white-space: normal;
  19. margin-top: -10px;
  20. margin-bottom: 35px;
  21. &__menu-padding {
  22. height: 35px;
  23. width: 100px;
  24. position: absolute;
  25. bottom: -35px;
  26. }
  27. &__showmore {
  28. display: block;
  29. text-align: center;
  30. width: 90px;
  31. margin: 10px auto;
  32. }
  33. > .arrow {
  34. position: absolute;
  35. display: block;
  36. left: 50%;
  37. bottom: -5px;
  38. margin-left: -5px;
  39. width: 0;
  40. height: 0;
  41. border-color: transparent;
  42. border-top-color: $popoverBg;
  43. border-style: solid;
  44. border-width: 5px;
  45. border-bottom-width: 0;
  46. }
  47. }