Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

213 linhas
3.8 KiB

  1. .wp-pointer-content {
  2. padding: 0 0 10px;
  3. position: relative;
  4. font-size: 13px;
  5. background: #fff;
  6. border: 1px solid #ddd;
  7. -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075);
  8. box-shadow: 0 3px 6px rgba(0,0,0,0.075);
  9. }
  10. .wp-pointer-content h3 {
  11. position: relative;
  12. margin: -1px -1px 5px;
  13. padding: 15px 60px 14px 18px;
  14. border: 1px solid #3592b6;
  15. border-bottom: none;
  16. line-height: 1.4em;
  17. font-size: 14px;
  18. color: #fff;
  19. background: #00a0d2;
  20. }
  21. .wp-pointer-content h3:before {
  22. background: #fff;
  23. -webkit-border-radius: 50%;
  24. border-radius: 50%;
  25. color: #00a0d2;
  26. content: "\f227";
  27. font: normal 20px/1.6 dashicons;
  28. position: absolute;
  29. top: 8px;
  30. right: 15px;
  31. speak: none;
  32. text-align: center;
  33. width: 32px;
  34. height: 32px;
  35. -webkit-font-smoothing: antialiased;
  36. -moz-osx-font-smoothing: grayscale;
  37. }
  38. .wp-pointer-content p {
  39. padding: 0 15px;
  40. }
  41. .wp-pointer-buttons {
  42. margin: 0;
  43. padding: 5px 15px;
  44. overflow: auto;
  45. }
  46. .wp-pointer-buttons a {
  47. float: left;
  48. display: inline-block;
  49. text-decoration: none;
  50. }
  51. .wp-pointer-buttons a.close {
  52. padding-right: 3px;
  53. position: relative;
  54. }
  55. .wp-pointer-buttons a.close:before {
  56. background: none;
  57. color: #b4b9be;
  58. content: "\f153";
  59. display: block !important;
  60. font: normal 16px/1 dashicons;
  61. speak: none;
  62. margin: 1px 0;
  63. text-align: center;
  64. -webkit-font-smoothing: antialiased !important;
  65. width: 10px;
  66. height: 100%;
  67. position: absolute;
  68. right: -15px;
  69. top: 1px;
  70. }
  71. .wp-pointer-buttons a.close:hover:before {
  72. color: #c00;
  73. }
  74. /* The arrow base class must take up no space, even with transparent borders. */
  75. .wp-pointer-arrow,
  76. .wp-pointer-arrow-inner {
  77. position: absolute;
  78. width: 0;
  79. height: 0;
  80. }
  81. .wp-pointer-arrow {
  82. z-index: 10;
  83. width: 0;
  84. height: 0;
  85. border: 0 solid transparent;
  86. }
  87. .wp-pointer-arrow-inner {
  88. z-index: 20;
  89. }
  90. /* Make Room for the Arrow! */
  91. .wp-pointer-top,
  92. .wp-pointer-undefined {
  93. padding-top: 13px;
  94. }
  95. .wp-pointer-bottom {
  96. margin-top: -13px;
  97. padding-bottom: 13px;
  98. }
  99. /* rtl:ignore */
  100. .wp-pointer-left {
  101. padding-left: 13px;
  102. }
  103. /* rtl:ignore */
  104. .wp-pointer-right {
  105. margin-left: -13px;
  106. padding-right: 13px;
  107. }
  108. /* Base Size & Positioning */
  109. .wp-pointer-top .wp-pointer-arrow,
  110. .wp-pointer-bottom .wp-pointer-arrow,
  111. .wp-pointer-undefined .wp-pointer-arrow {
  112. right: 50px;
  113. }
  114. .wp-pointer-left .wp-pointer-arrow,
  115. .wp-pointer-right .wp-pointer-arrow {
  116. top: 50%;
  117. margin-top: -15px;
  118. }
  119. /* Arrow Sprite */
  120. .wp-pointer-top .wp-pointer-arrow,
  121. .wp-pointer-undefined .wp-pointer-arrow {
  122. top: 0;
  123. border-width: 0 13px 13px 13px;
  124. border-bottom-color: #3592b6;
  125. }
  126. .wp-pointer-top .wp-pointer-arrow-inner,
  127. .wp-pointer-undefined .wp-pointer-arrow-inner {
  128. top: 1px;
  129. margin-right: -13px;
  130. margin-top: -13px;
  131. border: 13px solid transparent;
  132. border-bottom-color: #00a0d2;
  133. display: block;
  134. content: " ";
  135. }
  136. .wp-pointer-bottom .wp-pointer-arrow {
  137. bottom: 0;
  138. border-width: 13px 13px 0 13px;
  139. border-top-color: #ccc;
  140. }
  141. .wp-pointer-bottom .wp-pointer-arrow-inner {
  142. bottom: 1px;
  143. margin-right: -13px;
  144. margin-bottom: -13px;
  145. border: 13px solid transparent;
  146. border-top-color: #fff;
  147. display: block;
  148. content: " ";
  149. }
  150. /* rtl:ignore */
  151. .wp-pointer-left .wp-pointer-arrow {
  152. left: 0;
  153. border-width: 13px 13px 13px 0;
  154. border-right-color: #ccc;
  155. }
  156. /* rtl:ignore */
  157. .wp-pointer-left .wp-pointer-arrow-inner {
  158. left: 1px;
  159. margin-left: -13px;
  160. margin-top: -13px;
  161. border: 13px solid transparent;
  162. border-right-color: #fff;
  163. display: block;
  164. content: " ";
  165. }
  166. /* rtl:ignore */
  167. .wp-pointer-right .wp-pointer-arrow {
  168. right: 0;
  169. border-width: 13px 0 13px 13px;
  170. border-left-color: #ccc;
  171. }
  172. /* rtl:ignore */
  173. .wp-pointer-right .wp-pointer-arrow-inner {
  174. right: 1px;
  175. margin-right: -13px;
  176. margin-top: -13px;
  177. border: 13px solid transparent;
  178. border-left-color: #fff;
  179. display: block;
  180. content: " ";
  181. }
  182. /* Disable pointers at responsive sizes */
  183. @media screen and ( max-width: 782px ) {
  184. .wp-pointer {
  185. display: none;
  186. }
  187. }