rules.ui.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. @charset "utf-8";
  2. .rules-show-js,
  3. html.js .rules-hide-js {
  4. display: none;
  5. }
  6. .rules-hide-js,
  7. html.js .rules-show-js {
  8. display: block;
  9. }
  10. .rules-elements-table ul.action-links {
  11. margin: 0px;
  12. padding: 0;
  13. }
  14. .rules-elements-table ul.rules-operations li {
  15. list-style: none;
  16. float: left;
  17. }
  18. .rules-elements-table ul.rules-operations a {
  19. background: none;
  20. padding-left: 0px;
  21. }
  22. table tr.rules-elements-add {
  23. background-color: #e5eff4;
  24. }
  25. .rules-elements-table ul.rules-operations-add a {
  26. line-height: 1em;
  27. }
  28. tr.rules-elements-add td {
  29. padding-top: 2px;
  30. padding-bottom: 2px;
  31. }
  32. ul.rules-operations-add li {
  33. float: left;
  34. list-style-position: inside;
  35. }
  36. .rules-elements-table {
  37. margin-bottom: 3em;
  38. }
  39. /* We cannot set a positive margin-top for rules tables as the table drag link
  40. should be positioned directly on top of the table. Thus we use a large bottom
  41. margin and fix the upper most margin: */
  42. #rules-form-wrapper:first-child {
  43. margin-top: 1.5em;
  44. }
  45. /* Fix table drag weights to don't take extra space */
  46. .rules-elements-table .tabledrag-toggle-weight-wrapper {
  47. position: absolute;
  48. right: 0px;
  49. }
  50. .rules-elements-table caption,
  51. .rules-overview-table caption {
  52. font-size: 110%;
  53. font-weight: bold;
  54. padding-bottom: 0.5em;
  55. text-align: left;
  56. }
  57. .rules-overview-table {
  58. margin: 1em 0;
  59. }
  60. .rules-content-group-integrity-error {
  61. color: #df0101;
  62. }
  63. .rules-debug-log {
  64. font: 81.3% "Lucida Grande","Lucida Sans Unicode",sans-serif;
  65. background-color: #eeeeee;
  66. border: 1px solid #cccccc;
  67. color: #333333;
  68. padding: 5px;
  69. margin: 1.5em 0em;
  70. }
  71. .rules-debug-collapsible-link {
  72. position: relative;
  73. cursor: pointer;
  74. /* The span element with the icon which opens the log, has a whitespace.
  75. Since we don't want the user to mark this white space, we prevent this
  76. using the this code.*/
  77. -moz-user-select: -moz-none;
  78. -khtml-user-select: none;
  79. -webkit-user-select: none;
  80. -o-user-select: none;
  81. user-select: none;
  82. }
  83. .rules-debug-log-head {
  84. font-weight: bold;
  85. }
  86. div.rules-debug-log-head {
  87. margin: 0.5em 0em;
  88. }
  89. .rules-debug-icon-open {
  90. position: relative;
  91. float: left;
  92. }
  93. .rules-debug-open-all {
  94. position: relative;
  95. float: right;
  96. }
  97. .rules-debug-log ul {
  98. padding-left: 2em;
  99. }
  100. .rules-debug-log .rules-debug-warn {
  101. color: #df0101;
  102. }
  103. .rules-debug-log .rules-debug-error {
  104. font-weight: bold;
  105. color: #df0101;
  106. }
  107. #rules-filter-form {
  108. margin-bottom: 1.5em;
  109. }
  110. .rules-parameter-label {
  111. font-style: italic;
  112. }
  113. #rules-plugin-add-help {
  114. margin-bottom: 1em;
  115. }
  116. .rules-element-content {
  117. float: left;
  118. }
  119. form input.rules-switch-button {
  120. -moz-border-radius: 5px 5px 5px 5px;
  121. cursor: pointer;
  122. font-size: 0.8em;
  123. font-weight: normal;
  124. margin-bottom: 1em;
  125. padding: 2px;
  126. text-align: center;
  127. }
  128. .rules-form-heading {
  129. margin-top: 3em;
  130. }
  131. .rules-autocomplete-button {
  132. top: 3px;
  133. height: 22px;
  134. }
  135. ul.rules-autocomplete {
  136. max-height: 23em;
  137. overflow-y: auto;
  138. }
  139. ul.rules-autocomplete div {
  140. padding-left: 5px;
  141. }
  142. ul.rules-autocomplete a.ui-corner-all {
  143. padding: 0px;
  144. }
  145. ul.rules-autocomplete .rules-dsac-group {
  146. background-color: #eee;
  147. }
  148. ul.rules-autocomplete .ui-corner-all {
  149. -moz-border-radius: 0px;
  150. }
  151. /**
  152. * Do not display the hide/show descriptions link above the permissions matrix.
  153. */
  154. #rules-form-wrapper #edit-settings-access-permissions .compact-link {
  155. display: none;
  156. }
  157. /* IE 6 hack for max-height. */
  158. * html ul.rule-autocomplete {
  159. height: 23em;
  160. }