Ticket #35126: 35126.2.patch
File 35126.2.patch, 3.1 KB (added by , 9 years ago) |
---|
-
src/wp-admin/css/common.css
3058 3058 } 3059 3059 3060 3060 .handlediv, 3061 .postbox .handlediv.button-link, 3061 3062 .item-edit, 3062 3063 .sidebar-name-arrow, 3063 3064 .accordion-section-title:after { … … 3072 3073 .widget-action:focus, 3073 3074 .handlediv:hover, 3074 3075 .handlediv:focus, 3076 .postbox .handlediv.button-link:hover, 3077 .postbox .handlediv.button-link:focus, 3075 3078 .item-edit:hover, 3076 3079 .item-edit:focus, 3077 3080 .sidebar-name:hover .sidebar-name-arrow, -
src/wp-admin/css/customize-nav-menus.css
771 771 margin-bottom: 1em; 772 772 } 773 773 774 . menu-delete {774 .button-link.menu-delete { 775 775 color: #a00; 776 776 cursor: pointer; 777 777 text-decoration: underline; 778 778 } 779 779 780 . menu-delete:hover,781 . menu-delete:focus {780 .button-link.menu-delete:hover, 781 .button-link.menu-delete:focus { 782 782 color: #f00; 783 783 text-decoration: none; 784 784 } -
src/wp-includes/css/buttons.css
200 200 201 201 /* Buttons that look like links, for a cross of good semantics with the visual */ 202 202 .wp-core-ui .button-link { 203 color: #0073aa; 203 204 margin: 0; 204 205 padding: 0; 205 206 -webkit-box-shadow: none; … … 210 211 background: none; 211 212 outline: none; 212 213 cursor: pointer; 214 -webkit-transition-property: border, background, color; 215 transition-property: border, background, color; 216 -webkit-transition-duration: .05s; 217 transition-duration: .05s; 218 -webkit-transition-timing-function: ease-in-out; 219 transition-timing-function: ease-in-out; 220 text-decoration: underline; 213 221 } 214 222 223 .wp-core-ui .button-link:hover, 224 .wp-core-ui .button-link:active { 225 color: #00a0d2; 226 } 227 215 228 .wp-core-ui .button-link:focus { 216 229 outline: #5b9dd9 solid 1px; 230 color: #124964; 231 -webkit-box-shadow: 232 0 0 0 1px #5b9dd9, 233 0 0 2px 1px rgba(30, 140, 190, .8); 234 box-shadow: 235 0 0 0 1px #5b9dd9, 236 0 0 2px 1px rgba(30, 140, 190, .8); 217 237 } 218 238 219 239 /* ---------------------------------------------------------------------------- -
src/wp-includes/css/media-views.css
189 189 transition: color .1s ease-in-out, background .1s ease-in-out; 190 190 } 191 191 192 .media-modal-close.button-link { 193 text-decoration: none; 194 } 195 192 196 .media-modal-close:active { 193 197 -webkit-box-shadow: none; 194 198 box-shadow: none; -
src/wp-includes/css/wp-auth-check.css
92 92 height: 22px; 93 93 width: 22px; 94 94 color: #72777c; 95 text-decoration: none; 95 96 } 96 97 97 98 #wp-auth-check-wrap .wp-auth-check-close:before {