rtl.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. /* GLOBAL */
  2. th {
  3. text-align: right;
  4. }
  5. .module h2, .module caption {
  6. text-align: right;
  7. }
  8. .module ul, .module ol {
  9. margin-left: 0;
  10. margin-right: 1.5em;
  11. }
  12. .viewlink, .addlink, .changelink {
  13. padding-left: 0;
  14. padding-right: 16px;
  15. background-position: 100% 1px;
  16. }
  17. .deletelink {
  18. padding-left: 0;
  19. padding-right: 16px;
  20. background-position: 100% 1px;
  21. }
  22. .object-tools {
  23. float: left;
  24. }
  25. thead th:first-child,
  26. tfoot td:first-child {
  27. border-left: none;
  28. }
  29. /* LAYOUT */
  30. #user-tools {
  31. right: auto;
  32. left: 0;
  33. text-align: left;
  34. }
  35. div.breadcrumbs {
  36. text-align: right;
  37. }
  38. #content-main {
  39. float: right;
  40. }
  41. #content-related {
  42. float: left;
  43. margin-left: -300px;
  44. margin-right: auto;
  45. }
  46. .colMS {
  47. margin-left: 300px;
  48. margin-right: 0;
  49. }
  50. /* SORTABLE TABLES */
  51. table thead th.sorted .sortoptions {
  52. float: left;
  53. }
  54. thead th.sorted .text {
  55. padding-right: 0;
  56. padding-left: 42px;
  57. }
  58. /* dashboard styles */
  59. .dashboard .module table td a {
  60. padding-left: .6em;
  61. padding-right: 16px;
  62. }
  63. /* changelists styles */
  64. .change-list .filtered table {
  65. border-left: none;
  66. border-right: 0px none;
  67. }
  68. #changelist-filter {
  69. border-left: none;
  70. border-right: none;
  71. margin-left: 0;
  72. margin-right: 30px;
  73. }
  74. #changelist-filter li.selected {
  75. border-left: none;
  76. padding-left: 10px;
  77. margin-left: 0;
  78. border-right: 5px solid var(--hairline-color);
  79. padding-right: 10px;
  80. margin-right: -15px;
  81. }
  82. #changelist table tbody td:first-child, #changelist table tbody th:first-child {
  83. border-right: none;
  84. border-left: none;
  85. }
  86. /* FORMS */
  87. .aligned label {
  88. padding: 0 0 3px 1em;
  89. float: right;
  90. }
  91. .submit-row {
  92. text-align: left
  93. }
  94. .submit-row p.deletelink-box {
  95. float: right;
  96. }
  97. .submit-row input.default {
  98. margin-left: 0;
  99. }
  100. .vDateField, .vTimeField {
  101. margin-left: 2px;
  102. }
  103. .aligned .form-row input {
  104. margin-left: 5px;
  105. }
  106. form .aligned p.help, form .aligned div.help {
  107. clear: right;
  108. }
  109. form .aligned ul {
  110. margin-right: 163px;
  111. margin-left: 0;
  112. }
  113. form ul.inline li {
  114. float: right;
  115. padding-right: 0;
  116. padding-left: 7px;
  117. }
  118. input[type=submit].default, .submit-row input.default {
  119. float: left;
  120. }
  121. fieldset .fieldBox {
  122. float: right;
  123. margin-left: 20px;
  124. margin-right: 0;
  125. }
  126. .errorlist li {
  127. background-position: 100% 12px;
  128. padding: 0;
  129. }
  130. .errornote {
  131. background-position: 100% 12px;
  132. padding: 10px 12px;
  133. }
  134. /* WIDGETS */
  135. .calendarnav-previous {
  136. top: 0;
  137. left: auto;
  138. right: 10px;
  139. background: url(../img/calendar-icons.svg) 0 -30px no-repeat;
  140. }
  141. .calendarbox .calendarnav-previous:focus,
  142. .calendarbox .calendarnav-previous:hover {
  143. background-position: 0 -45px;
  144. }
  145. .calendarnav-next {
  146. top: 0;
  147. right: auto;
  148. left: 10px;
  149. background: url(../img/calendar-icons.svg) 0 0 no-repeat;
  150. }
  151. .calendarbox .calendarnav-next:focus,
  152. .calendarbox .calendarnav-next:hover {
  153. background-position: 0 -15px;
  154. }
  155. .calendar caption, .calendarbox h2 {
  156. text-align: center;
  157. }
  158. .selector {
  159. float: right;
  160. }
  161. .selector .selector-filter {
  162. text-align: right;
  163. }
  164. .inline-deletelink {
  165. float: left;
  166. }
  167. form .form-row p.datetime {
  168. overflow: hidden;
  169. }
  170. .related-widget-wrapper {
  171. float: right;
  172. }
  173. /* MISC */
  174. .inline-related h2, .inline-group h2 {
  175. text-align: right
  176. }
  177. .inline-related h3 span.delete {
  178. padding-right: 20px;
  179. padding-left: inherit;
  180. left: 10px;
  181. right: inherit;
  182. float:left;
  183. }
  184. .inline-related h3 span.delete label {
  185. margin-left: inherit;
  186. margin-right: 2px;
  187. }