Make WordPress Core

Ticket #14613: admin-table-border-radius.patch

File admin-table-border-radius.patch, 2.2 KB (added by wedsxcrfv, 14 years ago)

My patch

  • wp-admin/css/colors-classic.dev.css

     
    462462.widefat th {
    463463        text-shadow: rgba(255,255,255,0.8) 0 1px 0;
    464464}
    465 
     465.widefat thead th:first-of-type {
     466        -moz-border-radius-topleft: 4px;
     467        -khtml-border-top-left-radius: 4px;
     468        -webkit-border-top-left-radius: 4px;
     469        border-top-left-radius: 4px;
     470}
     471.widefat thead th:last-of-type {
     472        -moz-border-radius-topright: 4px;
     473        -khtml-border-top-right-radius: 4px;
     474        -webkit-border-top-right-radius: 4px;
     475        border-top-right-radius: 4px;
     476}
     477.widefat tfoot th:first-of-type {
     478        -moz-border-radius-bottomleft: 4px;
     479        -khtml-border-bottom-left-radius: 4px;
     480        -webkit-border-bottom-left-radius: 4px;
     481        border-bottom-left-radius: 4px;
     482}
     483.widefat tfoot th:last-of-type {
     484        -moz-border-radius-bottomright: 4px;
     485        -khtml-border-bottom-right-radius: 4px;
     486        -webkit-border-bottom-right-radius: 4px;
     487        border-bottom-right-radius: 4px;
     488}
    466489.widefat thead tr th,
    467490.widefat tfoot tr th,
    468491h3.dashboard-widget-title,
  • wp-admin/css/colors-fresh.dev.css

     
    461461.widefat th {
    462462        text-shadow: rgba(255,255,255,0.8) 0 1px 0;
    463463}
    464 
     464.widefat thead th:first-of-type {
     465        -moz-border-radius-topleft: 4px;
     466        -khtml-border-top-left-radius: 4px;
     467        -webkit-border-top-left-radius: 4px;
     468        border-top-left-radius: 4px;
     469}
     470.widefat thead th:last-of-type {
     471        -moz-border-radius-topright: 4px;
     472        -khtml-border-top-right-radius: 4px;
     473        -webkit-border-top-right-radius: 4px;
     474        border-top-right-radius: 4px;
     475}
     476.widefat tfoot th:first-of-type {
     477        -moz-border-radius-bottomleft: 4px;
     478        -khtml-border-bottom-left-radius: 4px;
     479        -webkit-border-bottom-left-radius: 4px;
     480        border-bottom-left-radius: 4px;
     481}
     482.widefat tfoot th:last-of-type {
     483        -moz-border-radius-bottomright: 4px;
     484        -khtml-border-bottom-right-radius: 4px;
     485        -webkit-border-bottom-right-radius: 4px;
     486        border-bottom-right-radius: 4px;
     487}
    465488.widefat thead tr th,
    466489.widefat tfoot tr th,
    467490h3.dashboard-widget-title,