Making WordPress.org

Ticket #6146: 6146.2.patch

File 6146.2.patch, 794 bytes (added by sagarladani, 3 years ago)

I have batter solution for this issue. I have added full width to button.

  • wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/style.css

     
    15761576.notice.notice-info.notice-alt {
    15771577        background-color: #e5f5fa;
    15781578}
     1579
     1580@media (max-width:440px) {
     1581        .page .o2-post .entry-content p span.feature {
     1582                display: table-cell;
     1583                position: relative;
     1584                top: 5px;
     1585        }
     1586
     1587        .page .o2-post .entry-content p span.feature.idea {
     1588                left: 5px;
     1589        }
     1590
     1591        .page .o2-post .entry-content p span.feature.merged {
     1592                left: 10px;
     1593        }
     1594
     1595        .page .o2-post .entry-content p span.feature.closed {
     1596                left: 15px;
     1597        }
     1598}