-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pkp#4479 from bozana/i10392
pkp/pkp-lib#10392 Masthead styling
- Loading branch information
Showing
4 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule pkp
updated
3 files
+4 −1 | locale/en/common.po | |
+18 −20 | templates/frontend/pages/editorialHistory.tpl | |
+30 −32 | templates/frontend/pages/editorialMasthead.tpl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
} | ||
} |