Skip to content

Commit

Permalink
pkp/pkp-lib#8880 Use semibold font weight in submissions table
Browse files Browse the repository at this point in the history
  • Loading branch information
NateWr authored and jardakotesovec committed Sep 4, 2023
1 parent 5d0b098 commit 1c0c145
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/components/Button/Button.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default {
text-align: center;
font-size: @font-sml;
line-height: 2rem;
font-weight: @bold;
font-weight: @semibold;
color: @primary;
text-decoration: none;
box-shadow: 0 1px 0 @bg-border-color-light;
Expand Down Expand Up @@ -105,7 +105,6 @@ export default {
}
.pkpButton--isLink {
font-weight: @normal;
text-transform: uppercase;
box-shadow: none;
border-color: transparent;
Expand Down
8 changes: 8 additions & 0 deletions src/components/Container/SubmissionsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -389,13 +389,21 @@ export default {
gap: 1rem;
}
.submissions__list__controls {
margin-bottom: 0.5rem;
}
.submissions__list__item__title {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
max-width: 25em;
}
.submissions__list__item__author {
font-weight: @semibold;
}
.submissions__list__item__stage {
font-size: @font-tiny;
line-height: @line-tiny;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Table/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
thead {
th {
font-size: @font-tiny;
font-weight: @bold;
font-weight: @semibold;
text-transform: uppercase;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
class="submissions__list__item__title"
:is-row-header="true"
>
<strong>
<span class="submissions__list__item__author">
{{ submission.publications[0].authorsStringShort }}
</strong>
</span>
{{ submission.publications[0].fullTitle.en }}
</table-cell>
<table-cell class="submissions__list__item__stage">
Expand Down

0 comments on commit 1c0c145

Please sign in to comment.