Changeset 44201
- Timestamp:
- 12/14/2018 10:03:36 PM (6 years ago)
- Location:
- branches/5.0/src/wp-content/themes/twentynineteen
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-content/themes/twentynineteen/readme.txt
r43964 r44201 1 # Twenty Nineteen 1 === Twenty Nineteen === 2 Contributors: the WordPress team 3 Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready 4 Requires at least: 4.9.6 5 Tested up to: 5.0 6 Stable tag: 1.0 7 License: GPLv2 or later 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 2 9 3 [![Build Status](https://travis-ci.org/WordPress/twentynineteen.svg?branch=master)](https://travis-ci.org/WordPress/twentynineteen) 10 Our 2019 default theme is designed to show off the power of the block editor. 4 11 5 **Contributors:** the WordPress team 6 **Requires at least:** WordPress 4.9.6 7 **Tested up to:** WordPress 4.9.8 8 **Version:** 1.0 9 **License:** GPLv2 or later 10 **License URI:** http://www.gnu.org/licenses/gpl-2.0.html 11 **Tags:** one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready 12 == Description == 13 Our 2019 default theme is designed to show off the power of the block editor. It features custom styles for all the default blocks, and is built so that what you see in the editor looks like what you'll see on your website. Twenty Nineteen is designed to be adaptable to a wide range of websites, whether you’re running a photo blog, launching a new business, or supporting a non-profit. Featuring ample whitespace and modern sans-serif headlines paired with classic serif body text, it's built to be beautiful on all screen sizes. 12 14 13 ## Description 15 == Changelog == 14 16 15 Twenty Nineteen is a Gutenberg-ready theme for WordPress. 17 = 1.0 = 18 * Initial Release 16 19 17 ## Installation 18 19 1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button. 20 2. Type in Twenty Nineteen in the search form and press the 'Enter' key on your keyboard. 21 3. Click on the 'Activate' button to use your new theme right away. 22 4. Go to https://codex.wordpress.org/Twenty_Nineteen for a guide on how to customize this theme. 23 5. Navigate to Appearance > Customize in your admin panel and customize to taste. 24 25 ## Copyright 26 27 Twenty Nineteen WordPress Theme, Copyright 2018 WordPress.org 28 Twenty Nineteen is distributed under the terms of the GNU GPL. 29 30 This program is free software: you can redistribute it and/or modify 31 it under the terms of the GNU General Public License as published by 32 the Free Software Foundation, either version 2 of the License, or 33 (at your option) any later version. 34 35 This program is distributed in the hope that it will be useful, 36 but WITHOUT ANY WARRANTY; without even the implied warranty of 37 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 38 GNU General Public License for more details. 39 40 Twenty Nineteen bundles the following third-party resources: 41 42 _s, Copyright 2015-2018 Automattic, Inc. 43 **License:** GPLv2 or later 44 Source: https://github.com/Automattic/_s/ 45 46 normalize.css, Copyright 2012-2016 Nicolas Gallagher and Jonathan Neal 47 **License:** MIT 48 Source: https://necolas.github.io/normalize.css/ 49 50 Bundled header image 1, Copyright XXXXX XXXXX 51 **License:** CC0 1.0 Universal (CC0 1.0) 52 Source: https://pexels.com/xxxxxxxxxx 53 54 Bundled header image 2, Copyright XXXXX XXXXX 55 **License:** CC0 1.0 Universal (CC0 1.0) 56 Source: https://pexels.com/xxxxxxxxxx 57 58 ## Changelog 59 60 ### 1.0 61 62 * Released: December 6, 2018 63 64 Initial release 20 == Resources == 21 * normalize.css, © 2012-2018 Nicolas Gallagher and Jonathan Neal, MIT 22 * Underscores, © 2012-2018 Automattic, Inc., GNU GPL v2 or later -
branches/5.0/src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
r44199 r44201 364 364 365 365 blockquote { 366 margin -left:0;366 margin: $size__spacing-unit 0; 367 367 padding: 0; 368 368 text-align: left; 369 369 max-width: 100%; 370 371 p:first-child { 372 margin-top: 0; 373 } 370 374 } 371 375 } … … 401 405 402 406 blockquote { 403 max-width: calc(100% - (2 * #{$size__spacing-unit}));407 max-width: 100%; 404 408 color: $color__background-body; 405 409 padding-left: 0; 406 410 margin-left: $size__spacing-unit; 411 margin-right: $size__spacing-unit; 407 412 408 413 &.has-text-color p, … … 419 424 margin-left: 0; 420 425 margin-right: 0; 426 } 427 } 428 429 &.alignright, 430 &.alignleft { 431 @include media(tablet) { 432 padding: $size__spacing-unit calc(2 * #{$size__spacing-unit}); 421 433 } 422 434 } … … 542 554 543 555 @include media(tablet) { 544 padding: $size__spacing-unit ;556 padding: $size__spacing-unit calc(2 * #{$size__spacing-unit}); 545 557 } 546 558 } -
branches/5.0/src/wp-content/themes/twentynineteen/style-editor.css
r44193 r44201 761 761 /* Make sure our non-latin font overrides don't overwrite the iconfont used in the classic editor toolbar */ 762 762 .wp-block[data-type="core/freeform"] .mce-btn i { 763 764 } 763 font-family: dashicons !important; 764 } -
branches/5.0/src/wp-content/themes/twentynineteen/style-rtl.css
r44199 r44201 3806 3806 3807 3807 .entry .entry-content .wp-block-pullquote.alignleft blockquote, .entry .entry-content .wp-block-pullquote.alignright blockquote { 3808 margin -right:0;3808 margin: 1rem 0; 3809 3809 padding: 0; 3810 3810 text-align: right; 3811 3811 max-width: 100%; 3812 } 3813 3814 .entry .entry-content .wp-block-pullquote.alignleft blockquote p:first-child, .entry .entry-content .wp-block-pullquote.alignright blockquote p:first-child { 3815 margin-top: 0; 3812 3816 } 3813 3817 … … 3847 3851 3848 3852 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote { 3849 max-width: calc(100% - (2 * 1rem));3853 max-width: 100%; 3850 3854 color: #fff; 3851 3855 padding-right: 0; 3852 3856 margin-right: 1rem; 3857 margin-left: 1rem; 3853 3858 } 3854 3859 … … 3862 3867 margin-right: 0; 3863 3868 margin-left: 0; 3869 } 3870 } 3871 3872 @media only screen and (min-width: 768px) { 3873 .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignright, .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignleft { 3874 padding: 1rem calc(2 * 1rem); 3864 3875 } 3865 3876 } … … 3993 4004 .entry .entry-content .wp-block-cover.alignleft, 3994 4005 .entry .entry-content .wp-block-cover.alignright { 3995 padding: 1rem ;4006 padding: 1rem calc(2 * 1rem); 3996 4007 } 3997 4008 } -
branches/5.0/src/wp-content/themes/twentynineteen/style.css
r44199 r44201 3818 3818 3819 3819 .entry .entry-content .wp-block-pullquote.alignleft blockquote, .entry .entry-content .wp-block-pullquote.alignright blockquote { 3820 margin -left:0;3820 margin: 1rem 0; 3821 3821 padding: 0; 3822 3822 text-align: left; 3823 3823 max-width: 100%; 3824 } 3825 3826 .entry .entry-content .wp-block-pullquote.alignleft blockquote p:first-child, .entry .entry-content .wp-block-pullquote.alignright blockquote p:first-child { 3827 margin-top: 0; 3824 3828 } 3825 3829 … … 3859 3863 3860 3864 .entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote { 3861 max-width: calc(100% - (2 * 1rem));3865 max-width: 100%; 3862 3866 color: #fff; 3863 3867 padding-left: 0; 3864 3868 margin-left: 1rem; 3869 margin-right: 1rem; 3865 3870 } 3866 3871 … … 3874 3879 margin-left: 0; 3875 3880 margin-right: 0; 3881 } 3882 } 3883 3884 @media only screen and (min-width: 768px) { 3885 .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignright, .entry .entry-content .wp-block-pullquote.is-style-solid-color.alignleft { 3886 padding: 1rem calc(2 * 1rem); 3876 3887 } 3877 3888 } … … 4005 4016 .entry .entry-content .wp-block-cover.alignleft, 4006 4017 .entry .entry-content .wp-block-cover.alignright { 4007 padding: 1rem ;4018 padding: 1rem calc(2 * 1rem); 4008 4019 } 4009 4020 }
Note: See TracChangeset
for help on using the changeset viewer.