Compare commits
2 Commits
daec65d8d2
...
8be2b61615
Author | SHA1 | Date | |
---|---|---|---|
8be2b61615 | |||
4e9c38d695 |
20
.todo
20
.todo
@ -1,11 +1,13 @@
|
||||
☐ Change default font size to 18px
|
||||
☐ Change default font size for paragraph block
|
||||
☐ Change default text on about page font size
|
||||
☐ Change font size on services page
|
||||
☐ Change font size on our work page
|
||||
☐ Change font size on blog page
|
||||
✔ Change default font size to 18px @done(25-07-30 16:05)
|
||||
✔ Change default font size for paragraph block @done(25-07-30 16:05)
|
||||
✔ Change default font size on front page @done(25-07-30 15:48)
|
||||
✔ Change default text on about page font size @done(25-07-30 15:52)
|
||||
✔ Change font size on services page @done(25-07-30 15:59)
|
||||
✔ Change font size on our work page @done(25-07-30 15:59)
|
||||
✔ Change font size on blog page @done(25-07-30 15:59)
|
||||
✔ Sync all content changes to live @done(25-07-30 16:04)
|
||||
|
||||
☐ Fix broken full-bleed template in post editor
|
||||
✔ Fix broken full-bleed template in post editor @done(25-07-30 16:20)
|
||||
|
||||
☐ Change services page to use tabs
|
||||
|
||||
@ -30,4 +32,6 @@
|
||||
|
||||
☐ Update figma mockups to resemble wp theme figma templates
|
||||
|
||||
☐ Add devcontainer/wp-now configuration
|
||||
☐ Add devcontainer/wp-now configuration
|
||||
|
||||
☐ Standardize font sizes in theme (use variables for everything)
|
@ -81,7 +81,12 @@ ul.is-style-arrow-list {
|
||||
}
|
||||
|
||||
/* HACK: fixing stretched out post width in editor */
|
||||
.edit-post-visual-editor .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
|
||||
:where(:not(.template-full-bleed)) .edit-post-visual-editor .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
|
||||
.edit-post-visual-editor .editor-styles-wrapper .editor-editor-canvas__post-title-wrapper > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
|
||||
max-width: 600px !important;
|
||||
max-width: 600px !important;
|
||||
}
|
||||
|
||||
body.template-full-bleed :where(:not(.template-full-bleed)) .edit-post-visual-editor .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
|
||||
body.template-full-bleed .edit-post-visual-editor .editor-styles-wrapper .editor-editor-canvas__post-title-wrapper > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
|
||||
max-width: unset !important;
|
||||
}
|
@ -76,4 +76,18 @@ function so306588_trim_excerpt_custom_restore($text)
|
||||
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
|
||||
|
||||
// add custom filter
|
||||
add_filter('get_the_excerpt', 'so306588_trim_excerpt_custom');
|
||||
add_filter('get_the_excerpt', 'so306588_trim_excerpt_custom');
|
||||
|
||||
/*
|
||||
* Add template class to admin body based on current page's template.
|
||||
*/
|
||||
function mytheme_add_template_class($classes)
|
||||
{
|
||||
$template = get_page_template_slug();
|
||||
if ($template) {
|
||||
$class = preg_replace('/\.php$/', '', $template);
|
||||
$classes .= ' template-' . sanitize_html_class($class);
|
||||
}
|
||||
return $classes;
|
||||
}
|
||||
add_filter('admin_body_class', 'mytheme_add_template_class');
|
Reference in New Issue
Block a user