popover.css 2.2 KB

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