Commit 5acc98da by Braden MacDonald

Re-Merge pull request #8 from open-craft/apros-fix

Fix invalid appearance in Apros due to their box-sizing global
parents 25873d32 615aadbb
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
font-family: arial; font-family: arial;
font-size: 14px; font-size: 14px;
opacity: 0.9; opacity: 0.9;
padding: 22px 10px; padding: 22px 10px 10px 10px;
width: 300px; width: 300px;
min-height: 40px; min-height: 40px;
z-index: 10000; z-index: 10000;
...@@ -78,10 +78,13 @@ ...@@ -78,10 +78,13 @@
display: table-cell; display: table-cell;
vertical-align: top; vertical-align: top;
width: 28px; width: 28px;
padding-top: 3px;
padding-right: 5px;
} }
.mentoring .choice-label { .mentoring .choice-label {
display: table-cell; display: table-cell;
vertical-align: top; vertical-align: top;
line-height: 1.3; line-height: 1.3;
padding-top: 4px;
} }
.mentoring .questionnaire .choice-tips,
.mentoring .questionnaire .feedback {
box-sizing: content-box; /* Avoid a global reset to border-box found on Apros */
}
.themed-xblock.mentoring .choices-list .choice-selector {
padding: 4px 3px 0 3px;
font-size: 16px;
}
...@@ -42,7 +42,6 @@ div.course-wrapper section.course-content .themed-xblock.mentoring p:empty { ...@@ -42,7 +42,6 @@ div.course-wrapper section.course-content .themed-xblock.mentoring p:empty {
vertical-align: middle; vertical-align: middle;
width: 100%; width: 100%;
padding-bottom: 10px; padding-bottom: 10px;
padding-top: 2px;
} }
.themed-xblock.mentoring .choice-label span.low { .themed-xblock.mentoring .choice-label span.low {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment