Changeset 10249
- Timestamp:
- 10/11/2015 06:24:45 PM (9 years ago)
- Location:
- trunk/src/bp-templates/bp-legacy/css
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/css/twentythirteen-rtl.css
r10224 r10249 96 96 */ 97 97 #buddypress { 98 /*__ Horizontal menus __*/98 /*__ Horizontal menus & small screen __*/ 99 99 } 100 100 … … 125 125 } 126 126 127 @media screen and (max-width: 38.75em) { 128 #buddypress #object-nav ul li:focus, 129 #buddypress #object-nav ul li:hover { 130 background: #f4f2df; 131 } 132 } 133 134 @media screen and (max-width: 38.75em) { 135 #buddypress #object-nav ul li:not(:last-child) { 136 border-bottom: 1px solid #eaeaea; 137 } 138 } 139 127 140 #buddypress #object-nav ul li:not(.selected) a { 128 141 opacity: 0.7; … … 239 252 border-bottom: 1px solid #ddd; 240 253 overflow: visible; 241 padding -bottom: 0;254 padding: 0; 242 255 } 243 256 #main #buddypress #group-create-tabs.item-list-tabs ul li { … … 1349 1362 border-bottom: 1px solid #eaeaea; 1350 1363 margin-right: 0; 1364 padding: 0; 1351 1365 } 1352 1366 … … 1474 1488 } 1475 1489 1490 .bp-user #buddypress #message-threads tr .thread-checkbox { 1491 padding: 0 0.3em 0 0; 1492 } 1493 1476 1494 .bp-user #buddypress #message-threads tr td.bulk-select-check, 1477 1495 .bp-user #buddypress #message-threads tr td.thread-from { 1478 height: 2.6em;1496 height: 3em; 1479 1497 } 1480 1498 … … 1506 1524 } 1507 1525 1526 .bp-user #buddypress #message-threads tr td.thread-info .thread-excerpt { 1527 font-size: 14px; 1528 font-size: 0.875rem; 1529 } 1530 1508 1531 .bp-user #buddypress #message-threads tr td.thread-options { 1509 1532 text-align: left; … … 1529 1552 .bp-user #buddypress #message-threads tr span.activity { 1530 1553 clear: both; 1531 font-size: 1 1px;1532 font-size: 0. 6875rem;1554 font-size: 12px; 1555 font-size: 0.75rem; 1533 1556 width: 100%; 1534 1557 } … … 1740 1763 width: auto; 1741 1764 } 1742 #buddypress div.message-search {1743 margin-left: 10px;1744 }1745 1765 } 1746 1766 … … 1773 1793 border-color: #b7b7b7; 1774 1794 color: #fff; 1795 } 1796 1797 #buddypress table th, 1798 #buddypress table td { 1799 padding: 0.3em; 1775 1800 } 1776 1801 -
trunk/src/bp-templates/bp-legacy/css/twentythirteen.css
r10224 r10249 96 96 */ 97 97 #buddypress { 98 /*__ Horizontal menus __*/98 /*__ Horizontal menus & small screen __*/ 99 99 } 100 100 … … 125 125 } 126 126 127 @media screen and (max-width: 38.75em) { 128 #buddypress #object-nav ul li:focus, 129 #buddypress #object-nav ul li:hover { 130 background: #f4f2df; 131 } 132 } 133 134 @media screen and (max-width: 38.75em) { 135 #buddypress #object-nav ul li:not(:last-child) { 136 border-bottom: 1px solid #eaeaea; 137 } 138 } 139 127 140 #buddypress #object-nav ul li:not(.selected) a { 128 141 opacity: 0.7; … … 239 252 border-bottom: 1px solid #ddd; 240 253 overflow: visible; 241 padding -bottom: 0;254 padding: 0; 242 255 } 243 256 #main #buddypress #group-create-tabs.item-list-tabs ul li { … … 1349 1362 border-bottom: 1px solid #eaeaea; 1350 1363 margin-left: 0; 1364 padding: 0; 1351 1365 } 1352 1366 … … 1474 1488 } 1475 1489 1490 .bp-user #buddypress #message-threads tr .thread-checkbox { 1491 padding: 0 0 0 0.3em; 1492 } 1493 1476 1494 .bp-user #buddypress #message-threads tr td.bulk-select-check, 1477 1495 .bp-user #buddypress #message-threads tr td.thread-from { 1478 height: 2.6em;1496 height: 3em; 1479 1497 } 1480 1498 … … 1506 1524 } 1507 1525 1526 .bp-user #buddypress #message-threads tr td.thread-info .thread-excerpt { 1527 font-size: 14px; 1528 font-size: 0.875rem; 1529 } 1530 1508 1531 .bp-user #buddypress #message-threads tr td.thread-options { 1509 1532 text-align: right; … … 1529 1552 .bp-user #buddypress #message-threads tr span.activity { 1530 1553 clear: both; 1531 font-size: 1 1px;1532 font-size: 0. 6875rem;1554 font-size: 12px; 1555 font-size: 0.75rem; 1533 1556 width: 100%; 1534 1557 } … … 1740 1763 width: auto; 1741 1764 } 1742 #buddypress div.message-search {1743 margin-right: 10px;1744 }1745 1765 } 1746 1766 … … 1773 1793 border-color: #b7b7b7; 1774 1794 color: #fff; 1795 } 1796 1797 #buddypress table th, 1798 #buddypress table td { 1799 padding: 0.3em; 1775 1800 } 1776 1801 -
trunk/src/bp-templates/bp-legacy/css/twentythirteen.scss
r10224 r10249 289 289 } 290 290 291 /*__ Horizontal menus __*/291 /*__ Horizontal menus & small screen __*/ 292 292 #object-nav { 293 293 294 294 ul { 295 295 overflow: hidden; 296 li {float: none;} 296 297 li { 298 @media screen and (max-width: 38.75em) { 299 &:focus, 300 &:hover { 301 background: darken($cream-background, 2%); 302 } 303 } 304 305 float: none; 306 } 307 308 @media screen and (max-width: 38.75em) { 309 li:not(:last-child) { 310 border-bottom: 1px solid $border-light; 311 } 312 } 313 297 314 li:not(.selected) { 298 315 a {opacity: 0.7;} … … 453 470 border-bottom: 1px solid $border-med; 454 471 overflow: visible; 455 padding -bottom: 0;472 padding: 0; 456 473 457 474 li { … … 1649 1666 1650 1667 #profile-edit-form { 1668 1651 1669 .button-nav:before, 1652 1670 .button-nav:after { … … 1662 1680 border-bottom: 1px solid $border-light; 1663 1681 margin-left: 0; 1682 padding: 0; 1664 1683 1665 1684 li { … … 1812 1831 } 1813 1832 1833 .thread-checkbox { 1834 padding: 0 0 0 0.3em; 1835 } 1836 1814 1837 td.bulk-select-check, 1815 1838 td.thread-from { 1816 height: 2.6em;1839 height: 3em; 1817 1840 @media screen and (max-width: 38.75em) { 1818 1841 height: 5.2em; … … 1835 1858 @include font-size(12); 1836 1859 } 1837 } 1860 1861 .thread-excerpt { 1862 @include font-size(14); 1863 } 1864 } 1865 1866 1838 1867 1839 1868 td.thread-options { … … 1856 1885 @media screen and (max-width: 38.75em) { 1857 1886 clear: both; 1858 @include font-size(1 1);1887 @include font-size(12); 1859 1888 width: 100%; 1860 1889 } … … 2107 2136 } 2108 2137 2109 div.message-search {margin-right: $spacing-val-sm;}2110 2138 } // close @media 2111 2139 … … 2134 2162 // a more general typography section to manage BP elements grouped under 2135 2163 // breakpoints. Provide top/bottom margins for tables, lacking in BP styles 2164 2136 2165 #buddypress { 2166 2137 2167 table { 2138 2168 @include font-size(14); … … 2143 2173 border-color: darken($border-light, 20%); 2144 2174 color: $content-background; 2175 } 2176 2177 // twentythirteen removes left padding, replace! 2178 th, 2179 td { 2180 padding: 0.3em; 2145 2181 } 2146 2182
Note: See TracChangeset
for help on using the changeset viewer.