prerelease 2.2.2 because 2.2.1 is a quick patch and cannot be kept
git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2439670 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
54051772b1
commit
6c7854352b
14 changed files with 265 additions and 139 deletions
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
* Since v2.1.4 of Footnotes
|
||||
*
|
||||
* Last modified: 2020-12-06T1722+0100
|
||||
* Last modified for v2.2.2 2020-12-15T1004+0100
|
||||
*
|
||||
* The enqueuing of this style sheet is optional and can be
|
||||
* enabled in the Reference container settings.
|
||||
|
@ -20,56 +20,66 @@ Rationale
|
|||
In Hello Elementor Theme, this applies to .site-header, and
|
||||
also to .site-main, which is a class of the <main> element,
|
||||
at the condition that the page is not built with Elementor:
|
||||
body:not([class*="elementor-page-"])
|
||||
body:not([class*="elementor-page-"])
|
||||
Therefore, in pages built with Elementor, proper layout is
|
||||
applied only to features managed by Elementor, not others.
|
||||
|
||||
The Footnotes references container is near the end of main.
|
||||
This style sheet lets Footnotes’ reference container come
|
||||
Footnotes reference containers are near the bottom of main.
|
||||
This style sheet lets Footnotes’ reference containers come
|
||||
into the benefit of the basic responsive layout style rules
|
||||
that would apply if the page were not built with Elementor.
|
||||
|
||||
This is mainly useful with Hello Elementor, but it might be
|
||||
used also with another theme.
|
||||
This is mainly useful with Hello Elementor but it helps fix
|
||||
also other themes like Twenty Twenty-One.
|
||||
*/
|
||||
|
||||
main, .main-content, .site-main {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
main,
|
||||
.main-content,
|
||||
.site-main {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
|
||||
main, .main-content, .site-main {
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
main,
|
||||
.main-content,
|
||||
.site-main {
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
|
||||
main, .main-content, .site-main {
|
||||
main,
|
||||
.main-content,
|
||||
.site-main {
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
main, .main-content, .site-main {
|
||||
main,
|
||||
.main-content,
|
||||
.site-main {
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
|
||||
main, .main-content, .site-main {
|
||||
main,
|
||||
.main-content,
|
||||
.site-main {
|
||||
max-width: 800px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
|
||||
main, .main-content, .site-main {
|
||||
main,
|
||||
.main-content,
|
||||
.site-main {
|
||||
max-width: 960px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
* Since v2.1.4 of Footnotes
|
||||
*
|
||||
* Last modified: 2020-12-06T1722+0100
|
||||
* Last modified for v2.2.2 2020-12-15T1004+0100
|
||||
*
|
||||
* The enqueuing of this style sheet is optional and can be
|
||||
* enabled in the Reference container settings.
|
||||
|
@ -20,56 +20,60 @@ Rationale
|
|||
In Hello Elementor Theme, this applies to .site-header, and
|
||||
also to .site-main, which is a class of the <main> element,
|
||||
at the condition that the page is not built with Elementor:
|
||||
body:not([class*="elementor-page-"])
|
||||
body:not([class*="elementor-page-"])
|
||||
Therefore, in pages built with Elementor, proper layout is
|
||||
applied only to features managed by Elementor, not others.
|
||||
|
||||
The Footnotes references container is near the end of main.
|
||||
This style sheet lets Footnotes’ reference container come
|
||||
Footnotes reference containers are near the bottom of main.
|
||||
This style sheet lets Footnotes’ reference containers come
|
||||
into the benefit of the basic responsive layout style rules
|
||||
that would apply if the page were not built with Elementor.
|
||||
|
||||
This is mainly useful with Hello Elementor, but it might be
|
||||
used also with another theme.
|
||||
This is mainly useful with Hello Elementor but it helps fix
|
||||
also other themes like Twenty Twenty-One.
|
||||
*/
|
||||
|
||||
div.page-content {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
|
||||
div.page-content {
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
|
||||
div.page-content {
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
div.page-content {
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
|
||||
div.page-content {
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
max-width: 800px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
|
||||
div.page-content {
|
||||
div.page-content,
|
||||
div.entry-content {
|
||||
max-width: 960px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
* Since v2.1.4 of Footnotes
|
||||
*
|
||||
* Last modified: 2020-12-06T1722+0100
|
||||
* Last modified for v2.2.2 2020-12-15T1046+0100
|
||||
*
|
||||
* The enqueuing of this style sheet is optional and can be
|
||||
* enabled in the Reference container settings.
|
||||
|
@ -20,56 +20,60 @@ Rationale
|
|||
In Hello Elementor Theme, this applies to .site-header, and
|
||||
also to .site-main, which is a class of the <main> element,
|
||||
at the condition that the page is not built with Elementor:
|
||||
body:not([class*="elementor-page-"])
|
||||
body:not([class*="elementor-page-"])
|
||||
Therefore, in pages built with Elementor, proper layout is
|
||||
applied only to features managed by Elementor, not others.
|
||||
|
||||
The Footnotes references container is near the end of main.
|
||||
This style sheet lets Footnotes’ reference container come
|
||||
Footnotes reference containers are near the bottom of main.
|
||||
This style sheet lets Footnotes’ reference containers come
|
||||
into the benefit of the basic responsive layout style rules
|
||||
that would apply if the page were not built with Elementor.
|
||||
|
||||
This is mainly useful with Hello Elementor, but it might be
|
||||
used also with another theme.
|
||||
This is mainly useful with Hello Elementor but it helps fix
|
||||
also other themes like Twenty Twenty-One.
|
||||
*/
|
||||
|
||||
.footnotes_reference_container {
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
.entry-content div.footnotes_reference_container,
|
||||
main div.footnotes_reference_container {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
@media (max-width: 575px) {
|
||||
|
||||
.footnotes_reference_container {
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
.entry-content div.footnotes_reference_container,
|
||||
main div.footnotes_reference_container {
|
||||
padding: 0 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
|
||||
.footnotes_reference_container {
|
||||
.entry-content div.footnotes_reference_container,
|
||||
main div.footnotes_reference_container {
|
||||
max-width: 500px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
|
||||
.footnotes_reference_container {
|
||||
.entry-content div.footnotes_reference_container,
|
||||
main div.footnotes_reference_container {
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
|
||||
.footnotes_reference_container {
|
||||
.entry-content div.footnotes_reference_container,
|
||||
main div.footnotes_reference_container {
|
||||
max-width: 800px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
|
||||
.footnotes_reference_container {
|
||||
.entry-content div.footnotes_reference_container,
|
||||
main div.footnotes_reference_container {
|
||||
max-width: 960px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,14 +5,14 @@
|
|||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
*
|
||||
* Version: 2.2.0
|
||||
* Version: 2.2.2
|
||||
*
|
||||
* Classes added to public.css may be added to the
|
||||
* list documenting CSS classes for Custom CSS if
|
||||
* recommended for general use.
|
||||
* List in templates/dashboard/customize-css.html
|
||||
*
|
||||
* Last modified: 2020-12-13T2059+0100
|
||||
* Last modified: 2020-12-15T0844+0100
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* Created-Time: 16:21
|
||||
* Since: 1.0
|
||||
*
|
||||
* Version: 2.2.0
|
||||
* Version: 2.2.2
|
||||
*
|
||||
* Last modified: 2020-12-13T2127+0100
|
||||
* Last modified: 2020-12-15T1020+0100
|
||||
*/
|
||||
|
||||
|
||||
|
@ -195,25 +195,28 @@ maintainability and readability of the source list.
|
|||
The textarea has monospace font, but no other features
|
||||
helping edit CSS, as tab support and syntactic colors.
|
||||
*/
|
||||
#customize_css tr td:first-child {
|
||||
#customize_css_new tr td:first-child {
|
||||
width: 44% !important;
|
||||
font-weight: normal !important;
|
||||
}
|
||||
#customize_css tr td:first-child span:first-child {
|
||||
#customize_css_new tr td:first-child span:first-child {
|
||||
font-weight: bold !important;
|
||||
}
|
||||
#customize_css .list {
|
||||
#customize_css_new .list {
|
||||
padding-top: 10px;
|
||||
}
|
||||
#customize_css .list p {
|
||||
#customize_css_new .list p {
|
||||
font-family: monospace;
|
||||
padding: 0 10px;
|
||||
text-indent: -10px;
|
||||
margin: .5em 0;
|
||||
}
|
||||
|
||||
#footnote_inputfield_custom_css {
|
||||
#footnote_inputfield_custom_css_new {
|
||||
height: 500px;
|
||||
}
|
||||
#footnote_inputfield_custom_css,
|
||||
#footnote_inputfield_custom_css_new {
|
||||
width: 90%;
|
||||
resize: both;
|
||||
overflow: scroll;
|
||||
|
|
Reference in a new issue