Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

jitsi_popover.css 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright @ 2015 Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. .jitsipopover {
  17. position: absolute;
  18. top: 0;
  19. left: 0;
  20. z-index: 1010;
  21. display: none;
  22. max-width: 300px;
  23. min-width: 100px;
  24. padding: 1px;
  25. text-align: left;
  26. color: #333333;
  27. background-color: #ffffff;
  28. background-clip: padding-box;
  29. border: 1px solid #cccccc;
  30. border: 1px solid rgba(0, 0, 0, 0.2);
  31. border-radius: 6px;
  32. /*-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
  33. /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);*/
  34. white-space: normal;
  35. margin-top: -10px;
  36. margin-bottom: 35px;
  37. }
  38. .jitsipopover.black
  39. {
  40. background-color: rgba(0,0,0,0.8);
  41. color: #ffffff;
  42. }
  43. .jitsipopover-content {
  44. padding: 9px 14px;
  45. font-size: 10pt;
  46. white-space:pre-wrap;
  47. text-align: center;
  48. }
  49. .jitsipopover > .arrow,
  50. .jitsipopover > .arrow:after {
  51. position: absolute;
  52. display: block;
  53. width: 0;
  54. height: 0;
  55. border-color: transparent;
  56. border-style: solid;
  57. }
  58. .jitsipopover > .arrow {
  59. border-width: 11px;
  60. left: 50%;
  61. margin-left: -11px;
  62. border-bottom-width: 0;
  63. border-top-color: #999999;
  64. border-top-color: rgba(0, 0, 0, 0.25);
  65. bottom: -11px;
  66. }
  67. .jitsipopover > .arrow:after {
  68. border-width: 10px;
  69. content: " ";
  70. bottom: 1px;
  71. margin-left: -10px;
  72. border-bottom-width: 0;
  73. border-top-color: #ffffff;
  74. }
  75. .jitsipopover.black > .arrow:after
  76. {
  77. border-top-color: rgba(0, 0, 0, 0.8);
  78. }
  79. .jitsiPopupmenuPadding {
  80. height: 35px;
  81. width: 100px;
  82. position: absolute;
  83. bottom: -35;
  84. }
  85. .jitsipopover_green
  86. {
  87. color: #4abd04;
  88. }
  89. .jitsipopover_orange
  90. {
  91. color: #ffa800;
  92. }
  93. .jitsipopover_blue
  94. {
  95. color: #06a5df;
  96. }
  97. .jitsipopover_showmore
  98. {
  99. background-color: #06a5df;
  100. color: #ffffff;
  101. cursor: pointer;
  102. border-radius: 3px;
  103. text-align: center;
  104. width: 90px;
  105. height: 16px;
  106. padding-top: 4px;
  107. padding-left: 10px;
  108. padding-right: 10px;
  109. margin: 15px auto 0px auto;
  110. }