popover.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .popover {
  2. position: absolute;
  3. -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25;
  4. border-width: 25px;
  5. z-index: 100;
  6. pointer-events: none;
  7. }
  8. .popover .content {
  9. position: absolute;
  10. top: 0;
  11. bottom: 0;
  12. left: 0;
  13. right: 0;
  14. pointer-events: auto;
  15. overflow: auto;
  16. -webkit-user-select: text;
  17. line-height: 11px;
  18. }
  19. .popover .content.fixed-height {
  20. overflow: hidden;
  21. }
  22. .popover .arrow {
  23. position: absolute;
  24. background-image: url(Images/popoverArrows.png);
  25. width: 19px;
  26. height: 19px;
  27. margin-left: 15px;
  28. margin-top: -25px;
  29. top: 0;
  30. left: 0;
  31. }
  32. .popover.top-left-arrow .arrow {
  33. /* The default is top-left, no styles needed. */
  34. }
  35. .popover.top-right-arrow .arrow {
  36. right: 25px;
  37. left: auto;
  38. }
  39. .popover.bottom-left-arrow .arrow {
  40. top: auto;
  41. bottom: 0;
  42. margin-top: 0;
  43. margin-bottom: -25px;
  44. background-position: 0 -19px;
  45. }
  46. .popover.bottom-right-arrow .arrow {
  47. right: 15px;
  48. left: auto;
  49. top: auto;
  50. bottom: 0;
  51. margin-top: 0;
  52. margin-bottom: -25px;
  53. background-position: 0 -19px;
  54. }
  55. .popover.left-top-arrow .arrow {
  56. top: 0;
  57. margin-top: 15px;
  58. margin-left: -25px;
  59. background-position: 0 -38px;
  60. }
  61. .popover.left-bottom-arrow .arrow {
  62. top: auto;
  63. bottom: 0;
  64. margin-bottom: 15px;
  65. margin-left: -25px;
  66. background-position: 0 -38px;
  67. }
  68. .popover.right-top-arrow .arrow {
  69. right: 0;
  70. left: auto;
  71. top: 0;
  72. margin-top: 15px;
  73. margin-right: -25px;
  74. background-position: 0 -57px;
  75. }
  76. .popover.right-bottom-arrow .arrow {
  77. right: 0;
  78. left: auto;
  79. top: auto;
  80. bottom: 0;
  81. margin-bottom: 15px;
  82. margin-right: -25px;
  83. background-position: 0 -57px;
  84. }
  85. .popover-details {
  86. -webkit-user-select: text;
  87. vertical-align: top;
  88. }
  89. .popover-function-name {
  90. text-align: right;
  91. }
  92. .popover-stacktrace-title {
  93. padding-top: 4px;
  94. }
  95. .popover-details-row-title {
  96. font-weight: bold;
  97. text-align: right;
  98. white-space: nowrap;
  99. }
  100. .popover-details-row-data {
  101. white-space: nowrap;
  102. }
  103. .popover-details-title {
  104. border-bottom: 1px solid #B8B8B8;
  105. font-weight: bold;
  106. padding-bottom: 5px;
  107. padding-top: 0;
  108. white-space: nowrap;
  109. }