PluginProbe
Polylang / 1.6.3
Polylang v1.6.3
3.8.9 3.8.8 3.8.7 3.8.6 3.8.5 3.8.4 3.8.3 2.7 2.7.0.1 2.7.1 2.7.2 2.7.3 2.7.4 2.8 2.8.1 2.8.2 2.8.3 2.8.4 2.9 2.9.1 2.9.2 3.0 3.0.1 3.0.2 3.0.3 All 233 releases
polylang / css / admin-mobi.css

admin-mobi.css in Polylang 1.6.3, at css/admin-mobi.css

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