Changeset 10449
- Timestamp:
- 01/13/2016 01:25:30 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/twentytwelve-rtl.css
r10443 r10449 3 3 4 4 This is the BuddyPress companion stylesheet for 5 the WordPress Twenty sixteentheme.5 the WordPress Twentytwelve theme. 6 6 7 7 This sheet supports the primary BuddyPress styles in buddypress.css 8 8 9 If you are running as a child theme of twenty sixteenthis stylesheet will be9 If you are running as a child theme of twentytwelve this stylesheet will be 10 10 loaded by default. If you want to modify the styles the normal BP Theme Compat 11 11 hierarchy works and you can copy the file to buddypress/css/ or community/css/ … … 580 580 } 581 581 #buddypress form#whats-new-form #whats-new-content.active #whats-new-options[style] #whats-new-submit input { 582 padding: 0;582 padding: 2px 6px; 583 583 } 584 584 } … … 697 697 @media screen and (min-width: 37.5em) { 698 698 #buddypress #activity-stream .activity-content .activity-meta a { 699 display: inline-block;699 float: right; 700 700 margin-bottom: 0; 701 701 } … … 797 797 } 798 798 799 #buddypress #activity-stream li.has-comments .activity-comments .ac-form.root {800 background: #fff;801 right: 0;802 padding: 10px;803 position: absolute;804 top: 10px;805 width: -webkit-calc(100% - 10px);806 width: -moz-calc(100% - 10px);807 width: calc(100% - 10px);808 }809 810 @media screen and (min-width: 46.25em) {811 #buddypress #activity-stream li.has-comments .activity-comments .ac-form.root {812 right: 10px;813 }814 }815 816 799 /** 817 800 *---------------------------------------------------------- … … 1053 1036 .bp-user #buddypress #item-header #item-header-avatar { 1054 1037 text-align: center; 1055 width: 100%;1056 1038 } 1057 1039 … … 1070 1052 .bp-user #buddypress #item-header #item-header-avatar { 1071 1053 float: right; 1072 width: 20%;1073 1054 } 1074 1055 .bp-user #buddypress #item-header #item-header-avatar a { -
trunk/src/bp-templates/bp-legacy/css/twentytwelve.css
r10443 r10449 3 3 4 4 This is the BuddyPress companion stylesheet for 5 the WordPress Twenty sixteentheme.5 the WordPress Twentytwelve theme. 6 6 7 7 This sheet supports the primary BuddyPress styles in buddypress.css 8 8 9 If you are running as a child theme of twenty sixteenthis stylesheet will be9 If you are running as a child theme of twentytwelve this stylesheet will be 10 10 loaded by default. If you want to modify the styles the normal BP Theme Compat 11 11 hierarchy works and you can copy the file to buddypress/css/ or community/css/ … … 580 580 } 581 581 #buddypress form#whats-new-form #whats-new-content.active #whats-new-options[style] #whats-new-submit input { 582 padding: 0;582 padding: 2px 6px; 583 583 } 584 584 } … … 697 697 @media screen and (min-width: 37.5em) { 698 698 #buddypress #activity-stream .activity-content .activity-meta a { 699 display: inline-block;699 float: left; 700 700 margin-bottom: 0; 701 701 } … … 797 797 } 798 798 799 #buddypress #activity-stream li.has-comments .activity-comments .ac-form.root {800 background: #fff;801 left: 0;802 padding: 10px;803 position: absolute;804 top: 10px;805 width: -webkit-calc(100% - 10px);806 width: -moz-calc(100% - 10px);807 width: calc(100% - 10px);808 }809 810 @media screen and (min-width: 46.25em) {811 #buddypress #activity-stream li.has-comments .activity-comments .ac-form.root {812 left: 10px;813 }814 }815 816 799 /** 817 800 *---------------------------------------------------------- … … 1053 1036 .bp-user #buddypress #item-header #item-header-avatar { 1054 1037 text-align: center; 1055 width: 100%;1056 1038 } 1057 1039 … … 1070 1052 .bp-user #buddypress #item-header #item-header-avatar { 1071 1053 float: left; 1072 width: 20%;1073 1054 } 1074 1055 .bp-user #buddypress #item-header #item-header-avatar a { -
trunk/src/bp-templates/bp-legacy/css/twentytwelve.scss
r10443 r10449 178 178 179 179 This is the BuddyPress companion stylesheet for 180 the WordPress Twenty sixteentheme.180 the WordPress Twentytwelve theme. 181 181 182 182 This sheet supports the primary BuddyPress styles in buddypress.css 183 183 184 If you are running as a child theme of twenty sixteenthis stylesheet will be184 If you are running as a child theme of twentytwelve this stylesheet will be 185 185 loaded by default. If you want to modify the styles the normal BP Theme Compat 186 186 hierarchy works and you can copy the file to buddypress/css/ or community/css/ … … 864 864 865 865 input { 866 padding: 0;866 padding: 2px 6px; 867 867 } 868 868 } … … 1006 1006 margin-bottom: $spacing-val-xs; 1007 1007 @media screen and (min-width: 37.500em) { 1008 display: inline-block;1008 float: left; 1009 1009 margin-bottom: 0; 1010 1010 } … … 1127 1127 } // close .activity-comments 1128 1128 1129 // as class name states this form is a reply to the original act item 'root'1130 // We'll position this below the reply button to avoid having to scroll past1131 // existing comments but only if li parent has class 'has-comments'.1132 li.has-comments {1133 .activity-comments {1134 1135 .ac-form.root {1136 background: #fff;1137 left: 0;1138 @media screen and (min-width: 46.25em) {1139 left: 10px;1140 }1141 padding: 10px;1142 position: absolute;1143 top: 10px;1144 @include calc(width, "100% - 10px");1145 }1146 1147 }1148 }1149 1150 1129 } // close #activity-steam 1151 1130 … … 1393 1372 1394 1373 // #item-header-avatar { 1395 // //width: 21%;1374 // width: 21%; 1396 1375 // } 1397 1376 … … 1452 1431 #item-header-avatar { 1453 1432 text-align: center; 1454 width: 100%;1455 1433 1456 1434 img.avatar, … … 1473 1451 #item-header-avatar { 1474 1452 float: left; 1475 width: 20%;1476 1453 1477 1454 a {
Note: See TracChangeset
for help on using the changeset viewer.