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.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. &__title {
  22. text-align: left;
  23. margin: 0;
  24. padding: 0;
  25. }
  26. &__content {
  27. padding: em(5) em(10);
  28. font-size: em(14);
  29. white-space:pre-wrap;
  30. text-align: center;
  31. }
  32. &__icon {
  33. margin-right: 2px;
  34. }
  35. &__green
  36. {
  37. @extend .jitsipopover__icon;
  38. color: #4abd04;
  39. }
  40. &__orange
  41. {
  42. @extend .jitsipopover__icon;
  43. color: #ffa800;
  44. }
  45. &__menu-padding {
  46. height: 35px;
  47. width: 100px;
  48. position: absolute;
  49. bottom: -35px;
  50. }
  51. &__showmore {
  52. display: block;
  53. text-align: center;
  54. width: 90px;
  55. margin: 10px auto;
  56. }
  57. &__clear {
  58. position: absolute;
  59. display: block;
  60. width: 0;
  61. height: 0;
  62. border-color: transparent;
  63. border-style: solid;
  64. }
  65. > .arrow {
  66. border-width: 5px 2.5px 0 2.5px;
  67. left: 50%;
  68. margin-left: -5px;
  69. @extend .jitsipopover__clear;
  70. border-bottom-width: 0;
  71. border-top-color: $popoverBg;
  72. bottom: -5px;
  73. &:after {
  74. border-width: 5px;
  75. content: " ";
  76. bottom: 1px;
  77. margin-left: -5px;
  78. @extend .jitsipopover__clear;
  79. border-bottom-width: 0;
  80. border-top-color: $popoverBg;
  81. }
  82. }
  83. }