-
Notifications
You must be signed in to change notification settings - Fork 733
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renderers at full-height across the board, misc ui fixes
EPUB - 1px tokens.fineLine border - full height on all screens (minus padding per specs) PDF - Automatically scales the page back the larger the screen per our responsive screen mixin sizes. This is done by applying a multiplier to the denominator of the math establishing the initial width. We divide an HTML elements width by the width of the first page - and now we make the width higher by 1x on small, 1.25x on large and 1.125x for in between, effectively zooming out of the page when it loads so that the user sees more page content at a normal size (or closer to it) than before. EXERCISES - Removed gold star & checkmark from LessonMasteryBar - Applied 1px tokens.fineLine to LearningActivityBar in place of the normal drop shadow - only on exercises. This gives the two top bar appearance a more unified look as if there are two sections of one overall top bar. - Max width of 1200px applied to the content window, left aligned (right in RTL). HTML5 - Takes up full height and width of the available screen, permits scrolling for tall content (ie, Flexbook) so that it looks and feels natural. - This was done by removing all of the watchers/activity around Hashi watching for resizing.
- Loading branch information
1 parent
9ff6889
commit df2b810
Showing
10 changed files
with
39 additions
and
87 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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
} | ||
.ui-toolbar { | ||
padding: 0 16px 0 30px; | ||
padding: 0 32px; | ||
} | ||
</style> |
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
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 |
---|---|---|
|
@@ -686,6 +686,8 @@ | |
} | ||
.framework-perseus { | ||
max-width: 1200px; | ||
padding-bottom: 104px; | ||
margin: 32px 24px 0; | ||
} | ||
|
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