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 |
1688 | 1688 | } |
1689 | 1689 | |
1690 | 1690 | /* Sitewide Notices loop */ |
1691 | | .sitewide-notices { |
1692 | | tr { |
1693 | | td:first-child { |
1694 | | display: none; |
1695 | | } |
1696 | | } |
1697 | | |
| 1691 | #message-threads.sitewide-notices { |
1698 | 1692 | td { |
| 1693 | width: 100%; |
| 1694 | |
1699 | 1695 | strong { |
1700 | 1696 | background: lighten($dark-background, 10%); |
1701 | 1697 | color: $content-background; |
1702 | 1698 | display: block; |
| 1699 | margin-bottom: 0.4em; |
1703 | 1700 | padding-left: 0.2em; |
1704 | 1701 | } |
| 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 | } |
1705 | 1739 | } |
1706 | 1740 | } |
1707 | 1741 | |