Changeset 5995
- Timestamp:
- 04/02/2016 10:12:01 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r5994 r5995 47 47 48 48 // PostCSS 49 autoprefixer = require('autoprefixer'); 49 autoprefixer = require('autoprefixer'), 50 stylelint = require('stylelint'), 51 reporter = require('postcss-reporter'); 50 52 51 53 // Load tasks. … … 261 263 dest: BUILD_DIR, 262 264 src: [ 'includes/admin/styles/*/colors.css' ] 265 }, 266 lint: { 267 options: { 268 syntax: require('postcss-scss'), 269 processors: [ 270 stylelint(), 271 reporter({ 272 clearMessages: true, 273 throwError: true 274 } 275 ) 276 ] 277 }, 278 expand: true, 279 cwd: SOURCE_DIR, 280 dest: SOURCE_DIR, 281 src: [ [ BBP_LTR_CSS ], 'includes/admin/styles/*/colors.scss' ] 263 282 } 264 283 }, … … 369 388 370 389 // Build tasks. 371 grunt.registerTask( 'src', [ 'checkDependencies', 'jsvalidate:src', 'jshint' ] );390 grunt.registerTask( 'src', [ 'checkDependencies', 'jsvalidate:src', 'jshint', 'postcss:lint' ] ); 372 391 grunt.registerTask( 'commit', [ 'src', 'checktextdomain' ] ); 373 392 grunt.registerTask( 'build', [ 'commit', 'clean:all', 'copy:files', 'postcss:core', 'colors', 'rtlcss:core', 'cssmin:ltr', 'cssmin:rtl', 'uglify:core', 'jsvalidate:build', 'makepot' ] ); -
trunk/package.json
r5994 r5995 24 24 "grunt-sass": "~1.1.0", 25 25 "grunt-wp-i18n": "~0.5.2", 26 "matchdep": "~1.0.1" 26 "matchdep": "~1.0.1", 27 "postcss-reporter": "~1.3.3", 28 "stylelint": "~5.2.1" 27 29 }, 28 30 "engines": { -
trunk/src/includes/admin/css/admin.css
r5832 r5995 11 11 12 12 .bbp-badge { 13 font: normal 150px/1 'dashicons'!important;13 font: normal 150px/1 "dashicons" !important; 14 14 color: #000; 15 15 display: inline-block; … … 25 25 right: 0; 26 26 } 27 body.rtl .about-wrap .bbp-badge { 28 right: auto; 29 left: 0; 30 } 27 28 body.rtl .about-wrap .bbp-badge { 29 right: auto; 30 left: 0; 31 } 31 32 32 33 /* Dashicons */ … … 51 52 52 53 #dashboard_right_now a.bbp-glance-topic-tags:before { 53 content: '\f323';54 content: "\f323"; 54 55 } 55 56 … … 64 65 th .bbp_topics_column:before, 65 66 th .bbp_replies_column:before { 66 font: normal 20px/ .5 'dashicons';67 font: normal 20px/0.5 "dashicons"; 67 68 speak: none; 68 69 display: inline-block; … … 100 101 left: 15px; 101 102 } 102 body.rtl #bbp-dashboard-right-now p.sub { 103 right: 15px; 104 left: 0; 105 } 103 104 body.rtl #bbp-dashboard-right-now p.sub { 105 right: 15px; 106 left: 0; 107 } 106 108 107 109 #bbp-dashboard-right-now .table { … … 116 118 width: 45%; 117 119 } 118 body.rtl #bbp-dashboard-right-now .table_content { 119 float: right; 120 } 120 121 body.rtl #bbp-dashboard-right-now .table_content { 122 float: right; 123 } 121 124 122 125 #bbp-dashboard-right-now .table_discussion { … … 125 128 width: 45%; 126 129 } 127 body.rtl #bbp-dashboard-right-now .table_discussion { 128 float: left; 129 } 130 131 body.rtl #bbp-dashboard-right-now .table_discussion { 132 float: left; 133 } 130 134 131 135 #bbp-dashboard-right-now table td { … … 145 149 width: 1%; 146 150 } 147 body.rtl #bbp-dashboard-right-now td.b { 148 padding-left: 6px; 149 padding-right: 0; 150 } 151 152 body.rtl #bbp-dashboard-right-now td.b { 153 padding-left: 6px; 154 padding-right: 0; 155 } 151 156 152 157 #bbp-dashboard-right-now td.b a { … … 164 169 color: #777; 165 170 } 166 body.rtl #bbp-dashboard-right-now .t { 167 padding-left: 12px; 168 padding-right: 0; 169 } 171 172 body.rtl #bbp-dashboard-right-now .t { 173 padding-left: 12px; 174 padding-right: 0; 175 } 170 176 171 177 #bbp-dashboard-right-now .t a { … … 174 180 175 181 #bbp-dashboard-right-now .spam { 176 color: red;182 color: #f00; 177 183 } 178 184 … … 182 188 183 189 #bbp-dashboard-right-now .approved { 184 color: green;190 color: #0f0; 185 191 } 186 192 … … 200 206 top: -5px; 201 207 } 202 body.rtl #bbp-dashboard-right-now a.button { 203 float: left; 204 clear: left; 205 } 208 209 body.rtl #bbp-dashboard-right-now a.button { 210 float: left; 211 clear: left; 212 } -
trunk/src/includes/admin/styles/evergreen/colors.scss
r5285 r5995 1 1 $base-color: #446950; 2 2 $highlight-color: #56b274; 3 $notification-color: lighten( #2a8c4b, 10%);3 $notification-color: lighten(#2a8c4b, 10%); 4 4 5 5 @import "../admin"; -
trunk/src/includes/admin/styles/mint/colors.scss
r5285 r5995 1 $base-color: darken( desaturate( #78cd95, 10% ), 10%);2 $highlight-color: desaturate( #467656, 10%);3 $notification-color: desaturate( #2a8c4b, 10%);1 $base-color: darken(desaturate(#78cd95, 10%), 10%); 2 $highlight-color: desaturate(#467656, 10%); 3 $notification-color: desaturate(#2a8c4b, 10%); 4 4 5 5 @import "../admin"; -
trunk/src/templates/default/css/bbpress.css
r5994 r5995 50 50 background-color: #fee; 51 51 } 52 52 53 #bbpress-forums .status-trash.odd, 53 54 #bbpress-forums .status-spam.odd { … … 67 68 68 69 #bbpress-forums ul { 69 background: 70 background: none; 70 71 list-style: none; 71 72 margin: 0; … … 140 141 width: 55%; 141 142 } 143 142 144 li.bbp-forum-topic-count, 143 145 li.bbp-topic-voice-count, … … 174 176 border: none; 175 177 font-size: 16px; 176 177 178 line-height: 1em; 179 margin: 8px 0; 178 180 padding: 0; 179 181 text-transform: none; … … 359 361 #bbpress-forums div.bbp-topic-content pre, 360 362 #bbpress-forums div.bbp-reply-content pre { 361 font-family: Inconsolata, Consolas, Monaco, Lucida Console, monospace;363 font-family: Inconsolata, Consolas, Monaco, "Lucida Console", monospace; 362 364 display: inline-block; 363 365 background-color: #f9f9f9; … … 419 421 #bbpress-forums div.bbp-breadcrumb p, 420 422 #bbpress-forums div.bbp-topic-tags p { 421 margin-bottom: 10px 423 margin-bottom: 10px; 422 424 } 423 425 … … 437 439 } 438 440 439 440 441 442 443 444 445 446 447 448 449 450 451 441 #bbpress-forums #bbp-search-form .hidden { 442 height: 0; 443 width: 0; 444 overflow: hidden; 445 position: absolute; 446 background: none; 447 left: -999em; 448 } 449 450 #bbpress-forums #bbp-search-form #bbp_search { 451 display: inline-block; 452 width: auto; 453 } 452 454 453 455 #bbpress-forums div.bbp-search-form { … … 462 464 color: #ddd; 463 465 } 466 464 467 span.bbp-admin-links a { 465 468 color: #bbb; … … 469 472 text-decoration: none; 470 473 } 474 471 475 fieldset span.bbp-admin-links { 472 476 float: left; 473 477 } 478 474 479 tr td span.bbp-admin-links a:hover { 475 480 color: #ff4b33; 476 481 } 482 477 483 td.bbp-topic-admin-links, 478 484 td.bbp-topic-counts { … … 499 505 font-weight: bold; 500 506 font-size: 13px; 501 } 502 .bbp-row-actions #favorite-toggle a:hover { 503 color: #5a5; 504 border-color: #7c7; 505 background-color: #beb; 506 } 507 .bbp-row-actions #favorite-toggle span.is-favorite a { 508 color: #faa; 509 border: 1px solid #faa; 510 background-color: #fee; 511 } 512 .bbp-row-actions #favorite-toggle span.is-favorite a:hover { 513 color: #c88; 514 border-color: #c88; 515 background-color: #fdd; 516 } 507 } 508 509 .bbp-row-actions #favorite-toggle a:hover { 510 color: #5a5; 511 border-color: #7c7; 512 background-color: #beb; 513 } 514 515 .bbp-row-actions #favorite-toggle span.is-favorite a { 516 color: #faa; 517 border: 1px solid #faa; 518 background-color: #fee; 519 } 520 521 .bbp-row-actions #favorite-toggle span.is-favorite a:hover { 522 color: #c88; 523 border-color: #c88; 524 background-color: #fdd; 525 } 517 526 518 527 .bbp-row-actions #subscription-toggle a { … … 524 533 font-weight: bold; 525 534 font-size: 13px; 526 } 527 .bbp-row-actions #subscription-toggle a:hover { 528 color: #5a5; 529 border-color: #7c7; 530 background-color: #beb; 531 } 532 .bbp-row-actions #subscription-toggle span.is-subscribed a { 533 color: #faa; 534 border: 1px solid #faa; 535 background-color: #fee; 536 } 537 .bbp-row-actions #subscription-toggle span.is-subscribed a:hover { 538 color: #c88; 539 border-color: #c88; 540 background-color: #fdd; 541 } 535 } 536 537 .bbp-row-actions #subscription-toggle a:hover { 538 color: #5a5; 539 border-color: #7c7; 540 background-color: #beb; 541 } 542 543 .bbp-row-actions #subscription-toggle span.is-subscribed a { 544 color: #faa; 545 border: 1px solid #faa; 546 background-color: #fee; 547 } 548 549 .bbp-row-actions #subscription-toggle span.is-subscribed a:hover { 550 color: #c88; 551 border-color: #c88; 552 background-color: #fdd; 553 } 542 554 543 555 #bbpress-forums .bbp-forum-info .bbp-forum-content, … … 565 577 list-style: none; 566 578 display: inline; 567 } 568 .bbp-pagination-links a, 569 .bbp-pagination-links span.current { 570 display: block; 571 float: left; 572 padding: 0px 5px; 573 margin-left: 5px; 574 border: 1px solid #efefef; 575 text-decoration: none; 576 } 577 .bbp-pagination-links a:hover, 578 .bbp-pagination-links span.current { 579 background: #eee; 580 opacity: 0.8; 581 border: 1px solid #ddd; 582 } 583 584 .bbp-pagination-links span.dots { 585 display: block; 586 float: left; 587 padding: 1px 4px; 588 margin-left: 5px; 589 } 579 } 580 581 .bbp-pagination-links a, 582 .bbp-pagination-links span.current { 583 display: block; 584 float: left; 585 padding: 0 5px; 586 margin-left: 5px; 587 border: 1px solid #efefef; 588 text-decoration: none; 589 } 590 591 .bbp-pagination-links a:hover, 592 .bbp-pagination-links span.current { 593 background: #eee; 594 opacity: 0.8; 595 border: 1px solid #ddd; 596 } 597 598 .bbp-pagination-links span.dots { 599 display: block; 600 float: left; 601 padding: 1px 4px; 602 margin-left: 5px; 603 } 590 604 591 605 .bbp-pagination { … … 599 613 margin-left: 5px; 600 614 margin-bottom: 2px; 601 } 602 .bbp-topic-pagination a { 603 font-size: 10px; 604 line-height: 10px; 605 padding: 1px 3px; 606 border: 1px solid #ddd; 607 text-decoration: none; 608 } 615 } 616 617 .bbp-topic-pagination a { 618 font-size: 10px; 619 line-height: 10px; 620 padding: 1px 3px; 621 border: 1px solid #ddd; 622 text-decoration: none; 623 } 609 624 610 625 … … 677 692 clear: left; 678 693 } 694 679 695 body.topic-edit .bbp-topic-form div.avatar img, 680 696 body.reply-edit .bbp-reply-form div.avatar img, … … 696 712 font-size: 10px; 697 713 background-color: #f0fff8; 698 border: 1px solid # CEEFE1;714 border: 1px solid #ceefe1; 699 715 display: block; 700 716 padding: 8px; … … 752 768 min-height: 26px; 753 769 } 770 754 771 #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar { 755 772 padding: 4px 4px 8px; … … 772 789 padding: 20px 20px 0 20px; 773 790 } 774 #bbpress-forums #bbp-your-profile fieldset div { 775 margin-bottom: 20px; 776 float: left; 777 width: 100%; 778 clear: left; 779 } 780 #bbpress-forums #bbp-your-profile fieldset select { 781 margin-bottom: 0; 782 } 783 #bbpress-forums #bbp-your-profile fieldset input, 784 #bbpress-forums #bbp-your-profile fieldset textarea { 785 margin-bottom: 0; 786 width: 60%; 787 background: #f9f9f9; 788 border: 1px solid #ddd; 789 -webkit-box-shadow: none; 790 box-shadow: none; 791 padding: 5px 8px; 792 -webkit-border-radius: 0; 793 border-radius: 0; 794 } 795 #bbpress-forums #bbp-your-profile fieldset input:focus, 796 #bbpress-forums #bbp-your-profile fieldset textarea:focus { 797 border: 1px solid #ccc; 798 -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 799 box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1); 800 outline-color: rgba(240,255,240,0.1); 801 } 802 #bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox { 803 width: auto; 804 } 805 #bbpress-forums #bbp-your-profile fieldset legend { 806 display: none; 807 } 808 #bbpress-forums #bbp-your-profile fieldset label[for] { 809 float: left; 810 width: 20%; 811 padding: 5px 20px 5px 0; 812 text-align: right; 813 cursor: pointer; 814 } 815 #bbpress-forums #bbp-your-profile fieldset dl label[for] { 816 text-align: left; 817 width: 60%; 818 } 819 #bbpress-forums #bbp-your-profile fieldset span.description { 820 margin: 5px 0 0 20%; 821 font-size: 12px; 822 font-style: italic; 823 float: left; 824 clear: left; 825 width: 60%; 826 padding: 5px 8px; 827 border: #cee1ef 1px solid; 828 background-color: #f0f8ff; 829 } 830 831 #bbpress-forums #bbp-your-profile fieldset fieldset { 832 margin: 0; 833 border: none; 834 padding: 0; 835 clear: none; 836 float: none; 837 } 838 #bbpress-forums #bbp-your-profile fieldset fieldset.password { 839 width: 60%; 840 display: inline; 841 } 842 #bbpress-forums #bbp-your-profile fieldset fieldset.password input, 843 #bbpress-forums #bbp-your-profile fieldset fieldset.password span { 844 width: 100%; 845 } 846 #bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl { 847 margin: 0; 848 } 849 #bbpress-forums #bbp-your-profile fieldset fieldset.password span.description { 850 margin-left: 0; 851 margin-bottom: 20px; 852 } 853 854 #bbpress-forums #bbp-your-profile fieldset.submit button { 855 float: right; 856 } 791 792 #bbpress-forums #bbp-your-profile fieldset div { 793 margin-bottom: 20px; 794 float: left; 795 width: 100%; 796 clear: left; 797 } 798 799 #bbpress-forums #bbp-your-profile fieldset select { 800 margin-bottom: 0; 801 } 802 803 #bbpress-forums #bbp-your-profile fieldset input, 804 #bbpress-forums #bbp-your-profile fieldset textarea { 805 margin-bottom: 0; 806 width: 60%; 807 background: #f9f9f9; 808 border: 1px solid #ddd; 809 -webkit-box-shadow: none; 810 box-shadow: none; 811 padding: 5px 8px; 812 -webkit-border-radius: 0; 813 border-radius: 0; 814 } 815 816 #bbpress-forums #bbp-your-profile fieldset input:focus, 817 #bbpress-forums #bbp-your-profile fieldset textarea:focus { 818 border: 1px solid #ccc; 819 -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1); 820 box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1); 821 outline-color: rgba(240, 255, 240, 0.1); 822 } 823 824 #bbpress-forums #bbp-your-profile fieldset.bbp-form input.checkbox { 825 width: auto; 826 } 827 828 #bbpress-forums #bbp-your-profile fieldset legend { 829 display: none; 830 } 831 832 #bbpress-forums #bbp-your-profile fieldset label[for] { 833 float: left; 834 width: 20%; 835 padding: 5px 20px 5px 0; 836 text-align: right; 837 cursor: pointer; 838 } 839 840 #bbpress-forums #bbp-your-profile fieldset dl label[for] { 841 text-align: left; 842 width: 60%; 843 } 844 845 #bbpress-forums #bbp-your-profile fieldset span.description { 846 margin: 5px 0 0 20%; 847 font-size: 12px; 848 font-style: italic; 849 float: left; 850 clear: left; 851 width: 60%; 852 padding: 5px 8px; 853 border: #cee1ef 1px solid; 854 background-color: #f0f8ff; 855 } 856 857 #bbpress-forums #bbp-your-profile fieldset fieldset { 858 margin: 0; 859 border: none; 860 padding: 0; 861 clear: none; 862 float: none; 863 } 864 865 #bbpress-forums #bbp-your-profile fieldset fieldset.password { 866 width: 60%; 867 display: inline; 868 } 869 870 #bbpress-forums #bbp-your-profile fieldset fieldset.password input, 871 #bbpress-forums #bbp-your-profile fieldset fieldset.password span { 872 width: 100%; 873 } 874 875 #bbpress-forums #bbp-your-profile fieldset fieldset.capabilities dl { 876 margin: 0; 877 } 878 879 #bbpress-forums #bbp-your-profile fieldset fieldset.password span.description { 880 margin-left: 0; 881 margin-bottom: 20px; 882 } 883 884 #bbpress-forums #bbp-your-profile fieldset.submit button { 885 float: right; 886 } 857 887 858 888 /* =Notices … … 872 902 clear: both; 873 903 } 904 874 905 div.bbp-template-notice a { 875 906 color: #555; 876 907 text-decoration: none; 877 908 } 878 div.bbp-template-notice a:hover { 879 color: #000; 880 } 881 div.bbp-template-notice.info { 882 border: #cee1ef 1px solid; 883 background-color: #f0f8ff; 884 } 885 div.bbp-template-notice.important { 886 border: #e6db55 1px solid; 887 background-color: #fffbcc; 888 } 889 div.bbp-template-notice.error, 890 div.bbp-template-notice.warning { 891 background-color: #ffebe8; 892 border-color: #c00; 893 } 894 div.bbp-template-notice.error a, 895 div.bbp-template-notice.warning a { 896 color: #c00; 897 } 898 div.bbp-template-notice p, 899 div.bbp-template-notice li { 900 margin: 0.5em 0 6px 0 !important; 901 padding: 2px; 902 font-size: 12px; 903 line-height: 140%; 904 } 909 910 div.bbp-template-notice a:hover { 911 color: #000; 912 } 913 914 div.bbp-template-notice.info { 915 border: #cee1ef 1px solid; 916 background-color: #f0f8ff; 917 } 918 919 div.bbp-template-notice.important { 920 border: #e6db55 1px solid; 921 background-color: #fffbcc; 922 } 923 924 div.bbp-template-notice.error, 925 div.bbp-template-notice.warning { 926 background-color: #ffebe8; 927 border-color: #c00; 928 } 929 930 div.bbp-template-notice.error a, 931 div.bbp-template-notice.warning a { 932 color: #c00; 933 } 934 935 div.bbp-template-notice p, 936 div.bbp-template-notice li { 937 margin: 0.5em 0 6px 0 !important; 938 padding: 2px; 939 font-size: 12px; 940 line-height: 140%; 941 } 905 942 906 943 /* =Stickies … … 1149 1186 -------------------------------------------------------------- */ 1150 1187 @media only screen and (max-width: 480px) { 1188 1151 1189 #bbpress-forums div.bbp-topic-tags { 1152 1190 clear: left; 1153 1191 float: left; 1154 1192 } 1193 1155 1194 div.bbp-search-form input, 1156 1195 div.bbp-search-form button { … … 1158 1197 padding: 2px; 1159 1198 } 1199 1160 1200 li.bbp-forum-info, 1161 1201 li.bbp-topic-title { 1162 1202 width: 45%; 1163 1203 } 1204 1164 1205 li.bbp-forum-topic-count, 1165 1206 li.bbp-forum-reply-count, … … 1168 1209 width: 15%; 1169 1210 } 1211 1170 1212 span.bbp-topic-post-date, 1171 1213 span.bbp-reply-post-date { 1172 1214 float: left; 1173 1215 } 1216 1174 1217 span.bbp-admin-links { 1175 1218 clear: left; 1176 1219 float: left; 1177 1220 } 1221 1178 1222 #bbpress-forums .bbp-forums-list li { 1179 1223 display: block; 1180 1224 font-size: 11px; 1181 1225 } 1226 1182 1227 #bbpress-forums .bbp-body div.bbp-topic-author, 1183 1228 #bbpress-forums .bbp-body div.bbp-reply-author { … … 1189 1234 width: 100%; 1190 1235 } 1236 1191 1237 #bbpress-forums div.bbp-topic-author a.bbp-author-name, 1192 1238 #bbpress-forums div.bbp-reply-author a.bbp-author-name { … … 1196 1242 word-wrap: break-word; 1197 1243 } 1244 1198 1245 #bbpress-forums div.bbp-topic-author img.avatar, 1199 1246 #bbpress-forums div.bbp-reply-author img.avatar { … … 1204 1251 height: auto; 1205 1252 } 1253 1206 1254 #bbpress-forums div.bbp-topic-author .bbp-author-role, 1207 1255 #bbpress-forums div.bbp-reply-author .bbp-author-role { … … 1209 1257 font-style: normal; 1210 1258 } 1259 1211 1260 #bbpress-forums .bbp-body div.bbp-topic-content, 1212 1261 #bbpress-forums .bbp-body div.bbp-reply-content { … … 1215 1264 padding: 0; 1216 1265 } 1266 1217 1267 #bbpress-forums div.bbp-topic-content p, 1218 1268 #bbpress-forums div.bbp-reply-content p { 1219 1269 margin-bottom: 1em; 1220 1270 } 1271 1221 1272 div.bbp-submit-wrapper { 1222 1273 float: left; 1223 1274 } 1275 1224 1276 #bbpress-forums fieldset.bbp-form { 1225 1277 padding: 0 10px 10px; 1226 1278 } 1279 1227 1280 #bbpress-forums #bbp-user-body { 1228 1281 clear: both; … … 1230 1283 word-wrap: break-word; 1231 1284 } 1285 1232 1286 #bbpress-forums div.bbp-forum-title h3, 1233 1287 #bbpress-forums div.bbp-topic-title h3, … … 1240 1294 -------------------------------------------------------------- */ 1241 1295 @media only screen and (max-width: 320px) { 1296 1242 1297 #bbpress-forums div.bbp-search-form { 1243 1298 margin-bottom: 10px; 1244 1299 } 1300 1245 1301 #bbpress-forums li.bbp-header li.bbp-forum-info, 1246 1302 #bbpress-forums li.bbp-body li.bbp-forum-info, … … 1249 1305 width: 100%; 1250 1306 } 1307 1251 1308 #bbpress-forums li.bbp-header li.bbp-forum-info, 1252 1309 #bbpress-forums li.bbp-header li.bbp-topic-title { … … 1254 1311 text-transform: uppercase; 1255 1312 } 1313 1256 1314 #bbpress-forums li.bbp-header li.bbp-forum-topic-count, 1257 1315 #bbpress-forums li.bbp-header li.bbp-forum-reply-count, … … 1264 1322 width: 20%; 1265 1323 } 1324 1266 1325 #bbpress-forums li.bbp-header li.bbp-forum-freshness, 1267 1326 #bbpress-forums li.bbp-body li.bbp-forum-freshness, … … 1270 1329 width: 58%; 1271 1330 } 1331 1272 1332 #bbpress-forums li.bbp-body li.bbp-forum-topic-count, 1273 1333 #bbpress-forums li.bbp-body li.bbp-forum-reply-count, … … 1278 1338 margin-top: 7px; 1279 1339 } 1340 1280 1341 #bbpress-forums li.bbp-header, 1281 1342 #bbpress-forums li.bbp-footer { 1282 1343 font-size: 10px; 1283 1344 } 1345 1284 1346 #bbpress-forums li.bbp-header div.bbp-search-author, 1285 1347 #bbpress-forums li.bbp-header div.bbp-topic-author, … … 1288 1350 width: 25%; 1289 1351 } 1352 1290 1353 #bbpress-forums li.bbp-header div.bbp-search-content, 1291 1354 #bbpress-forums li.bbp-header div.bbp-topic-content, … … 1293 1356 margin-left: 25%; 1294 1357 } 1358 1295 1359 #bbpress-forums div.bbp-template-notice img.avatar, 1296 1360 #bbpress-forums p.bbp-topic-meta img.avatar { … … 1298 1362 height: auto; 1299 1363 } 1364 1300 1365 #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar { 1301 1366 padding: 1px; 1302 1367 } 1368 1303 1369 #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td { 1304 1370 width: 20px; 1305 1371 height: 20px; 1306 1372 } 1373 1307 1374 #bbpress-forums div.wp-editor-container { 1308 1375 width: 100%; 1309 1376 overflow: auto; 1310 1377 } 1378 1311 1379 #bbpress-forums input#bbp_topic_title, 1312 1380 #bbpress-forums input#bbp_topic_tags { 1313 1381 width: 95%; 1314 1382 } 1383 1315 1384 #bbpress-forums div.bbp-forum-title h3, 1316 1385 #bbpress-forums div.bbp-topic-title h3, … … 1323 1392 -------------------------------------------------------------- */ 1324 1393 @media only screen and (max-width: 240px) { 1394 1325 1395 #bbpress-forums li.bbp-header li.bbp-forum-topic-count, 1326 1396 #bbpress-forums li.bbp-header li.bbp-forum-reply-count, … … 1336 1406 width: 45%; 1337 1407 } 1408 1338 1409 #bbpress-forums li.bbp-header li.bbp-forum-freshness, 1339 1410 #bbpress-forums li.bbp-body li.bbp-forum-freshness, … … 1343 1414 width: 100%; 1344 1415 } 1416 1345 1417 #bbpress-forums li.bbp-header li.bbp-forum-freshness, 1346 1418 #bbpress-forums li.bbp-header li.bbp-topic-freshness { 1347 1419 text-align: center; 1348 1420 } 1421 1349 1422 #bbpress-forums li.bbp-body li.bbp-topic-freshness, 1350 1423 #bbpress-forums li.bbp-header div.bbp-search-author, … … 1357 1430 text-align: left; 1358 1431 } 1432 1359 1433 #bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta { 1360 1434 display: inline-block; 1361 1435 } 1436 1362 1437 #bbpress-forums li.bbp-header { 1363 1438 overflow: hidden; 1364 1439 } 1440 1365 1441 #bbpress-forums li.bbp-footer div.bbp-search-content, 1366 1442 #bbpress-forums li.bbp-footer div.bbp-topic-content, … … 1369 1445 margin-left: 0; 1370 1446 } 1447 1371 1448 #bbpress-forums li.bbp-body div.bbp-topic-author, 1372 1449 #bbpress-forums li.bbp-body div.bbp-reply-author { … … 1374 1451 padding-left: 60px; 1375 1452 } 1453 1376 1454 #bbpress-forums div.bbp-topic-author img.avatar, 1377 1455 #bbpress-forums div.bbp-reply-author img.avatar { … … 1379 1457 height: auto; 1380 1458 } 1459 1381 1460 #bbpress-forums div.bbp-forum-title h3, 1382 1461 #bbpress-forums div.bbp-topic-title h3,
Note: See TracChangeset
for help on using the changeset viewer.