PluginProbe
TablePress – Tables in WordPress made easy / 3.0.4
TablePress – Tables in WordPress made easy v3.0.4
3.3.4 3.3.3 3.3.2 3.3.1 trunk 1.12 1.14 1.9.2 2.0.4 2.1.7 2.1.8 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3 2.3.1 2.3.2 2.4 2.4.1 2.4.2 2.4.3 2.4.4 All 44 releases
tablepress / admin / css / common-rtl.scss

common-rtl.scss in TablePress – Tables in WordPress made easy 3.0.4, at admin/css/common-rtl.scss

64 lines 1022 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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