- Timestamp:
- 01/11/2017 10:42:23 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/css/twentyseventeen.scss
r11282 r11379 155 155 } 156 156 157 @mixin border-radius-none() { 158 -webkit-border-radius: none; 159 -moz-border-radius: none; 160 -ms-border-radius: none; 161 border-radius: none; 162 } 163 157 164 // Box sizing 158 165 @mixin box-model($box-model) { … … 193 200 194 201 // Variables: color definitions 195 $body-text: #141412; 202 203 $dark-grey: #555; 204 $medium-grey: #878787; 205 $light-grey: #dcdcdc; 206 $x-light-grey: #f7f7f7; 207 $white: #fff; 208 209 $body-text: #333; 210 $bp-light-text: $medium-grey; 211 $bp-xlight-text: #eee; 196 212 $content-background: #fff; 197 $off-white: lighten(#f9f8ee, 0.7);213 $off-white: #fafafa; 198 214 $cream-background: #f7f5e7; 199 $light-background: #f7f7f7;200 $medium-background: #ccc;201 $dark-background: #555;202 $border-color: # d4d0ba; // border color is varied using rgba215 $light-background: $x-light-grey; 216 $medium-background: $medium-grey; 217 $dark-background: $dark-grey; 218 $border-color: #bebebe; 203 219 $border-light: #eaeaea; // BP dividers 204 220 $border-med: #ddd; … … 207 223 $notice-error: #c85a6e; 208 224 $notice-warning: #d05656; 209 $notice-info: # 9fd1e2;225 $notice-info: #7dd4ff; 210 226 $notice-update: #ced98c; 211 227 $stripe-odd: #ebf0ff; 212 228 $stripe-even: #dbe5ff; 213 $unread: #eee;229 $unread: $x-light-grey; 214 230 $link-action: #c82b2b; 215 231 /*-------------------------------------------------------------- … … 278 294 div.clear {display: none;} 279 295 296 // deal with global clearing property set on heading elements 297 // - for the moment we'll just specify this on lists ul only 298 299 ul.item-list { 300 h1, 301 h2, 302 h3, 303 h4, 304 h5, 305 h6 { 306 clear: none; 307 padding: 0; 308 } 309 } 310 280 311 // Ensure no text decoration or box shadow causing underlined effect. 281 312 #page a { … … 294 325 } // close .buddypress 295 326 296 // reduce the overlarge entry title margins327 // reduce the overlarge entry title margins 297 328 @include medium-up { 298 329 … … 311 342 } 312 343 } 313 // 2017 has very small page entry title headings314 // enlarge slightly for BP screens.315 .buddypress {316 article.page {317 .entry-header {318 .entry-title {319 @include font-size(22);320 321 @include medium-up {322 @include font-size(28);323 }324 }325 }326 }327 }328 344 329 345 // Open up the content width areas for BP screens to allow max widths. 330 // This takes into account the ability to add/remove sidebars in 2017.346 // This takes into account the ability to columnize pages in 2017. 331 347 // Only effect changes based on breakpoints. 332 348 333 @include med ium-up {349 @include med-small-up { 334 350 335 351 body.buddypress.page.page-two-column { … … 338 354 339 355 .entry-header { 340 width: 20%;356 width: 30%; 341 357 } 342 358 343 359 .entry-content { 344 width: 80%;360 width: 68%; 345 361 } 346 362 } … … 358 374 margin-left: 0; 359 375 margin-right: 0; 360 // width: auto;361 376 } 362 377 } … … 370 385 371 386 } // body.buddypress 387 } 388 389 // 2017 allows for selecting two distinct color schemes. 390 // Our companion styles respect themes colors & inherit or avoid 391 // setting backgrounds/colors so selecting the dark scheme generally 392 // allows the theme to reset the BP text/headings etc to white 393 // In places we do set backgrounds, Navs, search forms etc these 394 // are added here under the themes body class to enable changing 395 396 // Some element colors are inherited from BP original sheet so need to 397 // to be reset under the dark scheme, where set in this sheet we simply state them 398 // only for the light scheme, additionally elements such as BP form styles 399 // need styles removing & are handled later in 'Forms' section 400 body.colors-dark { 401 402 #buddypress { 403 404 //tabs border bottom color needs to match dark background 405 #group-create-tabs.item-list-tabs { 406 407 li.selected, 408 li.current { 409 border-bottom-color: #222; 410 411 a { 412 color: inherit; 413 } 414 } 415 } 416 417 div.item-list-tabs { 418 419 ul { 420 421 li.selected, 422 li.current { 423 424 a { 425 background: none; 426 color: inherit; 427 } 428 } 429 } 430 } 431 432 #object-nav { 433 434 li:not(.current):focus, 435 li:not(.current):hover { 436 437 a { 438 color: #555; 439 } 440 } 441 } 442 443 // With the dark scheme the subnav links lose definition as 444 // nav menu links, add a border top to clarify the li.last element seperated from links. 445 #subnav.item-list-tabs { 446 447 ul { 448 border-bottom: 1px solid rgba($border-light, 0.9); 449 margin-bottom: $spacing-val-md; 450 451 li.last { 452 border-top: 1px solid rgba($border-light, 0.9); 453 } 454 } 455 } 456 457 // lists text: descr, meta, etc 458 .item-list { 459 460 div.meta { 461 color: #ddd; 462 } 463 464 div.item-desc, 465 .activity-header p, 466 .activity-comments ul, 467 .acomment-meta { 468 color: $bp-xlight-text; 469 } 470 471 .activity-meta, 472 .action { 473 a { 474 background: $off-white; 475 476 &:focus, 477 &:hover { 478 background: $white; 479 } 480 } 481 } 482 } 483 484 #latest-update { 485 color: $bp-xlight-text; 486 } 487 488 div.pagination * { 489 color: #ddd; 490 } 491 492 #item-header { 493 .user-nicename { 494 color: $bp-xlight-text; 495 } 496 } 497 498 #item-body { 499 500 table { 501 502 thead { 503 504 tr, 505 th { 506 background: none; 507 color: $bp-xlight-text; 508 } 509 } 510 511 tr.alt { 512 513 td { 514 background: none; 515 color: $bp-xlight-text; 516 } 517 } 518 519 .field-visibility-settings, 520 .field-visibility-settings-notoggle { 521 color: #eee; 522 } 523 524 } 525 526 fieldset { 527 background: none; 528 } 529 530 .checkbox, 531 .radio { 532 533 label { 534 color: #eee; 535 } 536 } 537 538 div#invite-list { 539 background: none; 540 } 541 } 542 543 } // close #buddypress 544 } 545 546 547 body.colors-dark.group-members { 548 549 #buddypress { 550 551 #subnav { 552 553 li {background: none;} 554 555 .groups-members-search { 556 557 form { 558 margin-bottom: $spacing-val-md; 559 margin-top: 0; 560 } 561 } 562 } 563 } 564 } 565 566 // remove borders for dir component screens. 567 .directory.colors-dark { 568 569 #buddypress { 570 571 #subnav.item-list-tabs { 572 573 ul { 574 border-bottom: 0; 575 border-top: 0; 576 577 li.last.filter { 578 border-top: 0; 579 } 580 } 581 } 582 583 div.activity { 584 585 ul.item-list { 586 border-top: 0; 587 } 588 } 589 } 590 } 591 592 body.colors-light { 593 594 #buddypress { 595 596 div.item-list-tabs { 597 598 ul { 599 background-color: $off-white; 600 } 601 } 602 603 div#subnav.item-list-tabs { 604 605 ul { 606 background-color: $light-background; 607 608 li.last { 609 background: $content-background; 610 } 611 } 612 } 613 614 .item-list { 615 616 .activity-header { 617 618 p { 619 background-color: $light-background; 620 color: $bp-light-text; 621 } 622 } 623 624 .activity-comments { 625 626 .acomment-meta { 627 color: #737373; 628 } 629 } 630 } 631 632 #item-body { 633 634 .profile { 635 636 h2 { 637 background: $medium-grey; 638 color: #fff; 639 } 640 } 641 } 642 643 table { 644 645 tr.alt { 646 647 td { 648 background: #f5f5f5; 649 color: $body-text; 650 } 651 } 652 } 653 654 div#invite-list { 655 background: $off-white; 656 } 657 } // close #buddypress 372 658 } 373 659 … … 410 696 411 697 ul { 412 background-color: $off-white;413 698 border-bottom: 1px solid rgba($border-light, 0.9); 414 border-top: 1px solid rgba($border-light, 0.9);415 699 overflow: hidden; 416 700 padding: 0; … … 419 703 420 704 a { 421 color: #0073c1;422 705 423 706 span {border-radius: 25%;} … … 429 712 } // close #buddypress 430 713 431 // .bp-user #object-nav @ small screen as a dropdown432 433 .bp-user {434 435 #buddypress {436 437 @include small-only {438 439 #object-nav {440 background: $off-white;441 border: 1px solid $border-light;442 overflow: visible;443 padding: $spacing-val-sm;444 445 ul {446 border: 0;447 height: 0;448 // all latest vendor releases handle transitions, so no prefixes used.449 transition: height 0.3s ease-in-out 0.7s;450 visibility: hidden;451 }452 453 &:before {454 content: "Menu \021E9";455 display: inline;456 opacity: 0.7;457 }458 459 &:hover,460 &:focus {461 &:before {content: "Menu \021E7";}462 463 ul {464 height: 320px;465 opacity: 1;466 overflow-y: auto;467 visibility: visible;468 }469 }470 }471 472 #subnav {473 clear: both;474 }475 476 } // close @media477 }478 }479 714 480 715 /*__ Horizontal menus __*/ … … 520 755 521 756 ul { 522 background-color: $light-background;523 757 border-bottom: 0; 524 758 margin-top: $spacing-val-xs; … … 526 760 527 761 li.last { 528 background: $content-background;529 762 margin-top: 0; 530 763 padding: $spacing-val-xs $spacing-val-xs $spacing-val-xs 0; … … 570 803 // to sit alongside the vert menu 571 804 // 2017 right sidebar is displayed if the widget sidebar has widgets; 572 // we'll only display object nav as a vert menu if sidebar not present.805 // we'll only display object nav as a vert menu if not .two-column-page. 573 806 574 807 @include medium-up { 575 808 576 body .no-sidebar{809 body:not(.page-two-column) { 577 810 578 811 #buddypress { 579 580 #item-header,581 #item-body {582 background: $content-background;583 }584 812 585 813 #object-nav { … … 631 859 @include med-small-up { 632 860 633 #main { 634 635 #buddypress { 636 637 #group-create-tabs.item-list-tabs { 638 639 ul:before, 640 ul:after { 641 content: " "; 642 display: table; 643 } 644 645 ul:after { 646 clear: both; 647 } 648 649 ul { 650 background: none; 651 border: 0; 652 border-bottom: 1px solid $border-med; 653 overflow: visible; 654 padding-bottom: 0; 655 656 li { 657 float: left; 658 width: auto; 659 } 660 661 li.selected, 662 li.current { 663 border: 1px solid $border-med; 664 border-bottom-color: $content-background; 665 @include border-top-radius(4px); 666 margin-bottom: -1px; 667 668 a { 669 background: none; 670 color: $body-text; 671 outline: none; 672 } 673 } 674 } 675 676 } // close .item-list-tabs 677 678 #subnav { 679 ul { 680 border-bottom: 0; 681 } 682 683 } // close #subnav 684 } // close #buddypress 685 } 861 #buddypress { 862 863 #group-create-tabs.item-list-tabs { 864 865 ul:before, 866 ul:after { 867 content: " "; 868 display: table; 869 } 870 871 ul:after { 872 clear: both; 873 } 874 875 ul { 876 background: none; 877 border: 0; 878 border-bottom: 1px solid $border-med; 879 overflow: visible; 880 padding-bottom: 0; 881 882 li { 883 float: left; 884 width: auto; 885 } 886 887 li.selected, 888 li.current { 889 border: 1px solid $border-med; 890 border-bottom-color: $content-background; 891 @include border-top-radius(4px); 892 margin-bottom: -1px; 893 894 a { 895 background: none; 896 color: $body-text; 897 outline: none; 898 } 899 } 900 } 901 902 } // close .item-list-tabs 903 904 #subnav { 905 ul { 906 border-bottom: 0; 907 } 908 909 } // close #subnav 910 } // close #buddypress 911 686 912 } // close @media 687 913 … … 771 997 772 998 .action { 999 773 1000 .generic-button { 1001 774 1002 a { 1003 775 1004 &:focus, 776 1005 &:hover { … … 852 1081 .update { 853 1082 display: block; 854 @include font-size(1 2);1083 @include font-size(13); 855 1084 856 1085 @include medium-up { … … 893 1122 margin-left: 0; 894 1123 padding: $spacing-val-md 0 $spacing-val-xs; 1124 895 1125 // push the actions to the right 896 897 1126 @include medium-up { 898 1127 clear: none; … … 918 1147 // position but inline-block the buttons 919 1148 920 @include med-small-up {1149 @include small-up { 921 1150 // keep buttons to a row small tablet up 922 1151 margin: 0 $spacing-val-sm $spacing-val-sm 0; … … 1089 1318 1090 1319 .activity-avatar { 1320 1091 1321 a { 1322 1092 1323 img.avatar { 1093 1324 height: 30px; … … 1110 1341 1111 1342 .activity-header { 1112 line-height: inherit;1113 1343 margin-right: 0; 1114 1344 1115 1345 p { 1116 background-color: $light-background;1117 1346 border: 1px solid rgba($border-light, 0.6); 1118 color: #727272;1119 1347 margin-top: 0; 1120 1348 padding: 0 0.2em; … … 1122 1350 1123 1351 img.avatar { 1352 box-shadow: none; 1124 1353 display: inline-block; 1125 margin-bottom: 0 !important; // have to match to BP 1354 margin: 0 5px !important; // have to match to BP 1355 vertical-align: middle; 1126 1356 } 1127 1357 } // close .activity-header 1128 1358 1129 1359 .activity-meta { 1360 1130 1361 a { 1131 1362 display: block; 1132 1363 margin-bottom: $spacing-val-xs; 1133 1364 1134 @include small-up -bp{1365 @include small-up { 1135 1366 display: inline-block; 1136 1367 margin-bottom: 0; 1368 width: auto; 1137 1369 } 1138 1370 } … … 1198 1430 .activity-comments { 1199 1431 border-left: 1px solid $border-light; 1200 margin-top: 5px; 1432 margin: $spacing-val-md 0 $spacing-val-md; 1433 1434 @include small-up { 1435 margin-left: $spacing-val-md; 1436 } 1201 1437 1202 1438 ul { 1203 background: rgba($light-background, 0.6);1204 color: #737373;1205 1439 margin: 15px 0 0 2px; 1440 1441 li { 1442 border-top: 1px solid $border-color; 1443 } 1206 1444 1207 1445 a { … … 1211 1449 1212 1450 .acomment-meta { 1213 color: #737373;1451 border-bottom: 1px solid $border-light; 1214 1452 } 1215 1453 … … 1257 1495 1258 1496 @include medium-up { 1497 1259 1498 li { 1260 1499 .item-avatar, … … 1265 1504 .action { 1266 1505 float: right; 1506 } 1507 } 1508 1509 li.is-current-user { 1510 1511 .item { 1512 float: none; 1513 left: 0; 1514 padding-left: 5%; 1515 width: auto; 1267 1516 } 1268 1517 } … … 1319 1568 *----------------------------------------------------------- 1320 1569 */ 1570 @include med-small-up { 1571 1572 1573 .bp-user.page-two-column { 1574 1575 #buddypress { 1576 1577 #cover-image-container { 1578 1579 #item-header-cover-image { 1580 1581 #item-header-content { 1582 margin-left: 140px; 1583 margin-top: -100px; 1584 } 1585 } 1586 } 1587 } 1588 } 1589 1590 .single-item.groups.page-two-column { 1591 1592 #buddypress { 1593 1594 #cover-image-container { 1595 1596 #item-header-cover-image { 1597 1598 #item-header-content { 1599 margin-left: 10px; 1600 } 1601 } 1602 } 1603 } 1604 } 1605 1606 } // close media 1321 1607 1322 1608 .bp-user, … … 1324 1610 1325 1611 #buddypress { 1612 1613 // we need to remove the cover image dec styles 1614 // & reset them for med up only. 1615 #item-header-cover-image { 1616 .user-nicename { 1617 color: $body-text; 1618 text-shadow: none; 1619 } 1620 } 1621 1622 @include med-small-up { 1623 1624 #item-header-cover-image { 1625 1626 .user-nicename { 1627 color: $white; 1628 text-shadow: 0 0 3px rgba(0, 0, 0, 0.8); 1629 } 1630 } 1631 } 1326 1632 1327 1633 #item-header-content { … … 1418 1724 1419 1725 a { 1420 border-bottom: 0;1421 1726 1422 1727 img { … … 1525 1830 1526 1831 a { 1527 border-bottom: 0;1528 1832 display: inline-block; 1529 1833 float: none; … … 1560 1864 *----------------------------------------------------------- 1561 1865 */ 1866 1562 1867 1563 1868 /** … … 1569 1874 */ 1570 1875 1876 .groups.single-item.members { 1877 1878 #buddypress { 1879 1880 #subnav.item-list-tabs { 1881 1882 ul { 1883 background: none; 1884 border-top: 0; 1885 } 1886 1887 } 1888 } 1889 1890 } 1891 1571 1892 /** 1572 1893 *----------------------------------------- … … 1710 2031 } 1711 2032 1712 margin: $spacing-val-xs $spacing-val-xs0 0;2033 margin: $spacing-val-xs 0 0; 1713 2034 } 1714 2035 } … … 1779 2100 .pag-count {font-style: italic;} 1780 2101 1781 .notifications-options-nav { 1782 border: 1px solid rgba($border-color, 0.5); 2102 .notifications-options-nav, 2103 .messages-options-nav { 2104 1783 2105 float: left; 1784 2106 width: 100%; … … 1794 2116 select, 1795 2117 input { 1796 border: 0; 2118 1797 2119 @include font-size(14); 1798 2120 outline: 0; … … 1802 2124 select { 1803 2125 float: left; 1804 margin-right: 0;1805 width: 60%;2126 margin-right: 1%; 2127 width: 59%; 1806 2128 } 1807 2129 … … 1813 2135 } 1814 2136 1815 } // close .notifications-options-nav 2137 input[disabled="disabled"]:focus, 2138 input[disabled="disabled"]:hover { 2139 background: none; 2140 } 2141 2142 2143 } // close .notifications-options-nav/.messages-options-nav 1816 2144 1817 2145 } //close #buddypress … … 1829 2157 1830 2158 .profile { 1831 .bp-widget { 2159 1832 2160 h2 { 1833 background: lighten($dark-background, 15%);1834 color: #fff;1835 2161 margin: $spacing-val-lg 0 $spacing-val-sm; 1836 2162 padding: 0.1em 0 0.1em 0.4em; … … 1838 2164 1839 2165 table {margin-top: 0;} 1840 } 2166 2167 .profile-fields { 2168 2169 tr.alt { 2170 2171 td { 2172 color: $body-text; 2173 } 2174 } 2175 2176 tr:last-child { 2177 border-bottom: 0; 2178 } 2179 } 2180 1841 2181 /* Edit profile */ 1842 2182 … … 1875 2215 1876 2216 .field-visibility-settings-toggle, 2217 .field-visibility-settings-notoggle, 1877 2218 .field-visibility-settings { 1878 2219 @include font-size(14); 2220 margin-top: $spacing-val-sm; 1879 2221 } 1880 2222 … … 1882 2224 .visibility-toggle-link { 1883 2225 background: $dark-background; 2226 @include border-radius(3px); 1884 2227 color: #fff; 1885 2228 padding: 0.2em 0.5em; … … 1933 2276 #message-thread { 1934 2277 //Single message view 2278 1935 2279 a { 1936 2280 border-bottom: 0; … … 1980 2324 1981 2325 #send-reply { 2326 1982 2327 .message-content { 1983 2328 background: $content-background; … … 1995 2340 1996 2341 thead { 2342 1997 2343 tr { 1998 background: lighten($dark-background, 10%); 2344 background: none; 2345 border-bottom: 1px solid $border-color; 2346 2347 2348 th { 2349 background: #555; 2350 } 1999 2351 } 2000 2352 } 2001 2353 2002 2354 tr { 2355 border-bottom: 5px solid $medium-grey; 2356 2003 2357 td { 2004 background: $content-background;2005 2358 display: inline-block; 2006 2359 float: left; … … 2009 2362 td.thread-star, 2010 2363 td.thread-options { 2011 border-bottom-color: $ medium-background;2012 border-bottom-width: 2px;2364 border-bottom-color: $border-color; 2365 border-bottom-width: 1px; 2013 2366 height: 2.4em; 2014 2367 padding-bottom: 0.2em; … … 2018 2371 padding-top: 0; 2019 2372 } 2373 } 2374 2375 td.bulk-select-check, 2376 td.thread-star, 2377 td.thread-from, 2378 td.thread-info, 2379 td.thread-options { 2380 border-top: 0; 2020 2381 } 2021 2382 … … 2081 2442 2082 2443 tr.unread { 2444 2083 2445 td { 2084 background: $unread;2446 background: none; 2085 2447 border-color: $border-color; 2086 2448 } … … 2102 2464 border-right: 0; 2103 2465 width: 30px; 2104 }2105 }2106 2107 .messages-options-nav {2108 select {2109 height: auto;2110 2466 } 2111 2467 } … … 2296 2652 // Attempt to reset form control widths 2297 2653 #main { 2654 2298 2655 #buddypress { 2656 2299 2657 .standard-form { 2300 2658 2301 li {float: none;} 2659 li { 2660 float: none; 2661 } 2662 2302 2663 input[type='text'], 2303 2664 input[type='email'], … … 2309 2670 } 2310 2671 } 2311 2312 2672 2313 2673 #buddypress { … … 2365 2725 2366 2726 #buddypress { 2727 2367 2728 div.dir-search, 2368 2729 div.message-search, … … 2376 2737 form { // *sigh* only to bludgeon over specified rules 2377 2738 border: 1px solid rgba($border-color, 0.6); 2739 @include border-radius(2px); 2378 2740 overflow: hidden; 2379 2741 … … 2381 2743 float: left; 2382 2744 margin: 0; 2383 } 2384 2385 input[type='text'] { 2745 width: 70%; 2746 } 2747 2748 input[type="text"] { 2386 2749 float: left; 2387 2750 margin: 0; 2388 width: 70%; 2389 } 2390 2391 input[type='text'], 2392 input[type='submit'] { 2751 width: 100%; 2752 } 2753 2754 input[type="text"], 2755 input[type="submit"] { 2756 border: 0; 2393 2757 @include font-size(14); 2394 border: 0;2395 2758 line-height: inherit; 2396 2759 } 2397 2760 2398 input[type= 'text'] {2761 input[type="text"] { 2399 2762 border-right: 1px solid rgba($border-color, 0.6); 2763 font-weight: 400; 2400 2764 padding: 0.2em 0 0.2em 0.2em; 2401 2765 } 2402 2766 2403 input[type='submit'] { 2767 input[type="submit"] { 2768 @include border-radius-none(); 2404 2769 float: right; 2405 2770 font-weight: normal; … … 2413 2778 } // close .dir-search, .message-search 2414 2779 2780 // Dirs & certain components hide search hides labels so can't width the label element 2781 // adjust so that the input takes reduced width. 2782 2783 div.dir-search { 2784 margin-top: 0; 2785 } 2786 2787 .dir-search #search-members-form, 2788 #search-groups-form, 2789 #search-message-form { 2790 2791 input[type='text'] { 2792 float: left; 2793 margin: 0; 2794 width: 70%; 2795 } 2796 } 2797 2415 2798 // Shift the search parent to the right and allow to shrinkwrap 2416 2799 … … 2421 2804 float: right; 2422 2805 margin-bottom: 5px !important; 2423 2424 form {2425 label,2426 input[type='text'],2427 input[type='submit'] {2428 width: auto;2429 }2430 }2431 2806 } 2432 2807 … … 2437 2812 2438 2813 .dir-search, 2439 2440 .message-search {2814 .message-search, 2815 li.groups-members-search { 2441 2816 2442 2817 form { … … 2455 2830 } // close #buddypress 2456 2831 2832 // Adjustments for form elements colors, backgrounds, borders under the dark scheme. 2833 body.colors-dark { 2834 2835 #page { // for weight 2836 2837 #buddypress { 2838 2839 .dir-search, 2840 .groups-members-search, 2841 .message-search { 2842 2843 form { 2844 background: #333; 2845 border-color: #555; 2846 @include border-radius(2px); 2847 padding: 1px; 2848 } 2849 2850 input[type="text"] { 2851 background: none; 2852 } 2853 2854 input[type="submit"] { 2855 @include border-radius(2px); 2856 } 2857 } 2858 } 2859 2860 .message-search { 2861 margin-top: 0; 2862 } 2863 } 2864 } 2457 2865 /** 2458 2866 *------------------------------------------------------------------------------- … … 2473 2881 2474 2882 tr th { 2475 background: lighten($dark-background, 10%);2476 border-color: darken($border-light, 20%);2477 color: $ content-background;2883 background: $light-background; 2884 border-color: $border-light; 2885 color: $body-text; 2478 2886 } 2479 2887 … … 2537 2945 2538 2946 } // .notifications, .message-notices 2947 2948 .notifications { // table element 2949 .actions { // th element 2950 text-align: center; 2951 } 2952 } 2539 2953 } // #buddypress 2540 2954 … … 2574 2988 } // close #message 2575 2989 2990 .bp-avatar-status, 2991 .bp-cover-image-status { 2992 2993 .warning { 2994 background: #7dd4ff; 2995 border: 1px solid #000; 2996 color: $body-text; 2997 @include font-size(16); 2998 } 2999 } 3000 2576 3001 } // close #buddypress 2577 3002
Note: See TracChangeset
for help on using the changeset viewer.