| 1 |
/* languages admin panel */ |
| 2 |
.column-term_group, .column-flag, .column-count { |
| 3 |
width : 10%; |
| 4 |
} |
| 5 |
|
| 6 |
.form-field input.tog { |
| 7 |
width: auto; |
| 8 |
margin-right: 2px; |
| 9 |
} |
| 10 |
|
| 11 |
/* about Polylang metabox */ |
| 12 |
#pll_about_box p { |
| 13 |
text-align: justify; |
| 14 |
} |
| 15 |
|
| 16 |
#pll_about_box input { |
| 17 |
margin: 0; |
| 18 |
padding: 0; |
| 19 |
float: right; |
| 20 |
} |
| 21 |
|
| 22 |
/* strings translation table */ |
| 23 |
.stringstranslations .column-name { |
| 24 |
width: 10%; |
| 25 |
} |
| 26 |
|
| 27 |
.stringstranslations .column-string { |
| 28 |
width: 36%; |
| 29 |
} |
| 30 |
|
| 31 |
.translation label { |
| 32 |
display: inline-block; |
| 33 |
width: 23%; |
| 34 |
vertical-align: top; |
| 35 |
} |
| 36 |
|
| 37 |
.translation input, .translation textarea { |
| 38 |
width: 72%; |
| 39 |
} |
| 40 |
|
| 41 |
/* language columns in edit.php and edit-tags.php */ |
| 42 |
th[class*='column-language_'] { |
| 43 |
width: 2em; |
| 44 |
} |
| 45 |
|
| 46 |
.pll_icon_edit, .pll_icon_add, .pll_icon_tick { |
| 47 |
display: block; |
| 48 |
width: 16px; |
| 49 |
height: 16px; |
| 50 |
background-image: url("icons.png"); |
| 51 |
} |
| 52 |
|
| 53 |
.pll_icon_edit {background-position: 0px -24px;} |
| 54 |
.pll_icon_add {background-position: -16px -24px;} |
| 55 |
.pll_icon_tick {background-position: -32px -24px;} |
| 56 |
|
| 57 |
.pll_icon_edit:hover {background-position: 0px -40px;} |
| 58 |
.pll_icon_add:hover {background-position: -16px -40px;} |
| 59 |
.pll_icon_tick:hover {background-position: -32px -40px;} |
| 60 |
|
| 61 |
/* languages metabox in post.php */ |
| 62 |
#post-translations table { |
| 63 |
width: 100%; |
| 64 |
text-align: left; |
| 65 |
font-size: 11px; |
| 66 |
margin: 0 6px; |
| 67 |
} |
| 68 |
|
| 69 |
#post-translations td { |
| 70 |
font-size: 11px; |
| 71 |
} |
| 72 |
|
| 73 |
/* language and translations in edit-tags.php as well as media translations in upload.php */ |
| 74 |
#term-translations table { |
| 75 |
width: 97%; |
| 76 |
} |
| 77 |
|
| 78 |
#term-translations th, .media-item .describe .media-translations th { |
| 79 |
padding: 8px 10px; |
| 80 |
} |
| 81 |
|
| 82 |
#term-translations td, .media-item .describe .media-translations td { |
| 83 |
font-size: 12px; |
| 84 |
line-height: 26px; |
| 85 |
margin-bottom: 9px; |
| 86 |
padding: 4px 10px; |
| 87 |
} |
| 88 |
|
| 89 |
.tr-language-column { |
| 90 |
width: 35%; |
| 91 |
} |
| 92 |
|
| 93 |
div#term-translations select[id*='tr_lang_'] { |
| 94 |
width: 95%; |
| 95 |
} |
| 96 |
|
| 97 |
tr#term-translations select[id*='tr_lang_'] { |
| 98 |
width: 65%; |
| 99 |
} |
| 100 |
|
| 101 |
.tr-edit-column { |
| 102 |
width: 15%; |
| 103 |
} |
| 104 |
|
| 105 |
/* media translations in upload.php */ |
| 106 |
.media-translations { |
| 107 |
width: 460px; |
| 108 |
} |
| 109 |
|