Skip to:
Content

BuddyPress.org

Ticket #6291: 6291.notices.patch

File 6291.notices.patch, 1.4 KB (added by r-a-y, 9 years ago)
  • src/bp-templates/bp-legacy/css/twentyfifteen.scss

    diff --git src/bp-templates/bp-legacy/css/twentyfifteen.scss src/bp-templates/bp-legacy/css/twentyfifteen.scss
    index 9088d1b..dc39c05 100644
    i.e. in child theme named 'twentyfifteen-child', twentyfifteen.css would become 
    16881688                }
    16891689
    16901690                /* Sitewide Notices loop */
    1691                 .sitewide-notices {
    1692                         tr {
    1693                                 td:first-child {
    1694                                         display: none;
    1695                                 }
    1696                         }
    1697 
     1691                #message-threads.sitewide-notices {
    16981692                        td {
     1693                                width: 100%;
     1694
    16991695                                strong {
    17001696                                        background: lighten($dark-background, 10%);
    17011697                                        color: $content-background;
    17021698                                        display: block;
     1699                                        margin-bottom: 0.4em;
    17031700                                        padding-left: 0.2em;
    17041701                                }
     1702
     1703                                a {
     1704                                        display: inline-block;
     1705                                }
     1706                        }
     1707
     1708                        td:first-child {
     1709                                display: none;
     1710                        }
     1711
     1712                        td:first-child + td + td {
     1713                        // notice date
     1714                                border-bottom: 0;
     1715
     1716                                span {
     1717                                        line-height: 1;
     1718                                }
     1719                        }
     1720
     1721                        td:last-child {
     1722                        // notice actions
     1723                                text-align: right;
     1724                                line-height: 1;
     1725
     1726                                a:last-child {
     1727                                // hide the 'x' text
     1728                                        margin-left: 0.7em;
     1729                                        text-indent: -999em;
     1730                                        line-height: 0;
     1731                                }
     1732
     1733                                a:last-child::after {
     1734                                        content: attr( title );
     1735                                        display: block;
     1736                                        line-height: initial;
     1737                                        text-indent: 0;
     1738                                }
    17051739                        }
    17061740                }
    17071741