rules.ui.css 3.4 KB

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