-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 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,18 @@ | ||
/* For learning assets from dart.harvard.edu that are | ||
embedded in Canvas modules, ensure that the height | ||
of the iframe is never smaller than the maximum | ||
height of the iframe source content. | ||
This code prevents an additional scrollbar from being | ||
created when Canvas renders a ExternalURL iframe | ||
with a height smaller than 800px. | ||
For questions about this code, please contact the | ||
VPAL Services Team: | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
*/ | ||
iframe#file_content[src*="dart.harvard.edu"] { | ||
min-height: 800px; | ||
} |