-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat! Dropping Sass support from builtin LTI block (#35769)
feat!: Dropping Sass support from builtin LTI block Co-authored by @ttqureshi
- Loading branch information
Showing
4 changed files
with
64 additions
and
70 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700"); | ||
|
||
.xmodule_display.xmodule_LTIBlock { | ||
/* stylelint-disable-line */ | ||
/* stylelint-disable-line */ | ||
/* stylelint-disable-line */ | ||
/* stylelint-disable-line */ | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock h2.problem-header { | ||
display: inline-block; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.problem-progress { | ||
display: inline-block; | ||
padding-left: calc((var(--baseline)/4)); | ||
color: #666; | ||
font-weight: 100; | ||
font-size: 1em; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti { | ||
margin: 0 auto; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti .wrapper-lti-link { | ||
font-size: 14px; | ||
background-color: var(--sidebar-color); | ||
padding: var(--baseline); | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti .wrapper-lti-link .lti-link { | ||
margin-bottom: 0; | ||
text-align: right; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti .wrapper-lti-link .lti-link .link_lti_new_window { | ||
font-size: 13px; | ||
line-height: 20.72px; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti form.ltiLaunchForm { | ||
display: none; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti iframe.ltiLaunchFrame { | ||
width: 100%; | ||
height: 800px; | ||
display: block; | ||
border: 0px; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti h4.problem-feedback-label { | ||
font-weight: 100; | ||
font-size: 1em; | ||
font-family: "Source Sans", "Open Sans", Verdana, Geneva, sans-serif, sans-serif; | ||
} | ||
|
||
.xmodule_display.xmodule_LTIBlock div.lti div.problem-feedback { | ||
margin-top: calc((var(--baseline)/4)); | ||
margin-bottom: calc((var(--baseline)/4)); | ||
} |