-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/3136_different_publisher_and_society
- Loading branch information
Showing
81 changed files
with
839 additions
and
198 deletions.
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
File renamed without changes
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,35 @@ | ||
/* Back to main content button */ | ||
|
||
.skip-to-main { | ||
position: absolute; | ||
z-index: 10000; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
min-width: min-content; | ||
padding: 5px; | ||
top: 10px; | ||
left: 10px; | ||
background-color: $grapefruit; | ||
|
||
svg { | ||
display: block; | ||
margin: 0 auto; | ||
stroke: $warm-black; | ||
margin-rigth: 10px; | ||
} | ||
&:hover, &:focus { | ||
svg { | ||
margin-right: 10px; | ||
} | ||
} | ||
&:hover:after, &:focus:after { | ||
content: " Skip to main content"; | ||
color: $warm-black; | ||
vertical-align: bottom; | ||
-webkit-font-feature-settings: 'liga' 1; | ||
-moz-font-feature-settings: 'liga' 1; | ||
font-feature-settings: 'liga' 1; | ||
transition: 0.5 smooth; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -90,3 +90,8 @@ | |
color: $white; | ||
} | ||
} | ||
|
||
.tag--confirmation { | ||
background: $dark-green; | ||
color: $white; | ||
} |
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
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
17 changes: 17 additions & 0 deletions
17
doajtest/matrices/article_create_article/issn_validation_against_journal.matrix.csv
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,17 @@ | ||
test_id,eissn,pissn,validated | ||
1,eissn_in_doaj,pissn_in_doaj,yes | ||
2,eissn_in_doaj,eissn_not_in_doaj, | ||
3,eissn_in_doaj,pissn_not_in_doaj, | ||
4,eissn_in_doaj,!eissn_in_doaj, | ||
5,pissn_in_doaj,eissn_in_doaj, | ||
6,pissn_in_doaj,eissn_not_in_doaj, | ||
7,pissn_in_doaj,pissn_not_in_doaj, | ||
8,pissn_in_doaj,!pissn_in_doaj, | ||
9,eissn_not_in_doaj,eissn_in_doaj, | ||
10,eissn_not_in_doaj,pissn_in_doaj, | ||
11,eissn_not_in_doaj,pissn_not_in_doaj, | ||
12,eissn_not_in_doaj,!eissn_not_in_doaj, | ||
13,pissn_not_in_doaj,eissn_in_doaj, | ||
14,pissn_not_in_doaj,pissn_in_doaj, | ||
15,pissn_not_in_doaj,eissn_not_in_doaj, | ||
16,pissn_not_in_doaj,!pissn_not_in_doaj, |
19 changes: 19 additions & 0 deletions
19
doajtest/matrices/article_create_article/issn_validation_against_journal.settings.csv
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,19 @@ | ||
field,test_id,eissn,pissn,validated | ||
type,index,generated,generated,conditional | ||
deafult,,,,no | ||
,,,, | ||
values,,eissn_in_doaj,eissn_in_doaj,yes | ||
values,,pissn_in_doaj,pissn_in_doaj,no | ||
values,,eissn_not_in_doaj,eissn_not_in_doaj, | ||
values,,pissn_not_in_doaj,pissn_not_in_doaj, | ||
,,,, | ||
,,,, | ||
conditional validated,,eissn_in_doaj,pissn_in_doaj,yes | ||
constraint eissn,,eissn_in_doaj,!eissn_in_doaj, | ||
constraint eissn,,eissn_not_in_doaj,!eissn_not_in_doaj, | ||
constraint eissn,,pissn_not_in_doaj,!pissn_not_in_doaj, | ||
constraint eissn,,pissn_in_doaj,!pissn_in_doaj, | ||
constraint pissn,,eissn_in_doaj,!eissn_in_doaj, | ||
constraint pissn,,eissn_not_in_doaj,!eissn_not_in_doaj, | ||
constraint pissn,,pissn_not_in_doaj,!pissn_not_in_doaj, | ||
constraint pissn,,pissn_in_doaj,!pissn_in_doaj, |
Oops, something went wrong.