Skip to content
Snippets Groups Projects
Commit b2064fb6 authored by agata's avatar agata
Browse files

[auto] theme: twentytwelve 3.3

parent 0ba58e76
Branches
Tags
No related merge requests found
...@@ -57,7 +57,7 @@ get_header(); ?> ...@@ -57,7 +57,7 @@ get_header(); ?>
<div class="author-avatar"> <div class="author-avatar">
<?php <?php
/** /**
* Filter the author bio avatar size. * Filters the author bio avatar size.
* *
* @since Twenty Twelve 1.0 * @since Twenty Twelve 1.0
* *
......
...@@ -19,7 +19,7 @@ $post_title = sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attrib ...@@ -19,7 +19,7 @@ $post_title = sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attrib
</header> </header>
<?php <?php
/** /**
* Filter the status avatar size. * Filters the status avatar size.
* *
* @since Twenty Twelve 1.0 * @since Twenty Twelve 1.0
* *
......
...@@ -12,6 +12,7 @@ Description: Used to style blocks in the editor. ...@@ -12,6 +12,7 @@ Description: Used to style blocks in the editor.
4.0 Blocks - Formatting 4.0 Blocks - Formatting
5.0 Blocks - Layout Elements 5.0 Blocks - Layout Elements
6.0 Blocks - Widgets 6.0 Blocks - Widgets
7.0 Blocks - Colors
--------------------------------------------------------------*/ --------------------------------------------------------------*/
/*-------------------------------------------------------------- /*--------------------------------------------------------------
...@@ -455,3 +456,57 @@ p.has-drop-cap:not(:focus)::first-letter { ...@@ -455,3 +456,57 @@ p.has-drop-cap:not(:focus)::first-letter {
padding-left: 0; padding-left: 0;
padding-right: 0; padding-right: 0;
} }
/*--------------------------------------------------------------
7.0 Blocks - Colors
--------------------------------------------------------------*/
:root .editor-styles-wrapper .has-blue-color,
:root .editor-styles-wrapper .has-blue-color:visited {
color: #21759b;
}
:root .editor-styles-wrapper .has-blue-background-color,
:root .editor-styles-wrapper .has-blue-background-color:visited {
background-color: #21759b;
}
:root .editor-styles-wrapper .has-dark-gray-color,
:root .editor-styles-wrapper .has-dark-gray-color:visited {
color: #373737;
}
:root .editor-styles-wrapper .has-dark-gray-background-color,
:root .editor-styles-wrapper .has-dark-gray-background-color:visited {
background-color: #373737;
}
:root .editor-styles-wrapper .has-medium-gray-color,
:root .editor-styles-wrapper .has-medium-gray-color:visited {
color: #9f9f9f;
}
:root .editor-styles-wrapper .has-medium-gray-background-color,
:root .editor-styles-wrapper .has-medium-gray-background-color:visited {
background-color: #9f9f9f;
}
:root .editor-styles-wrapper .has-light-gray-color,
:root .editor-styles-wrapper .has-light-gray-color:visited {
color: #e6e6e6;
}
:root .editor-styles-wrapper .has-light-gray-background-color,
:root .editor-styles-wrapper .has-light-gray-background-color:visited {
background-color: #e6e6e6;
}
:root .editor-styles-wrapper .has-white-color,
:root .editor-styles-wrapper .has-white-color:visited {
color: #fff;
}
:root .editor-styles-wrapper .has-white-background-color,
:root .editor-styles-wrapper .has-white-background-color:visited {
background-color: #fff;
}
...@@ -158,11 +158,11 @@ function twentytwelve_get_font_url() { ...@@ -158,11 +158,11 @@ function twentytwelve_get_font_url() {
*/ */
$subset = _x( 'no-subset', 'Open Sans font: add new subset (greek, cyrillic, vietnamese)', 'twentytwelve' ); $subset = _x( 'no-subset', 'Open Sans font: add new subset (greek, cyrillic, vietnamese)', 'twentytwelve' );
if ( 'cyrillic' == $subset ) { if ( 'cyrillic' === $subset ) {
$subsets .= ',cyrillic,cyrillic-ext'; $subsets .= ',cyrillic,cyrillic-ext';
} elseif ( 'greek' == $subset ) { } elseif ( 'greek' === $subset ) {
$subsets .= ',greek,greek-ext'; $subsets .= ',greek,greek-ext';
} elseif ( 'vietnamese' == $subset ) { } elseif ( 'vietnamese' === $subset ) {
$subsets .= ',vietnamese'; $subsets .= ',vietnamese';
} }
...@@ -451,7 +451,7 @@ if ( ! function_exists( 'twentytwelve_comment' ) ) : ...@@ -451,7 +451,7 @@ if ( ! function_exists( 'twentytwelve_comment' ) ) :
if ( $commenter['comment_author_email'] ) { if ( $commenter['comment_author_email'] ) {
$moderation_note = __( 'Your comment is awaiting moderation.', 'twentytwelve' ); $moderation_note = __( 'Your comment is awaiting moderation.', 'twentytwelve' );
} else { } else {
$moderation_note = __( 'Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved.', 'twentytwelve' ); $moderation_note = __( 'Your comment is awaiting moderation. This is a preview; your comment will be visible after it has been approved.', 'twentytwelve' );
} }
?> ?>
...@@ -501,7 +501,7 @@ if ( ! function_exists( 'twentytwelve_entry_meta' ) ) : ...@@ -501,7 +501,7 @@ if ( ! function_exists( 'twentytwelve_entry_meta' ) ) :
$categories_list = get_the_category_list( __( ', ', 'twentytwelve' ) ); $categories_list = get_the_category_list( __( ', ', 'twentytwelve' ) );
/* translators: Used between list items, there is a space after the comma. */ /* translators: Used between list items, there is a space after the comma. */
$tag_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) ); $tags_list = get_the_tag_list( '', __( ', ', 'twentytwelve' ) );
$date = sprintf( $date = sprintf(
'<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>', '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
...@@ -519,7 +519,7 @@ if ( ! function_exists( 'twentytwelve_entry_meta' ) ) : ...@@ -519,7 +519,7 @@ if ( ! function_exists( 'twentytwelve_entry_meta' ) ) :
get_the_author() get_the_author()
); );
if ( $tag_list ) { if ( $tags_list && ! is_wp_error( $tags_list ) ) {
/* translators: 1: Category name, 2: Tag name, 3: Date, 4: Author display name. */ /* translators: 1: Category name, 2: Tag name, 3: Date, 4: Author display name. */
$utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' ); $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s<span class="by-author"> by %4$s</span>.', 'twentytwelve' );
} elseif ( $categories_list ) { } elseif ( $categories_list ) {
...@@ -533,7 +533,7 @@ if ( ! function_exists( 'twentytwelve_entry_meta' ) ) : ...@@ -533,7 +533,7 @@ if ( ! function_exists( 'twentytwelve_entry_meta' ) ) :
printf( printf(
$utility_text, $utility_text,
$categories_list, $categories_list,
$tag_list, $tags_list,
$date, $date,
$author $author
); );
...@@ -578,7 +578,7 @@ function twentytwelve_body_class( $classes ) { ...@@ -578,7 +578,7 @@ function twentytwelve_body_class( $classes ) {
if ( empty( $background_image ) ) { if ( empty( $background_image ) ) {
if ( empty( $background_color ) ) { if ( empty( $background_color ) ) {
$classes[] = 'custom-background-empty'; $classes[] = 'custom-background-empty';
} elseif ( in_array( $background_color, array( 'fff', 'ffffff' ) ) ) { } elseif ( in_array( $background_color, array( 'fff', 'ffffff' ), true ) ) {
$classes[] = 'custom-background-white'; $classes[] = 'custom-background-white';
} }
} }
...@@ -651,6 +651,7 @@ add_action( 'customize_register', 'twentytwelve_customize_register' ); ...@@ -651,6 +651,7 @@ add_action( 'customize_register', 'twentytwelve_customize_register' );
* Render the site title for the selective refresh partial. * Render the site title for the selective refresh partial.
* *
* @since Twenty Twelve 2.0 * @since Twenty Twelve 2.0
*
* @see twentytwelve_customize_register() * @see twentytwelve_customize_register()
* *
* @return void * @return void
...@@ -663,6 +664,7 @@ function twentytwelve_customize_partial_blogname() { ...@@ -663,6 +664,7 @@ function twentytwelve_customize_partial_blogname() {
* Render the site tagline for the selective refresh partial. * Render the site tagline for the selective refresh partial.
* *
* @since Twenty Twelve 2.0 * @since Twenty Twelve 2.0
*
* @see twentytwelve_customize_register() * @see twentytwelve_customize_register()
* *
* @return void * @return void
...@@ -672,7 +674,7 @@ function twentytwelve_customize_partial_blogdescription() { ...@@ -672,7 +674,7 @@ function twentytwelve_customize_partial_blogdescription() {
} }
/** /**
* Enqueue Javascript postMessage handlers for the Customizer. * Enqueue JavaScript postMessage handlers for the Customizer.
* *
* Binds JS handlers to make the Customizer preview reload changes asynchronously. * Binds JS handlers to make the Customizer preview reload changes asynchronously.
* *
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<title><?php wp_title( '|', true, 'right' ); ?></title> <title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" /> <link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>"> <link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
<?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?> <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
<!--[if lt IE 9]> <!--[if lt IE 9]>
......
...@@ -28,7 +28,7 @@ get_header(); ?> ...@@ -28,7 +28,7 @@ get_header(); ?>
$metadata = wp_get_attachment_metadata(); $metadata = wp_get_attachment_metadata();
printf( printf(
/* translators: 1: Date, 2: Date, 3: Attachment URL, 4: Image width in pixels, 5: Image height in pixels, 6: Post parent permalink, 7: Post parent title, 8: Post parent title. */ /* translators: 1: Date, 2: Date, 3: Attachment URL, 4: Image width in pixels, 5: Image height in pixels, 6: Post parent permalink, 7: Post parent title, 8: Post parent title. */
__( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Return to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ), __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><time class="entry-date" datetime="%1$s">%2$s</time></span> at <a href="%3$s" title="Link to full-size image">%4$s &times; %5$s</a> in <a href="%6$s" title="Go to %7$s" rel="gallery">%8$s</a>.', 'twentytwelve' ),
esc_attr( get_the_date( 'c' ) ), esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ), esc_html( get_the_date() ),
esc_url( wp_get_attachment_url() ), esc_url( wp_get_attachment_url() ),
...@@ -93,7 +93,7 @@ get_header(); ?> ...@@ -93,7 +93,7 @@ get_header(); ?>
<a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment"> <a href="<?php echo esc_url( $next_attachment_url ); ?>" title="<?php the_title_attribute(); ?>" rel="attachment">
<?php <?php
/** /**
* Filter the image attachment size to use. * Filters the image attachment size to use.
* *
* @since Twenty Twelve 1.0 * @since Twenty Twelve 1.0
* *
......
...@@ -41,9 +41,9 @@ ...@@ -41,9 +41,9 @@
value.bind( function( to ) { value.bind( function( to ) {
var body = $( 'body' ); var body = $( 'body' );
if ( ( '#ffffff' == to || '#fff' == to ) && 'none' == body.css( 'background-image' ) ) if ( ( '#ffffff' === to || '#fff' === to ) && 'none' === body.css( 'background-image' ) )
body.addClass( 'custom-background-white' ); body.addClass( 'custom-background-white' );
else if ( '' == to && 'none' == body.css( 'background-image' ) ) else if ( '' === to && 'none' === body.css( 'background-image' ) )
body.addClass( 'custom-background-empty' ); body.addClass( 'custom-background-empty' );
else else
body.removeClass( 'custom-background-empty custom-background-white' ); body.removeClass( 'custom-background-empty custom-background-white' );
......
=== Twenty Twelve === === Twenty Twelve ===
Contributors: wordpressdotorg Contributors: wordpressdotorg
Tested up to: 5.0 Tested up to: 5.6
Stable tag: 3.1 Stable tag: 3.3
License: GPLv2 or later License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
== Description == == Description ==
The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background. The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
For more information about Twenty Twelve please go to https://codex.wordpress.org/Twenty_Twelve. For more information about Twenty Twelve please go to https://codex.wordpress.org/Twenty_Twelve.
== Installation == == Installation ==
1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button. 1. In your admin panel, go to Appearance -> Themes and click the 'Add New' button.
2. Type in Twenty Twelve in the search form and press the 'Enter' key in your keyboard. 2. Type in Twenty Twelve in the search form and press the 'Enter' key in your keyboard.
3. Click on the 'Activate' button to use your new theme right away. 3. Click on the 'Activate' button to use your new theme right away.
4. Go to https://codex.wordpress.org/Twenty_Twelve for a guide to customize this theme. 4. Go to https://codex.wordpress.org/Twenty_Twelve for a guide to customize this theme.
5. Navigate to Appearance > Customize in your admin panel. 5. Navigate to Appearance > Customize in your admin panel.
== Copyright == == Copyright ==
Twenty Twelve WordPress Theme, Copyright 2012-2020 WordPress.org & Automattic.com Twenty Twelve WordPress Theme, Copyright 2012-2020 WordPress.org & Automattic.com
Twenty Twelve is Distributed under the terms of the GNU GPL Twenty Twelve is Distributed under the terms of the GNU GPL
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or the Free Software Foundation, either version 2 of the License, or
(at your option) any later version. (at your option) any later version.
This program is distributed in the hope that it will be useful, This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
Twenty Twelve Theme bundles the following third-party resources: Twenty Twelve Theme bundles the following third-party resources:
HTML5 Shiv v3.7.0, Copyright 2014 Alexander Farkas HTML5 Shiv v3.7.0, Copyright 2014 Alexander Farkas
Licenses: MIT/GPL2 Licenses: MIT/GPL2
Source: https://github.com/aFarkas/html5shiv Source: https://github.com/aFarkas/html5shiv
== Changelog == == Changelog ==
= 3.1 = = 3.3 =
* Released: March 31, 2020 * Released: December 8, 2020
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_3.1 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_3.3
= 3.0 = = 3.2 =
* Released: May 7, 2019 * Released: August 11, 2020
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_3.0 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_3.2
= 2.9 = = 3.1 =
* Released: February 21, 2019 * Released: March 31, 2020
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.9 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_3.1
= 2.8 = = 3.0 =
* Released: January 9, 2019 * Released: May 7, 2019
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.8 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_3.0
= 2.7 = = 2.9 =
* Released: December 19, 2018 * Released: February 21, 2019
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.7 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.9
= 2.6 = = 2.8 =
* Released: December 6, 2018 * Released: January 9, 2019
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.6 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.8
= 2.5 = = 2.7 =
* Released: May 17, 2018 * Released: December 19, 2018
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.5 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.7
= 2.4 = = 2.6 =
* Released: November 14, 2017 * Released: December 6, 2018
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.4 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.6
= 2.3 = = 2.5 =
* Released: June 8, 2017 * Released: May 17, 2018
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.3 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.5
= 2.2 = = 2.4 =
* Released: December 6, 2016 * Released: November 14, 2017
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.2 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.4
= 2.1 = = 2.3 =
* Released: August 15, 2016 * Released: June 8, 2017
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.1 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.3
= 2.0 = = 2.2 =
* Released: April 12, 2016 * Released: December 6, 2016
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.0 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.2
= 1.9 = = 2.1 =
* Released: December 8, 2015 * Released: August 15, 2016
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.9 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.1
= 1.8 = = 2.0 =
* Released: August 18, 2015 * Released: April 12, 2016
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.8 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_2.0
= 1.7 = = 1.9 =
* Released: April 23, 2015 * Released: December 8, 2015
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.7 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.9
= 1.6 = = 1.8 =
* Released: December 18, 2014 * Released: August 18, 2015
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.6 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.8
= 1.5 = = 1.7 =
* Released: September 4, 2014 * Released: April 23, 2015
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.5 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.7
= 1.4 = = 1.6 =
* Released: May 8, 2014 * Released: December 18, 2014
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.4 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.6
= 1.3 = = 1.5 =
* Released: October 24, 2013 * Released: September 4, 2014
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.3 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.5
= 1.2 = = 1.4 =
* Released: August 1, 2013 * Released: May 8, 2014
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.2 https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.4
= 1.1 = = 1.3 =
* Released: December 11, 2012 * Released: October 24, 2013
Initial release. https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.3
= 1.2 =
* Released: August 1, 2013
https://codex.wordpress.org/Twenty_Twelve_Theme_Changelog#Version_1.2
= 1.1 =
* Released: December 11, 2012
Initial release.
...@@ -4,7 +4,7 @@ Theme URI: https://wordpress.org/themes/twentytwelve/ ...@@ -4,7 +4,7 @@ Theme URI: https://wordpress.org/themes/twentytwelve/
Author: the WordPress team Author: the WordPress team
Author URI: https://wordpress.org/ Author URI: https://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background. Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 3.1 Version: 3.3
Requires at least: 3.5 Requires at least: 3.5
Requires PHP: 5.2.4 Requires PHP: 5.2.4
License: GNU General Public License v2 or later License: GNU General Public License v2 or later
...@@ -1417,6 +1417,9 @@ a.comment-edit-link:hover { ...@@ -1417,6 +1417,9 @@ a.comment-edit-link:hover {
/* =Widgets /* =Widgets
-------------------------------------------------------------- */ -------------------------------------------------------------- */
.widget select {
max-width: 100%;
}
.widget-area .widget ul ul { .widget-area .widget ul ul {
margin-left: 12px; margin-left: 12px;
margin-left: 0.857142857rem; margin-left: 0.857142857rem;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment