diff --git a/src/wp-admin/css/admin-menu.css b/src/wp-admin/css/admin-menu.css
index 243dde7daa..48f2ecce9b 100644
|
a
|
b
|
|
| 36 | 36 | width: 36px; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | | .icon16 { |
| 40 | | height: 18px; |
| 41 | | width: 18px; |
| 42 | | padding: 6px; |
| 43 | | margin: -6px 0 0 -8px; |
| 44 | | float: left; |
| 45 | | } |
| 46 | | |
| 47 | 39 | /* New Menu icons */ |
| 48 | 40 | |
| 49 | | .icon16:before { |
| 50 | | color: #8c8f94; /* same as new icons */ |
| 51 | | font: normal 20px/1 dashicons; |
| 52 | | speak: never; |
| 53 | | padding: 6px 0; |
| 54 | | height: 34px; |
| 55 | | width: 20px; |
| 56 | | display: inline-block; |
| 57 | | -webkit-font-smoothing: antialiased; |
| 58 | | -moz-osx-font-smoothing: grayscale; |
| 59 | | transition: all .1s ease-in-out; |
| 60 | | } |
| 61 | | |
| 62 | | .icon16.icon-dashboard:before { |
| 63 | | content: "\f226"; |
| 64 | | } |
| 65 | | |
| 66 | | .icon16.icon-post:before { |
| 67 | | content: "\f109"; |
| 68 | | } |
| 69 | | |
| 70 | | .icon16.icon-media:before { |
| 71 | | content: "\f104"; |
| 72 | | } |
| 73 | | |
| 74 | | .icon16.icon-links:before { |
| 75 | | content: "\f103"; |
| 76 | | } |
| 77 | | |
| 78 | | .icon16.icon-page:before { |
| 79 | | content: "\f105"; |
| 80 | | } |
| 81 | | |
| 82 | | .icon16.icon-comments:before { |
| 83 | | content: "\f101"; |
| 84 | | margin-top: 1px; |
| 85 | | } |
| 86 | | |
| 87 | | .icon16.icon-appearance:before { |
| 88 | | content: "\f100"; |
| 89 | | } |
| 90 | | |
| 91 | | .icon16.icon-plugins:before { |
| 92 | | content: "\f106"; |
| 93 | | } |
| 94 | | |
| 95 | | .icon16.icon-users:before { |
| 96 | | content: "\f110"; |
| 97 | | } |
| 98 | | |
| 99 | | .icon16.icon-tools:before { |
| 100 | | content: "\f107"; |
| 101 | | } |
| 102 | | |
| 103 | | .icon16.icon-settings:before { |
| 104 | | content: "\f108"; |
| 105 | | } |
| 106 | | |
| 107 | | .icon16.icon-site:before { |
| 108 | | content: "\f541"; |
| 109 | | } |
| 110 | | |
| 111 | | .icon16.icon-generic:before { |
| 112 | | content: "\f111"; |
| 113 | | } |
| 114 | | |
| 115 | 41 | /* hide background-image for icons above */ |
| 116 | | .icon16.icon-dashboard, |
| 117 | 42 | .menu-icon-dashboard div.wp-menu-image, |
| 118 | | .icon16.icon-post, |
| 119 | 43 | .menu-icon-post div.wp-menu-image, |
| 120 | | .icon16.icon-media, |
| 121 | 44 | .menu-icon-media div.wp-menu-image, |
| 122 | | .icon16.icon-links, |
| 123 | 45 | .menu-icon-links div.wp-menu-image, |
| 124 | | .icon16.icon-page, |
| 125 | 46 | .menu-icon-page div.wp-menu-image, |
| 126 | | .icon16.icon-comments, |
| 127 | 47 | .menu-icon-comments div.wp-menu-image, |
| 128 | | .icon16.icon-appearance, |
| 129 | 48 | .menu-icon-appearance div.wp-menu-image, |
| 130 | | .icon16.icon-plugins, |
| 131 | 49 | .menu-icon-plugins div.wp-menu-image, |
| 132 | | .icon16.icon-users, |
| 133 | 50 | .menu-icon-users div.wp-menu-image, |
| 134 | | .icon16.icon-tools, |
| 135 | 51 | .menu-icon-tools div.wp-menu-image, |
| 136 | | .icon16.icon-settings, |
| 137 | 52 | .menu-icon-settings div.wp-menu-image, |
| 138 | | .icon16.icon-site, |
| 139 | 53 | .menu-icon-site div.wp-menu-image, |
| 140 | | .icon16.icon-generic, |
| 141 | 54 | .menu-icon-generic div.wp-menu-image { |
| 142 | 55 | background-image: none !important; |
| 143 | 56 | } |