| 1 |
/* |
| 2 |
FIXME rules for WP 3.8+ only -> can be merged to admin.css once support of WP 3.7 is dropped |
| 3 |
*/ |
| 4 |
@media screen and ( max-width: 782px ) { |
| 5 |
/* strings translations table */ |
| 6 |
.stringstranslations .column-context, |
| 7 |
.stringstranslations .column-name { |
| 8 |
display: none; |
| 9 |
} |
| 10 |
|
| 11 |
/* translations tables should be kept as table */ |
| 12 |
#term-translations .term-translations th, |
| 13 |
#term-translations .term-translations td { |
| 14 |
display: table-cell; |
| 15 |
} |
| 16 |
|
| 17 |
/* admin bar */ |
| 18 |
#wpadminbar #wp-admin-bar-languages > .ab-item { |
| 19 |
width: 50px; |
| 20 |
text-align: center; |
| 21 |
} |
| 22 |
|
| 23 |
#wpadminbar #wp-admin-bar-languages > .ab-item .ab-icon:before { |
| 24 |
font: 32px/1 'polylang'; |
| 25 |
top: -1px; |
| 26 |
} |
| 27 |
|
| 28 |
#wpadminbar #wp-admin-bar-languages > .ab-item img { |
| 29 |
margin: 19px 0; |
| 30 |
} |
| 31 |
|
| 32 |
#wpadminbar #wp-admin-bar-languages #wp-admin-bar-all .ab-item .ab-icon { |
| 33 |
margin-right: 6px; |
| 34 |
font-size: 20px !important; |
| 35 |
line-height: 20px !important; |
| 36 |
} |
| 37 |
} |
| 38 |
|