diff --git a/.prettierignore b/.prettierignore index 4aa30984fbc..50ecfc85362 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,5 +2,6 @@ cypress/tests/**/* lib/pkp/cypress/**/* lib/pkp/js/classes/**/* lib/pkp/js/controllers/**/* +plugins/themes/default/**/* package.json diff --git a/lib/pkp b/lib/pkp index 98dc1ac9df3..f28675c1152 160000 --- a/lib/pkp +++ b/lib/pkp @@ -1 +1 @@ -Subproject commit 98dc1ac9df37925dfaaed11925fe777c0511e4ae +Subproject commit f28675c1152856bf8c289d5f98ae580bfc59829c diff --git a/plugins/themes/default/styles/index.less b/plugins/themes/default/styles/index.less index 5b82741f955..c6f5f2e4817 100644 --- a/plugins/themes/default/styles/index.less +++ b/plugins/themes/default/styles/index.less @@ -35,6 +35,7 @@ @import "pages/indexJournal.less"; @import "pages/category.less"; @import "pages/contact.less"; +@import "pages/masthead.less"; @import "pages/issueArchive.less"; @import "pages/login.less"; @import "pages/lostPassword.less"; diff --git a/plugins/themes/default/styles/pages/masthead.less b/plugins/themes/default/styles/pages/masthead.less new file mode 100644 index 00000000000..0b55a998c1c --- /dev/null +++ b/plugins/themes/default/styles/pages/masthead.less @@ -0,0 +1,56 @@ +/* + * @file plugins/themes/default/styles/pages/masthead.less + * + * Copyright (c) 2014-2024 Simon Fraser University + * Copyright (c) 2003-2024 John Willinsky + * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. + * + * @brief Styles applying to the masthead and editorial history page + * @link templates/frontend/pages/editorialMasthead.tpl + * @link templates/frontend/pages/editorialHistory.tpl + */ + +.page_masthead { + h2 { + margin-top: @double; + margin-bottom: @base; + } + + .user_listing { + li { + margin-bottom: @double; + } + li > span { + display: block; + } + list-style-type: none; + padding: 0; + margin-top: @half; + + .name { + font-weight: bold; + } + + .affiliation { + font-size: @font-sml; + color: @text-light; + } + + .date_start { + font-size: @font-sml; + color: @text-light; + } + + .orcid { + font-size: @font-sml; + margin-left: 0.2rem; + margin-right: 0.2rem; + } + + .orcid_icon { + width: 1.4rem; + height: 1.4rem; + margin: 0; + } + } +}