bubble.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Copyright 2005 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. /*
  8. * Bubble styles.
  9. *
  10. * @author robbyw@google.com (Robby Walker)
  11. * @author nicksantos@google.com (Nick Santos)
  12. * @author jparent@google.com (Julie Parent)
  13. */
  14. div.tr_bubble {
  15. position: absolute;
  16. background-color: #e0ecff;
  17. border: 1px solid #99c0ff;
  18. border-radius: 2px;
  19. -moz-border-radius: 2px;
  20. -webkit-border-radius: 2px;
  21. font-size: 83%;
  22. font-family: Arial, Helvetica, sans-serif;
  23. padding: 2px 19px 6px 6px;
  24. white-space: nowrap;
  25. }
  26. .tr_bubble_link {
  27. color: #00c;
  28. text-decoration: underline;
  29. cursor: pointer;
  30. font-size: 100%;
  31. }
  32. .tr_bubble .tr_option-link,
  33. .tr_bubble #tr_delete-image,
  34. .tr_bubble #tr_module-options-link {
  35. font-size: 83%;
  36. }
  37. .tr_bubble_closebox {
  38. position: absolute;
  39. cursor: default;
  40. background: url(//ssl.gstatic.com/editor/bubble_closebox.gif) top left no-repeat;
  41. padding: 0;
  42. margin: 0;
  43. width: 10px;
  44. height: 10px;
  45. top: 3px;
  46. right: 5px;
  47. }
  48. div.tr_bubble_panel {
  49. padding: 2px 0 1px;
  50. }
  51. div.tr_bubble_panel_title {
  52. display: none;
  53. }
  54. div.tr_multi_bubble div.tr_bubble_panel_title {
  55. margin-right: 1px;
  56. display: block;
  57. float: left;
  58. width: 50px;
  59. }
  60. div.tr_multi_bubble div.tr_bubble_panel {
  61. padding: 2px 0 1px;
  62. margin-right: 50px;
  63. }