Make WordPress Core

Ticket #26165: 26165.diff

File 26165.diff, 2.0 KB (added by shaunandrews, 11 years ago)

Making accessibility mode work again.

  • src/wp-admin/css/wp-admin.css

     
    1027910279}
    1028010280
    1028110281/* Accessibility Mode */
     10282.widgets_access #widgets-left .widget .widget-top {
     10283        cursor: auto;
     10284}
     10285
     10286.widgets_access #wpwrap .widgets-holder-wrap.closed .sidebar-description,
     10287.widgets_access #wpwrap .widgets-holder-wrap.closed .widget {
     10288        display: block;
     10289}
     10290
     10291.widgets_access #widgets-left .widget .widget-top:hover,
     10292.widgets_access #widgets-right .widget .widget-top:hover {
     10293        border-color: #ddd;
     10294}
     10295
    1028210296#available-widgets .widget-control-edit .edit {
    1028310297        display :none;
    1028410298}
    1028510299
    10286 #available-widgets .widget-control-edit .add {
    10287         display: block;
    10288         position: absolute;
    10289         top: 0;
    10290         right: 50px;
    10291         bottom: 0;
    10292         left: 0;
    10293         z-index: 40;
    10294         text-align: center;
    10295         text-indent: -5000px;
     10300#widgets-left .inactive-sidebar .widget-control-edit .add,
     10301#widgets-right .widget-control-edit .add {
     10302        display: none;
    1029610303}
    1029710304
     10305#widgets-left .widget-control-edit,
    1029810306#widgets-right .widget-control-edit {
     10307        color: #666;
    1029910308        background: #EEE;
    10300         margin: -14px -10px 0 0;
    10301         padding: 16px 15px;
     10309        margin: -11px -10px 0 0;
     10310        padding: 12px 15px 13px 15px;
    1030210311        border-left: 1px solid #DDD;
    1030310312}
    1030410313
    10305 #widgets-right .widget-control-edit .add {
    10306         display: none;
    10307 }
    10308 
     10314#widgets-left .widget-control-edit:hover,
    1030910315#widgets-right .widget-control-edit:hover {
     10316        color: #fff;
    1031010317        background: #444;
    1031110318}
    1031210319
    10313 #widgets-right .widget-control-edit:before {
    10314         content: '\f111';
    10315         display: inline-block;
    10316         -webkit-font-smoothing: antialiased;
    10317         -moz-osx-font-smoothing: grayscale;
    10318         font: normal 16px/1 'dashicons';
    10319         vertical-align: top;
    10320         position: relative;
    10321                 top: -1px;
    10322         padding-right: 4px;
    10323 }
    10324 
    1032510320.widgets-holder-wrap .sidebar-name,
    1032610321.widgets-holder-wrap .sidebar-description {
    1032710322        -webkit-user-select: none;
     
    1033210327.editwidget {
    1033310328        margin: 0 auto;
    1033410329}
     10330.editwidget .widget-inside {
     10331        display: block;
     10332        padding: 0 15px;
     10333}
    1033510334.editwidget .widget-control-actions {
    1033610335        margin-top: 20px;
    1033710336}