Dialog.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* Dialog */
  2. .nihilo .dijitDialog {
  3. background: #eee;
  4. border: 1px solid #d3d3d3;
  5. -webkit-box-shadow: 0 5px 10px #adadad;
  6. padding: 0;
  7. }
  8. .nihilo .dijitDialog .dijitDialogTitle {
  9. /* typography and styling of the dialog title */
  10. font-size: 0.9em;
  11. color: #243C5F;
  12. font-weight: bold;
  13. padding: 0 4px;
  14. }
  15. .nihilo .dijitDialog .dijitDialogPaneContent {
  16. background: #ffffff;
  17. border-top: 1px solid #d3d3d3;
  18. padding:10px;
  19. }
  20. .nihilo .dijitDialogTitleBar {
  21. /* outer container for the titlebar of the dialog */
  22. background: #fafafa url("images/titleBar.png") repeat-x top left;
  23. padding: 5px 6px 3px 6px;
  24. outline:0; /* remove this line if keyboard focus on dialog startup is an issue. tab still takes you to first focusable element */
  25. }
  26. .nihilo .dijitDialogCloseIcon {
  27. /* the default close icon for the dialog */
  28. background-image: url("images/spriteRoundedIconsSmall.png");
  29. background-repeat: no-repeat;
  30. background-position: -60px 0;
  31. position: absolute;
  32. vertical-align: middle;
  33. right: 6px;
  34. top: 4px;
  35. height: 15px;
  36. width: 15px;
  37. }
  38. .dj_ie6 .nihilo .dijitDialogCloseIcon {
  39. background-image: url("images/spriteRoundedIconsSmall.gif");
  40. }
  41. .nihilo .dijitDialogCloseIconHover {
  42. background-position: -60px -15px;
  43. }
  44. /* Tooltip and TooltipDialog */
  45. .nihilo .dijitTooltip,
  46. .nihilo .dijitTooltipDialog {
  47. /* the outermost dom node, holding the connector and container */
  48. background: transparent; /* make the area on the sides of the arrow transparent */
  49. }
  50. .dijitTooltipBelow {
  51. /* leave room for arrow above content */
  52. padding-top: 10px;
  53. }
  54. .dijitTooltipAbove {
  55. /* leave room for arrow below content */
  56. padding-bottom: 10px;
  57. }
  58. .nihilo .dijitTooltipContainer {
  59. /*
  60. The part with the text.
  61. NOTE:
  62. FF doesn't clip images used as CSS bgs if you specify a border
  63. radius. If you use a solid color, it does. Webkit gets it right.
  64. Sigh.
  65. background: #ffffff url("images/popupMenuBg.gif") repeat-x bottom left;
  66. */
  67. background-color: #fff;
  68. border:1px solid #d3d3d3;
  69. padding:0.45em;
  70. }
  71. .nihilo .dijitTooltipConnector {
  72. /* the arrow piece */
  73. border:0;
  74. z-index: 2;
  75. }
  76. .nihilo .dijitTooltipABRight .dijitTooltipConnector {
  77. /* above or below tooltip, but the arrow appears on the right,
  78. and the right edges of target and tooltip are aligned rather than the left */
  79. left: auto !important;
  80. right: 6px;
  81. }
  82. .nihilo .dijitTooltipBelow .dijitTooltipConnector {
  83. /* the arrow piece for tooltips below an element */
  84. top: 0;
  85. left: 6px;
  86. background:url("images/tooltipConnectorUp.png") no-repeat top left;
  87. width:17px;
  88. height:11px;
  89. }
  90. .dj_ie .nihilo .dijitTooltipBelow .dijitTooltipConnector {
  91. background-image: url("images/tooltipConnectorUp.gif");
  92. }
  93. .nihilo .dijitTooltipAbove .dijitTooltipConnector {
  94. /* the arrow piece for tooltips above an element */
  95. bottom: 0;
  96. left: 6px;
  97. background:url("images/tooltipConnectorDown.png") no-repeat top left;
  98. width:17px;
  99. height:11px;
  100. }
  101. .dj_ie .nihilo .dijitTooltipAbove .dijitTooltipConnector {
  102. background-image: url("images/tooltipConnectorDown.gif");
  103. }
  104. .dj_ie6 .nihilo .dijitTooltipAbove .dijitTooltipConnector {
  105. bottom: -5px;
  106. }
  107. .nihilo .dijitTooltipLeft {
  108. padding-right: 10px;
  109. }
  110. .nihilo .dijitTooltipLeft .dijitTooltipConnector {
  111. /* the arrow piece for tooltips to the left of an element, bottom borders aligned */
  112. right: 0;
  113. background:url("images/tooltipConnectorRight.png") no-repeat top left;
  114. width:11px;
  115. height:17px;
  116. }
  117. .dj_ie .nihilo .dijitTooltipLeft .dijitTooltipConnector {
  118. background-image: url("images/tooltipConnectorRight.gif");
  119. }
  120. .nihilo .dijitTooltipRight {
  121. padding-left: 10px;
  122. }
  123. .nihilo .dijitTooltipRight .dijitTooltipConnector {
  124. /* the arrow piece for tooltips to the right of an element, bottom borders aligned */
  125. left: 0;
  126. background:url("images/tooltipConnectorLeft.png") no-repeat top left;
  127. width:11px;
  128. height:17px;
  129. }
  130. .dj_ie .nihilo .dijitTooltipRight .dijitTooltipConnector {
  131. background-image: url("images/tooltipConnectorLeft.gif");
  132. }