Make WordPress Core

Ticket #15561: garyc40-15561.patch

File garyc40-15561.patch, 937 bytes (added by garyc40, 14 years ago)

link dialog style fix

  • wp-admin/css/press-this.dev.css

    diff --git wp-admin/css/press-this.dev.css wp-admin/css/press-this.dev.css
    index 0a8c092..f3470dc 100644
    body { 
    77        min-height: 400px;
    88}
    99
     10.wp-dialog ol, ul { list-style:none; margin:0; padding:0; }
     11
     12.wp-dialog {
     13        line-height: 1.4em;
     14}
     15
     16.wp-dialog input[type="text"] {
     17        -webkit-box-sizing: border-box;
     18}
     19
     20.wp-dialog input[type="text"], .wp-dialog textarea {
     21        border-width: 1px;
     22        border-style: solid;
     23        -moz-border-radius: 4px;
     24        -khtml-border-radius: 4px;
     25        -webkit-border-radius: 4px;
     26        border-radius: 4px;
     27        font-size:12px;
     28        margin: 1px;
     29        padding: 3px;
     30}
     31
     32.toggle-arrow {
     33        background-position: 0% 0%;
     34        background-repeat: no-repeat;
     35        display: block;
     36        height: 22px;
     37        line-height: 22px;
     38        font-size:12px;
     39        font-family:'Lucida Grande';
     40}
     41
     42.toggle-arrow-active {
     43        background-position: 0 100%;
     44}
     45
    1046img {
    1147        border: none;
    1248}