| 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 |
.pll_icon_tick:before { |
| 5 |
content: "\f147"; |
| 6 |
} |
| 7 |
.pll_icon_add:before { |
| 8 |
content: "\f132"; |
| 9 |
} |
| 10 |
.pll_icon_edit:before { |
| 11 |
content: "\f464"; |
| 12 |
} |
| 13 |
|
| 14 |
[class^="pll_icon_"] { |
| 15 |
font: 20px/1 'dashicons'; |
| 16 |
} |
| 17 |
|
| 18 |
/* admin bar */ |
| 19 |
#wpadminbar #wp-admin-bar-languages .ab-icon:before { |
| 20 |
font: 20px/1 'dashicons'; /* backward compatibility WP < 3.8 */ |
| 21 |
content: "\f326"; |
| 22 |
top: 1px; |
| 23 |
} |
| 24 |
|
| 25 |
@media screen and ( max-width: 782px ) { |
| 26 |
/* strings translations table */ |
| 27 |
.stringstranslations .column-context, |
| 28 |
.stringstranslations .column-name { |
| 29 |
display: none; |
| 30 |
} |
| 31 |
|
| 32 |
/* translations tables should be kept as table */ |
| 33 |
#term-translations .term-translations th, |
| 34 |
#term-translations .term-translations td { |
| 35 |
display: table-cell; |
| 36 |
} |
| 37 |
|
| 38 |
/* admin bar */ |
| 39 |
#wpadminbar li#wp-admin-bar-languages { |
| 40 |
display: block; /*shows our menu on mobile devices */ |
| 41 |
} |
| 42 |
|
| 43 |
#wpadminbar #wp-admin-bar-languages > .ab-item { |
| 44 |
width: 50px; |
| 45 |
text-align: center; |
| 46 |
} |
| 47 |
|
| 48 |
#wpadminbar #wp-admin-bar-languages > .ab-item .ab-icon:before { |
| 49 |
font: 32px/1 'dashicons'; |
| 50 |
top: -1px; |
| 51 |
} |
| 52 |
|
| 53 |
#wpadminbar #wp-admin-bar-languages > .ab-item img { |
| 54 |
margin: 19px 0; |
| 55 |
} |
| 56 |
|
| 57 |
#wpadminbar #wp-admin-bar-languages #wp-admin-bar-all .ab-item .ab-icon { |
| 58 |
margin-right: 6px; |
| 59 |
font-size: 20px !important; |
| 60 |
line-height: 20px !important; |
| 61 |
} |
| 62 |
} |
| 63 |
|