This basically changes how the xmodule static files are generated and consumed in order to separate the Xblock styles from general style files. Includes: * build: decople XModule style assets by using a custom webpack loader * build: move scss imports to its specific file * build: fix: add system dirs to theme lookup paths. (fixes attempt 1) * build: fix: use bootstrap variables instead of lms variables (fixes attempt 2) This is an amendment to #32188, which itself was an amendment to #32018. Addressing the issue https://github.com/openedx/edx-platform/issues/31624
31 lines
438 B
SCSS
31 lines
438 B
SCSS
@import 'bourbon/bourbon';
|
|
@import 'lms/theme/variables';
|
|
@import 'bootstrap/scss/variables';
|
|
@import 'lms/theme/variables-v1';
|
|
|
|
.input-cloud {
|
|
margin: ($baseline/4);
|
|
}
|
|
|
|
.result_cloud_section {
|
|
display: none;
|
|
width: 0px;
|
|
height: 0px;
|
|
}
|
|
|
|
.result_cloud_section.active {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
margin-top: 1em;
|
|
|
|
h3 {
|
|
font-size: 100%;
|
|
}
|
|
}
|
|
|
|
.your_words{
|
|
font-size: 0.85em;
|
|
display: block;
|
|
}
|