configured properly styes for admin view
This commit is contained in:
parent
b02d072f54
commit
23217498c5
1203
adminstyles.css
1203
adminstyles.css
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////
|
||||||
// theme for editor admin, import style.sass and apply class before rest of it
|
// theme for editor admin, import style.sass and apply class before rest of it
|
||||||
|
|
||||||
// .wp-admin styles
|
// admin styles
|
||||||
|
|
||||||
.wp-admin {
|
.wp-admin {
|
||||||
.components-button.edit-post-fullscreen-mode-close.has-icon,
|
.components-button.edit-post-fullscreen-mode-close.has-icon,
|
||||||
|
@ -14,30 +16,33 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
// editor styles
|
// editor styles
|
||||||
|
|
||||||
.edit-post-visual-editor__content-area {
|
.edit-post-visual-editor__content-area {
|
||||||
|
.editor-styles-wrapper {
|
||||||
// import theme styles
|
// import theme styles
|
||||||
@import "style";
|
@import "style";
|
||||||
|
|
||||||
|
|
||||||
// apply differences when not rendered properly
|
// apply differences when not rendered properly
|
||||||
:where(.wp-block) {
|
//:where(.wp-block) {
|
||||||
max-width: 80rem;
|
// max-width: 80rem;
|
||||||
|
//``}
|
||||||
|
//.black-blocs .wp-block-column a::after {
|
||||||
|
// display:none;
|
||||||
|
//}
|
||||||
|
font-family: $font__main;
|
||||||
|
h1 {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
}
|
}
|
||||||
.black-blocs .wp-block-column a::after {
|
.wp-block-button__link {
|
||||||
display:none;
|
//color: $color__black !important;
|
||||||
|
//background-color: $color__white !important;
|
||||||
|
//border-radius: 0 !important;
|
||||||
|
//box-shadow: none !important;
|
||||||
|
//text-decoration: none !important;
|
||||||
|
//padding: 0.6em 1em 0.4em !important;
|
||||||
|
//font-size: inherit !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.editor-styles-wrapper .wp-block-button__link {
|
|
||||||
color: #000 !important;
|
|
||||||
background-color: #fff !important;
|
|
||||||
border-radius: 0 !important;
|
|
||||||
box-shadow: none !important;
|
|
||||||
text-decoration: none !important;
|
|
||||||
padding: 0.6em 1em 0.4em !important;
|
|
||||||
font-size: inherit !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// modify internal paths to make objects locally available
|
// modify internal paths to make objects locally available
|
||||||
@import "adminstyles/fonts";
|
//@import "adminstyles/fonts";
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
|
@ -10,10 +10,8 @@ input[type="submit"],
|
||||||
background: $color__background-button;
|
background: $color__background-button;
|
||||||
color: $color__white;
|
color: $color__white;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
//padding: 0.6em 1em 0.4em;
|
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
//text-transform: uppercase;
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
border-color: $color__border-button-hover;
|
border-color: $color__border-button-hover;
|
||||||
|
@ -28,28 +26,6 @@ input[type="submit"],
|
||||||
color: $color__white;
|
color: $color__white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//.button-more {
|
|
||||||
// display: inline-block;
|
|
||||||
// &::after {
|
|
||||||
// content: "+";
|
|
||||||
// display: inline-block;
|
|
||||||
// font-weight: bold;
|
|
||||||
// text-align: center;
|
|
||||||
// }
|
|
||||||
// &:hover::after {
|
|
||||||
// content: ">";
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
//.more-link {
|
|
||||||
// .button-more {
|
|
||||||
// &::after {
|
|
||||||
// font-size: 4rem;
|
|
||||||
// width: 4rem;
|
|
||||||
// }
|
|
||||||
// &:hover::after {
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//}
|
|
||||||
.category-faq {
|
.category-faq {
|
||||||
.button-more {
|
.button-more {
|
||||||
&::before {
|
&::before {
|
||||||
|
|
|
@ -136,13 +136,13 @@
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.button-more {
|
//.button-more {
|
||||||
width: 100%;
|
// width: 100%;
|
||||||
max-width: 11.7em;
|
// max-width: 11.7em;
|
||||||
&::after {
|
// &::after {
|
||||||
margin-left: 1rem;
|
// margin-left: 1rem;
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
.archive-posts {
|
.archive-posts {
|
||||||
// https://stackoverflow.com/questions/47601564/equal-width-columns-in-css-grid#61240964
|
// https://stackoverflow.com/questions/47601564/equal-width-columns-in-css-grid#61240964
|
||||||
|
|
|
@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
|
||||||
Author: Hangar.org Tech Lab - hangar.org
|
Author: Hangar.org Tech Lab - hangar.org
|
||||||
Author URI: https://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>
|
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.1.1
|
Version: 1.1.2
|
||||||
Tested up to: 6.4
|
Tested up to: 6.4
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
License: GNU General Public License v3 or later
|
License: GNU General Public License v3 or later
|
||||||
|
|
11
style.css
11
style.css
|
@ -5,7 +5,7 @@ Theme URI: https://git.hangar.org/xarxaprod/
|
||||||
Author: Hangar.org Tech Lab - hangar.org
|
Author: Hangar.org Tech Lab - hangar.org
|
||||||
Author URI: https://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>
|
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.1.1
|
Version: 1.1.2
|
||||||
Tested up to: 6.4
|
Tested up to: 6.4
|
||||||
Requires PHP: 7.4
|
Requires PHP: 7.4
|
||||||
License: GNU General Public License v3 or later
|
License: GNU General Public License v3 or later
|
||||||
|
@ -1806,15 +1806,6 @@ textarea {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.xarxaprod-filters .button-more {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 11.7em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.xarxaprod-filters .button-more::after {
|
|
||||||
margin-left: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive-posts {
|
.archive-posts {
|
||||||
grid-template-columns: repeat(1, minmax(0, 1fr));
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue