-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Armenian language scripts, fix textbox heading color …
…& clone attribution bugs (#696) * Add support for Armenian language scripts. * Make sure headings in textbox_header class receive header color value. * Place word 'by' inside of conditional statement for publisher clone attribution. * Add comment for translators
- Loading branch information
1 parent
e3c8785
commit f0518bf
Showing
6 changed files
with
51 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// 'Noto Sans Armenian', @import 'NotoSansArmenianFont' | ||
|
||
@font-face { | ||
font-family: 'Noto Sans Armenian'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('uploads/assets/fonts/NotoSansArmenian-Regular.ttf') format('truetype'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Noto Sans Armenian'; | ||
font-style: bold; | ||
font-weight: 700; | ||
src: url('uploads/assets/fonts/NotoSansArmenian-Bold.ttf') format('truetype'); | ||
} |
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,15 @@ | ||
// 'Noto Serif Armenian', @import 'NotoSerifArmenianFont' | ||
|
||
@font-face { | ||
font-family: 'Noto Serif Armenian'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url('uploads/assets/fonts/NotoSerifArmenian-Regular.ttf') format('truetype'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Noto Serif Armenian'; | ||
font-style: bold; | ||
font-weight: 700; | ||
src: url('uploads/assets/fonts/NotoSerifArmenian-Bold.ttf') format('truetype'); | ||
} |
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,13 @@ | ||
@import 'NotoSansArmenianFont', 'NotoSerifArmenianFont'; | ||
|
||
// Sans-serif stack name | ||
|
||
$sans-serif-epub-hy: 'Noto Sans Armenian'; | ||
$sans-serif-prince-hy: 'Noto Sans Armenian'; | ||
$sans-serif-web-hy: 'Noto Sans Armenian'; | ||
|
||
// Serif stack-name | ||
|
||
$serif-epub-hy: 'Noto Serif Armenian'; | ||
$serif-prince-hy: 'Noto Serif Armenian'; | ||
$serif-web-hy: 'Noto Serif Armenian'; |
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