bubble.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * Copyright 2010 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. .goog-bubble-font {
  8. font-size: 80%;
  9. color: #888888;
  10. }
  11. .goog-bubble-close-button {
  12. background-image:url(//ssl.gstatic.com/closure/bubble_close.jpg);
  13. background-color: white;
  14. background-position: top right;
  15. background-repeat: no-repeat;
  16. width: 16px;
  17. height: 16px;
  18. }
  19. .goog-bubble-left {
  20. background-image:url(//ssl.gstatic.com/closure/bubble_left.gif);
  21. background-position:left;
  22. background-repeat:repeat-y;
  23. width: 4px;
  24. }
  25. .goog-bubble-right {
  26. background-image:url(//ssl.gstatic.com/closure/bubble_right.gif);
  27. background-position: right;
  28. background-repeat: repeat-y;
  29. width: 4px;
  30. }
  31. .goog-bubble-top-right-anchor {
  32. background-image:url(//ssl.gstatic.com/closure/right_anchor_bubble_top.gif);
  33. background-position: center;
  34. background-repeat: no-repeat;
  35. width: 147px;
  36. height: 16px;
  37. }
  38. .goog-bubble-top-left-anchor {
  39. background-image:url(//ssl.gstatic.com/closure/left_anchor_bubble_top.gif);
  40. background-position: center;
  41. background-repeat: no-repeat;
  42. width: 147px;
  43. height: 16px;
  44. }
  45. .goog-bubble-top-no-anchor {
  46. background-image:url(//ssl.gstatic.com/closure/no_anchor_bubble_top.gif);
  47. background-position: center;
  48. background-repeat: no-repeat;
  49. width: 147px;
  50. height: 6px;
  51. }
  52. .goog-bubble-bottom-right-anchor {
  53. background-image:url(//ssl.gstatic.com/closure/right_anchor_bubble_bot.gif);
  54. background-position: center;
  55. background-repeat: no-repeat;
  56. width: 147px;
  57. height: 16px;
  58. }
  59. .goog-bubble-bottom-left-anchor {
  60. background-image:url(//ssl.gstatic.com/closure/left_anchor_bubble_bot.gif);
  61. background-position: center;
  62. background-repeat: no-repeat;
  63. width: 147px;
  64. height: 16px;
  65. }
  66. .goog-bubble-bottom-no-anchor {
  67. background-image:url(//ssl.gstatic.com/closure/no_anchor_bubble_bot.gif);
  68. background-position: center;
  69. background-repeat: no-repeat;
  70. width: 147px;
  71. height: 8px;
  72. }