2013-07-29 00:55:10 +02:00
|
|
|
/*
|
|
|
|
Theme Name: Twenty Fourteen
|
2013-11-02 05:36:12 +01:00
|
|
|
Description: Adds support for languages written in a Right To Left (RTL) direction.
|
|
|
|
It's easy, just a matter of overwriting all the horizontal positioning attributes
|
|
|
|
of your CSS stylesheet in a separate stylesheet file named rtl.css.
|
|
|
|
|
2015-04-27 20:12:25 +02:00
|
|
|
See https://codex.wordpress.org/Right_to_Left_Language_Support
|
2013-07-29 00:55:10 +02:00
|
|
|
*/
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* Table of Contents:
|
|
|
|
*
|
|
|
|
* 1.0 - Reset
|
|
|
|
* 2.0 - Repeatable Patterns
|
|
|
|
* 4.0 - Header
|
2013-11-18 20:21:09 +01:00
|
|
|
* 5.0 - Navigation
|
2013-11-02 05:36:12 +01:00
|
|
|
* 6.0 - Content
|
2013-12-06 03:22:11 +01:00
|
|
|
* 6.3 - Entry Meta
|
2013-11-02 05:36:12 +01:00
|
|
|
* 6.4 - Entry Content
|
|
|
|
* 6.5 - Galleries
|
2013-12-06 03:22:11 +01:00
|
|
|
* 6.7 - Post/Image/Paging Navigation
|
2013-11-02 05:36:12 +01:00
|
|
|
* 6.10 - Contributor Page
|
|
|
|
* 6.14 - Comments
|
|
|
|
* 7.0 - Sidebar
|
|
|
|
* 7.1 - Widgets
|
|
|
|
* 7.2 - Content Sidebar Widgets
|
|
|
|
* 9.0 - Featured Content
|
|
|
|
* 10.0 - Media Queries
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 1.0 Reset
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2013-07-29 00:55:10 +02:00
|
|
|
body {
|
|
|
|
direction: rtl;
|
|
|
|
unicode-bidi: embed;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
a {
|
|
|
|
display: inline-block;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
margin: 0 20px 24px 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 05:13:44 +02:00
|
|
|
li > ul,
|
|
|
|
li > ol {
|
2013-11-02 05:36:12 +01:00
|
|
|
margin: 0 20px 0 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
caption,
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
text-align: right;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 2.0 Repeatable Patterns
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.wp-caption-text {
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-right: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 17:31:09 +02:00
|
|
|
.screen-reader-text:focus {
|
|
|
|
right: 5px;
|
2013-11-02 05:36:12 +01:00
|
|
|
left: auto;
|
2013-10-10 17:31:09 +02:00
|
|
|
}
|
|
|
|
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 4.0 Header
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-10-25 00:53:14 +02:00
|
|
|
|
2013-07-29 00:55:10 +02:00
|
|
|
.site-title {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-toggle {
|
2013-11-02 05:36:12 +01:00
|
|
|
float: left;
|
|
|
|
margin-left: 38px;
|
|
|
|
margin-right: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 19:31:08 +02:00
|
|
|
.search-box .search-field {
|
2013-07-29 00:55:10 +02:00
|
|
|
float: left;
|
2013-11-02 05:36:12 +01:00
|
|
|
padding: 1px 6px 2px 2px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.search-toggle .screen-reader-text {
|
2013-12-09 21:38:12 +01:00
|
|
|
right: 5px; /* Avoid a horizontal scrollbar when the site has a long menu */
|
|
|
|
left: auto;
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
2013-11-18 20:21:09 +01:00
|
|
|
* 5.0 Navigation
|
2013-11-02 05:36:12 +01:00
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.site-navigation ul ul {
|
|
|
|
margin-right: 20px;
|
2013-10-25 00:58:48 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.menu-toggle {
|
|
|
|
right: auto;
|
|
|
|
left: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 17:31:09 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 6.0 Content
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-10-10 17:31:09 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 6.3 Entry Meta
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2013-12-03 00:15:10 +01:00
|
|
|
.entry-meta .tag-links a {
|
2013-11-02 05:36:12 +01:00
|
|
|
margin: 0 10px 4px 4px;
|
2013-10-10 17:31:09 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 00:15:10 +01:00
|
|
|
.entry-meta .tag-links a:before {
|
2013-11-02 05:36:12 +01:00
|
|
|
border-right: 0;
|
|
|
|
border-left: 8px solid #767676;
|
|
|
|
right: -7px;
|
2013-07-29 00:55:10 +02:00
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
|
2013-12-03 00:15:10 +01:00
|
|
|
.entry-meta .tag-links a:hover:before,
|
|
|
|
.entry-meta .tag-links a:focus:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
border-left-color: #41a62a;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 00:15:10 +01:00
|
|
|
.entry-meta .tag-links a:after {
|
2013-11-02 05:36:12 +01:00
|
|
|
right: -2px;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 6.4 Entry Content
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.page-links a,
|
|
|
|
.page-links > span {
|
|
|
|
margin: 0 0 2px 1px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.page-links > .page-links-title {
|
|
|
|
padding-right: 0;
|
2013-11-18 20:21:09 +01:00
|
|
|
padding-left: 7px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
2013-12-06 03:22:11 +01:00
|
|
|
* 6.5 Galleries
|
2013-11-02 05:36:12 +01:00
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.gallery-item {
|
|
|
|
float: right;
|
|
|
|
margin: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-columns-1 .gallery-item:nth-of-type(1n),
|
|
|
|
.gallery-columns-2 .gallery-item:nth-of-type(2n),
|
|
|
|
.gallery-columns-3 .gallery-item:nth-of-type(3n),
|
|
|
|
.gallery-columns-4 .gallery-item:nth-of-type(4n),
|
|
|
|
.gallery-columns-5 .gallery-item:nth-of-type(5n),
|
|
|
|
.gallery-columns-6 .gallery-item:nth-of-type(6n),
|
|
|
|
.gallery-columns-7 .gallery-item:nth-of-type(7n),
|
|
|
|
.gallery-columns-8 .gallery-item:nth-of-type(8n),
|
|
|
|
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.gallery-caption {
|
|
|
|
padding: 6px 8px;
|
|
|
|
right: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
left: auto;
|
2013-11-02 05:36:12 +01:00
|
|
|
text-align: right;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.gallery-caption:before {
|
|
|
|
right: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 6.7 Post/Image/Paging Navigation
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
|
|
|
.paging-navigation .page-numbers {
|
|
|
|
margin-right: auto;
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-left: 1px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 6.10 Contributor Page
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.contributor-avatar {
|
|
|
|
float: right;
|
|
|
|
margin: 0 0 20px 30px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 6.14 Comments
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
|
|
|
.comment-author .avatar {
|
2013-10-09 23:42:09 +02:00
|
|
|
right: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
|
2013-11-04 19:08:10 +01:00
|
|
|
.bypostauthor > article .fn:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin: 0 -2px 0 2px;
|
2013-11-04 19:08:10 +01:00
|
|
|
}
|
|
|
|
|
2013-11-12 05:18:11 +01:00
|
|
|
.comment-author,
|
2013-11-13 03:51:09 +01:00
|
|
|
.comment-awaiting-moderation,
|
2013-11-02 05:36:12 +01:00
|
|
|
.comment-content,
|
|
|
|
.comment-list .reply,
|
|
|
|
.comment-metadata {
|
2013-11-12 05:18:11 +01:00
|
|
|
padding-right: 30px;
|
2013-07-29 00:55:10 +02:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.comment-edit-link {
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.comment-reply-link:before,
|
|
|
|
.comment-reply-login:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 2px;
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
|
|
|
|
2013-12-04 16:13:10 +01:00
|
|
|
.comment-reply-link:before,
|
|
|
|
.comment-reply-login:before,
|
|
|
|
.comment-edit-link:before {
|
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
-moz-transform: scaleX(-1);
|
|
|
|
-ms-transform: scaleX(-1);
|
|
|
|
-o-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
|
|
|
|
2013-07-29 00:55:10 +02:00
|
|
|
.comment-content ul,
|
|
|
|
.comment-content ol {
|
|
|
|
margin: 0 22px 24px 0;
|
|
|
|
}
|
|
|
|
|
2013-08-15 05:13:44 +02:00
|
|
|
.comment-list .children {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: 15px;
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.comment-reply-title small a {
|
|
|
|
float: left;
|
2013-10-09 23:42:09 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.comment-navigation .nav-previous a {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 10px;
|
2013-10-09 23:42:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-03 00:00:49 +02:00
|
|
|
.comment-form #wp-comment-cookies-consent {
|
|
|
|
margin: 0 0 0 10px;
|
|
|
|
}
|
2013-10-09 23:42:09 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 7.0 Sidebars
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 7.1 Widgets
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.widget li > ol,
|
|
|
|
.widget li > ul {
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.widget input,
|
|
|
|
.widget textarea {
|
|
|
|
padding: 1px 4px 2px 2px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-20 19:31:08 +02:00
|
|
|
.widget_calendar caption {
|
2013-07-29 00:55:10 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2020-03-02 17:55:08 +01:00
|
|
|
.widget_calendar .wp-calendar-nav-prev,
|
2013-11-02 05:36:12 +01:00
|
|
|
.widget_calendar #prev {
|
2013-07-29 00:55:10 +02:00
|
|
|
padding-right: 5px;
|
|
|
|
padding-left: 0;
|
2020-03-02 17:55:08 +01:00
|
|
|
text-align: right;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2020-03-02 17:55:08 +01:00
|
|
|
.widget_calendar .wp-calendar-nav-next,
|
2013-08-20 19:31:08 +02:00
|
|
|
.widget_calendar #next {
|
2013-11-02 05:36:12 +01:00
|
|
|
padding-right: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
padding-left: 5px;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.widget_twentyfourteen_ephemera .entry-content ul,
|
|
|
|
.widget_twentyfourteen_ephemera .entry-content ol {
|
|
|
|
margin: 0 20px 18px 0;
|
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.widget_twentyfourteen_ephemera .entry-content li > ul,
|
|
|
|
.widget_twentyfourteen_ephemera .entry-content li > ol {
|
2013-10-09 23:42:09 +02:00
|
|
|
margin: 0 20px 0 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2017-05-25 17:19:42 +02:00
|
|
|
.widget_text ul,
|
|
|
|
.widget_text ol {
|
|
|
|
margin: 0 10px 12px 0;
|
|
|
|
}
|
2013-11-02 05:36:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 7.2 Content Sidebar Widgets
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.content-sidebar .widget li > ol,
|
|
|
|
.content-sidebar .widget li > ul {
|
|
|
|
margin-right: 18px;
|
|
|
|
margin-left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.content-sidebar .widget_twentyfourteen_ephemera .widget-title:before {
|
|
|
|
margin: -1px 0 0 18px;
|
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
Bundled Themes: Add link to privacy policy page in footer.
If a privacy policy has been set, then a link to it will automatically be shown in the footer.
The element containing the "Proudly powered by WordPress" link was chosen for the new policy link, in order to minimize visual conflicts with custom CSS that was written before the new link existed. Unfortunately, some minor conflicts are expected and unavoidable. Adding this link is required as part of GDPR compliance, and the benefits outweigh the downsides.
To further mitigate the conflicts, a new `imprint` class was added to the "Proudly powered..." link, in order to facilitate targeting each link invididually with custom styles.
Props xkon, laurelfulford, birgire, azaozz, iandunn.
See #43715.
Built from https://develop.svn.wordpress.org/trunk@43051
git-svn-id: http://core.svn.wordpress.org/trunk@42880 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-05-01 08:28:21 +02:00
|
|
|
/**
|
|
|
|
* 8.0 Footer
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.site-info span[role=separator] {
|
|
|
|
padding: 0 0.5em;
|
|
|
|
}
|
2013-10-09 23:42:09 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 9.0 Featured Content
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
.featured-content .post-thumbnail img {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-viewport {
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider .featured-content .entry-header {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-control-paging {
|
2013-10-09 23:42:09 +02:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-control-paging li {
|
|
|
|
float: right;
|
|
|
|
margin: 2px 0 2px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-control-paging li:last-child {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-control-paging a:before {
|
|
|
|
right: 10px;
|
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-direction-nav li {
|
|
|
|
border-width: 2px 0 0 1px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-direction-nav li:last-child {
|
|
|
|
border-width: 2px 1px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-direction-nav a:before {
|
|
|
|
content: "\f429";
|
|
|
|
}
|
|
|
|
|
|
|
|
.slider-direction-nav .slider-next:before {
|
|
|
|
content: "\f430";
|
2013-10-09 23:42:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
/**
|
|
|
|
* 10.0 Media Queries
|
|
|
|
* -----------------------------------------------------------------------------
|
|
|
|
*/
|
2013-07-29 00:55:10 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: 400px) {
|
2013-11-02 05:36:12 +01:00
|
|
|
.list-view .site-content .post-thumbnail img {
|
2013-07-29 00:55:10 +02:00
|
|
|
float: right;
|
|
|
|
margin: 0 0 3px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
@media screen and (min-width: 401px) {
|
|
|
|
.site-content .entry-meta > span {
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-right: auto;
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-left: 10px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.site-content .format-quote .post-format a:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 2px;
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-content .format-gallery .post-format a:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 4px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.site-content .format-aside .post-format a:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 2px;
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-content .featured-post:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 3px;
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-content .entry-date a:before,
|
|
|
|
.attachment .site-content span.entry-date:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 1px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.site-content .comments-link a:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 2px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.site-content .full-size-link a:before {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 1px;
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
2013-12-04 16:13:10 +01:00
|
|
|
|
|
|
|
.entry-content .edit-link a:before,
|
|
|
|
.entry-meta .edit-link a:before {
|
|
|
|
-webkit-transform: scaleX(-1);
|
|
|
|
-moz-transform: scaleX(-1);
|
|
|
|
-ms-transform: scaleX(-1);
|
|
|
|
-o-transform: scaleX(-1);
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
|
|
|
|
2013-11-06 17:12:09 +01:00
|
|
|
@media screen and (min-width: 594px) {
|
2013-11-02 05:36:12 +01:00
|
|
|
.site-content .entry-header {
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 30px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
@media screen and (min-width: 673px) {
|
|
|
|
.search-toggle {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 18px;
|
|
|
|
}
|
|
|
|
|
2013-08-20 19:31:08 +02:00
|
|
|
.content-area {
|
2013-07-29 00:55:10 +02:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-content {
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: 33.33333333%;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.archive-header,
|
|
|
|
.comments-area,
|
|
|
|
.image-navigation,
|
|
|
|
.page-header,
|
|
|
|
.page-content,
|
|
|
|
.post-navigation,
|
|
|
|
.site-content .entry-content,
|
|
|
|
.site-content .entry-summary,
|
|
|
|
.site-content footer.entry-meta {
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-width .site-content {
|
|
|
|
margin-left: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.content-sidebar {
|
2013-07-29 00:55:10 +02:00
|
|
|
float: left;
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-right: -33.33333333%;
|
|
|
|
margin-left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.grid .featured-content .hentry {
|
2013-07-29 00:55:10 +02:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-control-paging {
|
|
|
|
padding-right: 20px;
|
2013-07-29 00:55:10 +02:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-direction-nav {
|
|
|
|
float: left;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-direction-nav li {
|
|
|
|
padding: 0 0 0 1px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-direction-nav li:last-child {
|
|
|
|
padding: 0 1px 0 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-09 20:11:10 +01:00
|
|
|
@media screen and (min-width: 783px) {
|
2013-07-29 00:55:10 +02:00
|
|
|
.header-main {
|
2013-11-02 05:36:12 +01:00
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 0;
|
2013-10-25 00:58:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-toggle {
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-right: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.primary-navigation {
|
|
|
|
float: left;
|
2013-12-03 21:51:10 +01:00
|
|
|
margin: 0 -12px 0 1px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.primary-navigation ul ul {
|
|
|
|
float: right;
|
|
|
|
margin: 0;
|
|
|
|
right: -999em;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.primary-navigation ul ul ul {
|
|
|
|
right: -999em;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.primary-navigation ul li:hover > ul,
|
|
|
|
.primary-navigation ul li.focus > ul {
|
|
|
|
right: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.primary-navigation ul ul li:hover > ul,
|
|
|
|
.primary-navigation ul ul li.focus > ul {
|
|
|
|
right: 100%;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
2013-12-03 21:51:10 +01:00
|
|
|
|
|
|
|
.primary-navigation .menu-item-has-children > a,
|
|
|
|
.primary-navigation .page_item_has_children > a {
|
|
|
|
padding-right: 12px;
|
|
|
|
padding-left: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary-navigation .menu-item-has-children > a:after,
|
|
|
|
.primary-navigation .page_item_has_children > a:after {
|
|
|
|
right: auto;
|
|
|
|
left: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.primary-navigation li .menu-item-has-children > a,
|
|
|
|
.primary-navigation li .page_item_has_children > a {
|
|
|
|
padding-right: 12px;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
|
2013-12-08 08:16:10 +01:00
|
|
|
.primary-navigation .menu-item-has-children li.menu-item-has-children > a:after,
|
|
|
|
.primary-navigation .menu-item-has-children li.page_item_has_children > a:after,
|
|
|
|
.primary-navigation .page_item_has_children li.menu-item-has-children > a:after,
|
|
|
|
.primary-navigation .page_item_has_children li.page_item_has_children > a:after {
|
|
|
|
content: "\f503";
|
2013-12-03 21:51:10 +01:00
|
|
|
right: auto;
|
|
|
|
left: 8px;
|
|
|
|
}
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
@media screen and (min-width: 810px) {
|
|
|
|
.attachment .entry-attachment .attachment {
|
|
|
|
margin-right: -168px;
|
|
|
|
margin-left: -168px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.attachment .entry-attachment .attachment a {
|
|
|
|
display: block;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.contributor-avatar {
|
|
|
|
margin-right: -168px;
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.contributor-summary {
|
|
|
|
float: right;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.full-width .site-content blockquote.alignright,
|
|
|
|
.full-width .site-content img.size-full.alignright,
|
|
|
|
.full-width .site-content img.size-large.alignright,
|
|
|
|
.full-width .site-content img.size-medium.alignright,
|
|
|
|
.full-width .site-content .wp-caption.alignright {
|
|
|
|
margin-right: -168px;
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.full-width .site-content blockquote.alignleft,
|
|
|
|
.full-width .site-content img.size-full.alignleft,
|
|
|
|
.full-width .site-content img.size-large.alignleft,
|
|
|
|
.full-width .site-content img.size-medium.alignleft,
|
|
|
|
.full-width .site-content .wp-caption.alignleft {
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-right: auto;
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-left: -168px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-06 17:12:09 +01:00
|
|
|
@media screen and (min-width: 846px) {
|
2013-11-02 05:36:12 +01:00
|
|
|
.comment-author,
|
2013-11-13 03:51:09 +01:00
|
|
|
.comment-awaiting-moderation,
|
2013-11-02 05:36:12 +01:00
|
|
|
.comment-content,
|
|
|
|
.comment-list .reply,
|
|
|
|
.comment-metadata {
|
2013-11-12 05:18:11 +01:00
|
|
|
padding-right: 50px;
|
2013-11-02 05:36:12 +01:00
|
|
|
padding-left: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.comment-list .children {
|
2013-11-12 05:18:11 +01:00
|
|
|
margin-right: 20px;
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1008px) {
|
|
|
|
.search-box-wrapper {
|
2013-11-02 05:36:12 +01:00
|
|
|
padding-right: 182px;
|
2013-07-29 00:55:10 +02:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.main-content {
|
2013-07-29 00:55:10 +02:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-content {
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-right: 182px;
|
|
|
|
margin-left: 29.04761904%;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.full-width .site-content {
|
|
|
|
margin-right: 182px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.content-sidebar {
|
|
|
|
margin-right: -29.04761904%;
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.site:before {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
#secondary {
|
|
|
|
float: right;
|
|
|
|
margin: 0 -100% 0 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.secondary-navigation ul ul {
|
|
|
|
right: -999em;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.secondary-navigation ul li:hover > ul,
|
|
|
|
.secondary-navigation ul li.focus > ul {
|
|
|
|
right: 162px;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-12-03 21:51:10 +01:00
|
|
|
.secondary-navigation .menu-item-has-children > a {
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 38px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary-navigation .menu-item-has-children > a:after {
|
|
|
|
border-right-color: #fff;
|
|
|
|
border-left-color: transparent;
|
|
|
|
right: auto;
|
|
|
|
left: 26px;
|
2013-12-08 08:16:10 +01:00
|
|
|
content: "\f503";
|
2013-12-03 21:51:10 +01:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.footer-sidebar .widget {
|
|
|
|
float: right;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.featured-content {
|
|
|
|
padding-right: 182px;
|
2013-07-29 00:55:10 +02:00
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
@media screen and (min-width: 1040px) {
|
|
|
|
.archive-header,
|
|
|
|
.comments-area,
|
|
|
|
.image-navigation,
|
|
|
|
.page-header,
|
|
|
|
.page-content,
|
|
|
|
.post-navigation,
|
|
|
|
.site-content .entry-header,
|
|
|
|
.site-content .entry-content,
|
|
|
|
.site-content .entry-summary,
|
|
|
|
.site-content footer.entry-meta {
|
|
|
|
padding-right: 15px;
|
|
|
|
padding-left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-width .archive-header,
|
|
|
|
.full-width .comments-area,
|
|
|
|
.full-width .image-navigation,
|
|
|
|
.full-width .page-header,
|
|
|
|
.full-width .page-content,
|
|
|
|
.full-width .post-navigation,
|
|
|
|
.full-width .site-content .entry-header,
|
|
|
|
.full-width .site-content .entry-content,
|
|
|
|
.full-width .site-content .entry-summary,
|
|
|
|
.full-width .site-content footer.entry-meta {
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 1080px) {
|
|
|
|
.site-content {
|
|
|
|
margin-right: 222px;
|
|
|
|
margin-left: 29.04761904%;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.full-width .site-content {
|
|
|
|
margin-right: 222px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.search-box-wrapper,
|
|
|
|
.featured-content {
|
|
|
|
padding-right: 222px;
|
|
|
|
padding-left: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.secondary-navigation ul li:hover > ul,
|
|
|
|
.secondary-navigation ul li.focus > ul {
|
|
|
|
right: 202px;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-control-paging {
|
|
|
|
padding-right: 24px;
|
|
|
|
padding-left: 0;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-control-paging li {
|
|
|
|
margin: 12px 0 12px 12px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
.slider-control-paging a:before {
|
|
|
|
right: 6px;
|
|
|
|
left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
@media screen and (min-width: 1110px) {
|
2013-09-02 23:21:09 +02:00
|
|
|
.archive-header,
|
2013-11-02 05:36:12 +01:00
|
|
|
.comments-area,
|
|
|
|
.image-navigation,
|
|
|
|
.page-header,
|
|
|
|
.page-content,
|
|
|
|
.post-navigation,
|
|
|
|
.site-content .entry-header,
|
|
|
|
.site-content .entry-content,
|
|
|
|
.site-content .entry-summary,
|
|
|
|
.site-content footer.entry-meta {
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 30px;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
@media screen and (min-width: 1218px) {
|
|
|
|
.archive-header,
|
|
|
|
.comments-area,
|
|
|
|
.image-navigation,
|
|
|
|
.page-header,
|
|
|
|
.page-content,
|
|
|
|
.post-navigation,
|
|
|
|
.site-content .entry-header,
|
|
|
|
.site-content .entry-content,
|
|
|
|
.site-content .entry-summary,
|
|
|
|
.site-content footer.entry-meta {
|
|
|
|
margin-left: 54px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-width .archive-header,
|
|
|
|
.full-width .comments-area,
|
|
|
|
.full-width .image-navigation,
|
|
|
|
.full-width .page-header,
|
|
|
|
.full-width .page-content,
|
|
|
|
.full-width .post-navigation,
|
|
|
|
.full-width .site-content .entry-header,
|
|
|
|
.full-width .site-content .entry-content,
|
|
|
|
.full-width .site-content .entry-summary,
|
|
|
|
.full-width .site-content footer.entry-meta {
|
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
2013-07-29 00:55:10 +02:00
|
|
|
}
|
2013-11-02 05:36:12 +01:00
|
|
|
}
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-11-02 05:36:12 +01:00
|
|
|
@media screen and (min-width: 1260px) {
|
2013-10-09 23:42:09 +02:00
|
|
|
.site-content blockquote.alignright {
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-right: -18%;
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
2013-10-09 23:42:09 +02:00
|
|
|
.site-content blockquote.alignleft {
|
2013-11-02 05:36:12 +01:00
|
|
|
margin-left: -18%;
|
2013-07-29 00:55:10 +02:00
|
|
|
margin-right: auto;
|
|
|
|
}
|
Bundled Themes: Add link to privacy policy page in footer.
If a privacy policy has been set, then a link to it will automatically be shown in the footer.
The element containing the "Proudly powered by WordPress" link was chosen for the new policy link, in order to minimize visual conflicts with custom CSS that was written before the new link existed. Unfortunately, some minor conflicts are expected and unavoidable. Adding this link is required as part of GDPR compliance, and the benefits outweigh the downsides.
To further mitigate the conflicts, a new `imprint` class was added to the "Proudly powered..." link, in order to facilitate targeting each link invididually with custom styles.
Props xkon, laurelfulford, birgire, azaozz, iandunn.
See #43715.
Built from https://develop.svn.wordpress.org/trunk@43051
git-svn-id: http://core.svn.wordpress.org/trunk@42880 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-05-01 08:28:21 +02:00
|
|
|
}
|