styled lists in convo and agenda

This commit is contained in:
jorge 2024-04-05 12:35:13 +02:00
parent 2d0a64ecc2
commit 250f591e69
7 changed files with 30 additions and 20 deletions

View File

@ -17,7 +17,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
Author: Hangar.org Tech Lab - hangar.org
Author URI: https://hangar.org
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
Version: 1.6.0
Version: 1.6.1
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v3 or later
@ -2379,6 +2379,7 @@ Add your custom styles in this file so it is easier to update the theme.
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-convo article.xarxaprod-convo > .xarxaprod-convo-info-fields {
width: 100%;
padding-top: 2rem;
padding-bottom: 2rem;
}
@ -2409,11 +2410,6 @@ Add your custom styles in this file so it is easier to update the theme.
grid-template-columns: 0.75fr 2.25fr;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-convo .xarxaprod-convo-info-fields li:first-of-type,
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-convo .xarxaprod-agenda-info li:first-of-type {
border-top: 0.05rem solid #000;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-convo .xarxaprod-convo-info-fields dt,
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-convo .xarxaprod-agenda-info dt {
grid-row: 1 / 1;
@ -2427,6 +2423,11 @@ Add your custom styles in this file so it is easier to update the theme.
font-weight: 700;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-convo .archive-posts .xarxaprod-convo-info-fields li:first-of-type,
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-convo .archive-posts .xarxaprod-agenda-info li:first-of-type {
border-top: 0.05rem solid #000;
}
.edit-post-visual-editor__content-area .editor-styles-wrapper .single-xarxaprod-associat .xarxaprod-associat > section {
margin-top: 4em;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -244,6 +244,7 @@
.single-xarxaprod-convo {
article.xarxaprod-convo {
> .xarxaprod-convo-info-fields {
width: 100%;
padding-top: 2rem;
padding-bottom: 2rem;
}
@ -269,9 +270,6 @@
li {
display:grid;
grid-template-columns: 0.75fr 2.25fr;
&:first-of-type{
border-top: $border__line;
}
}
dt {
grid-row: 1 / 1;
@ -282,7 +280,17 @@
margin: 0;
font-weight: 700;
}
}
}
.archive-posts {
.xarxaprod-convo-info-fields,
.xarxaprod-agenda-info {
li {
&:first-of-type{
border-top: $border__line;
}
}
}
}
}
/* used in

View File

@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
Author: Hangar.org Tech Lab - hangar.org
Author URI: https://hangar.org
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
Version: 1.6.0
Version: 1.6.1
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v3 or later

View File

@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
Author: Hangar.org Tech Lab - hangar.org
Author URI: https://hangar.org
Description: theme for the <a href="https://xarxaprod.cat">XarxaProd</a>. Inclou la possibilitat de publicar, catalogar i cercar ajuts, resoldre dubtes amb FAQs i altres. Design by Eudald Van der Pla <a href="https://vanderpla.com">vanderpla.com</a>. Coding template and theme by <a href="https://vitrubio.net">Jorge - vitrubio.net</a>
Version: 1.6.0
Version: 1.6.1
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v3 or later
@ -2200,6 +2200,7 @@ textarea {
}
.single-xarxaprod-convo article.xarxaprod-convo > .xarxaprod-convo-info-fields {
width: 100%;
padding-top: 2rem;
padding-bottom: 2rem;
}
@ -2230,11 +2231,6 @@ textarea {
grid-template-columns: 0.75fr 2.25fr;
}
.single-xarxaprod-convo .xarxaprod-convo-info-fields li:first-of-type,
.single-xarxaprod-convo .xarxaprod-agenda-info li:first-of-type {
border-top: 0.05rem solid #000;
}
.single-xarxaprod-convo .xarxaprod-convo-info-fields dt,
.single-xarxaprod-convo .xarxaprod-agenda-info dt {
grid-row: 1 / 1;
@ -2248,6 +2244,11 @@ textarea {
font-weight: 700;
}
.single-xarxaprod-convo .archive-posts .xarxaprod-convo-info-fields li:first-of-type,
.single-xarxaprod-convo .archive-posts .xarxaprod-agenda-info li:first-of-type {
border-top: 0.05rem solid #000;
}
/* used in
* template-parts/content-xarxaprod-associat.php
* * * * * * * * * */

File diff suppressed because one or more lines are too long