| 1 |
/** |
| 2 |
* CSS code for all TablePress admin screens, special things for RTL languages. |
| 3 |
* |
| 4 |
* Fixes for certain elements that should remain LTR. |
| 5 |
* |
| 6 |
* @package TablePress |
| 7 |
* @subpackage Views CSS |
| 8 |
* @author Tobias Bäthge |
| 9 |
* @since 1.1.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
#screen-meta-links { |
| 13 |
right: auto; |
| 14 |
left: 0; |
| 15 |
} |
| 16 |
|
| 17 |
#tablepress-page { |
| 18 |
margin: 0 -20px 0 0; |
| 19 |
|
| 20 |
.header { |
| 21 |
padding-right: 0; |
| 22 |
padding-left: 260px; |
| 23 |
|
| 24 |
.name { |
| 25 |
border-right: none; |
| 26 |
border-left: 1px solid #dedae6; |
| 27 |
|
| 28 |
img { |
| 29 |
margin: 0 0 6px 12px; |
| 30 |
} |
| 31 |
} |
| 32 |
} |
| 33 |
|
| 34 |
#tablepress-nav { |
| 35 |
padding: 0 20px 0 0; |
| 36 |
} |
| 37 |
} |
| 38 |
|
| 39 |
.tablepress-postbox-table th { |
| 40 |
text-align: right; |
| 41 |
} |
| 42 |
|
| 43 |
#row-import-source td.column-2, |
| 44 |
#row-import-type td.column-2 { |
| 45 |
direction: ltr; |
| 46 |
text-align: right; |
| 47 |
} |
| 48 |
|
| 49 |
#tablepress_add-add-table .form-field-small { |
| 50 |
float: right; |
| 51 |
} |
| 52 |
|
| 53 |
.rtl { /* Use .rtl body class for higher CSS specificity of these selectors. */ |
| 54 |
#table-information-shortcode { |
| 55 |
direction: ltr; |
| 56 |
} |
| 57 |
|
| 58 |
.input-field-box > input.control-input, |
| 59 |
.module-box > input[type="checkbox"]="checkbox""] { |
| 60 |
left: auto; |
| 61 |
right: -9999px; |
| 62 |
} |
| 63 |
} |
| 64 |
|