rtl.css 3.66 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
body {
    direction: rtl;
}

/* LOGIN */

.login .form-row {
    float: right;
}

.login .form-row label {
    float: right;
    padding-left: 0.5em;
    padding-right: 0;
    text-align: left;
}

.login .submit-row {
    clear: both;
    padding: 1em 9.4em 0 0;
}

/* GLOBAL */

th {
    text-align: right;
}

.module h2, .module caption {
    text-align: right;
}

.addlink, .changelink {
    padding-left: 0px;
    padding-right: 12px;
    background-position: 100% 0.2em;
}

.deletelink {
    padding-left: 0px;
    padding-right: 12px;
    background-position: 100% 0.25em;
}

.object-tools {
    float: left;
}

thead th:first-child,
tfoot td:first-child {
    border-left: 1px solid #ddd !important;
}

/* LAYOUT */

#user-tools {
    right: auto;
    left: 0;
    text-align: left;
}

div.breadcrumbs {
    text-align: right;
}

#content-main {
    float: right;
}

#content-related {
    float: left;
    margin-left: -19em;
    margin-right: auto;
}

.colMS {
    margin-left: 20em !important;
    margin-right: 10px !important;
}

/* SORTABLE TABLES */

83 84
table thead th.sorted .sortoptions {
   float: left;
85 86 87 88 89 90 91 92 93 94 95 96
}

/* dashboard styles */

.dashboard .module table td a {
    padding-left: .6em;
    padding-right: 12px;
}

/* changelists styles */

.change-list .filtered {
97
    background: white url(../img/changelist-bg_rtl.gif) top left repeat-y !important;
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
}

.change-list .filtered table {
    border-left: 1px solid #ddd;
    border-right: 0px none;
}

#changelist-filter {
    right: auto;
    left: 0;
    border-left: 0px none;
    border-right: 1px solid #ddd;
}

.change-list .filtered .results, .change-list .filtered .paginator, .filtered #toolbar, .filtered div.xfull {
    margin-right: 0px !important;
    margin-left: 160px !important;
}

#changelist-filter li.selected {
    border-left: 0px none;
    padding-left: 0px;
    margin-left: 0;
    border-right: 5px solid #ccc;
    padding-right: 5px;
    margin-right: -10px;
}

.filtered .actions {
    border-left:1px solid #DDDDDD;
    margin-left:160px !important;
    border-right: 0 none;
    margin-right:0 !important;
}

#changelist table tbody td:first-child, #changelist table tbody th:first-child {
    border-right: 0;
    border-left: 1px solid #ddd;
}

/* FORMS */

.aligned label {
    padding: 0 0 3px 1em;
    float: right;
}

.submit-row {
    text-align: left
}

.submit-row p.deletelink-box {
    float: right;
}

.submit-row .deletelink {
154
    background: url(../img/icon_deletelink.gif) 0 50% no-repeat;
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
    padding-right: 14px;
}

.vDateField, .vTimeField {
    margin-left: 2px;
}

form ul.inline li {
    float: right;
    padding-right: 0;
    padding-left: 7px;
}

input[type=submit].default, .submit-row input.default {
    float: left;
}

fieldset .field-box {
    float: right;
    margin-left: 20px;
175
    margin-right: 0;
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
}

.errorlist li {
    background-position: 100% .3em;
    padding: 4px 25px 4px 5px;
}

.errornote {
    background-position: 100% .3em;
    padding: 4px 25px 4px 5px;
}

/* WIDGETS */

.calendarnav-previous {
    top: 0;
    left: auto;
    right: 0;
}

.calendarnav-next {
    top: 0;
    right: auto;
    left: 0;
}

.calendar caption, .calendarbox h2 {
    text-align: center;
}

.selector {
    float: right;
}

.selector .selector-filter {
    text-align: right;
}

.inline-deletelink {
    float: left;
}

/* MISC */

.inline-related h2, .inline-group h2 {
    text-align: right
}

.inline-related h3 span.delete {
    padding-right: 20px;
    padding-left: inherit;
    left: 10px;
    right: inherit;
229
    float:left;
230 231 232 233 234 235
}

.inline-related h3 span.delete label {
    margin-left: inherit;
    margin-right: 2px;
}
236 237 238 239 240 241 242 243 244 245

/* IE7 specific bug fixes */

div.colM {
    position: relative;
}

.submit-row input {
    float: left;
}