| @@ -253,9 +253,11 @@ | ||
| 253 | 253 | Restore the WordPress background image defined in /wp-admin/css/forms.css for preview selects so they appear nicer and more consistent with other dropdowns. |
| 254 | 254 | The SVG is arrow-down-alt2 from Dashicons. |
| 255 | 255 | This needs to be important because of a background-image: none !important rule that gets applied in front end CSS. |
| 256 | 256 | */ |
| 257 | - background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55% !important; | |
| 257 | + background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E') !important; | |
| 258 | + background-repeat: no-repeat !important; | |
| 259 | + background-position: right 5px top 55% !important; | |
| 258 | 260 | |
| 259 | 261 | padding-right: 24px; /* Add enough padding for the icon. */ |
| 260 | 262 | } |
| 261 | 263 | |