Changes between Initial Version and Version 3 of Ticket #40701
- Timestamp:
- 06/22/2017 09:30:33 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #40701
- Property Keywords has-patch added
-
Ticket #40701 – Description
initial v3 1 1 By default - when the admin menu is not folded - the icons in the admin menu are 36px wide. 2 2 {{{ 3 3 #adminmenu div.wp-menu-image { 4 4 float: left; … … 8 8 text-align: center; 9 9 } 10 10 }}} 11 11 With this width, Chrome renders the icons sharp. 12 12 13 13 When the admin menu is folded it changes the width to 35px: 14 {{{ 14 15 .folded #adminmenu div.wp-menu-image { 15 16 width: 35px; … … 18 19 z-index: 25; 19 20 } 20 21 }}} 21 22 The icons are blurry as the lines in the icon shifted 0.5px horizontally -> antialising. 22 23 23 24 Possible solution: 24 25 Do not force .wp-menu-image to 35px when the menu folded. 25 26 {{{ 26 27 .folded #adminmenu div.wp-menu-image { 27 28 height: 30px; … … 29 30 z-index: 25; 30 31 } 32 }}}