Added transparent background-color to title and description fields on intro-page
parent
ef5670c5c4
commit
9179f6209a
|
@ -65,9 +65,25 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
.intro-page .title > span {
|
||||||
|
padding: 0 0.2em;
|
||||||
|
background: rgb(255,255,255); /* Fallback for browsers not supporting rgba */
|
||||||
|
background: rgba(255,255,255,0.8); /* Gives WCAG contrast ratio of 5.6:1 with the current font color */
|
||||||
|
}
|
||||||
.intro-page .introduction {
|
.intro-page .introduction {
|
||||||
font-size: 1.25em;
|
font-size: 1.25em;
|
||||||
margin: 0 1em;
|
margin: 0 1em;
|
||||||
|
background: rgb(255,255,255); /* Fallback for browsers not supporting rgba */
|
||||||
|
background: rgba(255,255,255,0.8); /* Gives WCAG contrast ratio of 5.6:1 with the current font color */
|
||||||
|
padding: 0.2em;
|
||||||
|
}
|
||||||
|
/* Overrides whatever margins have been set in site-CSS, to avoid too much spacing
|
||||||
|
on description field, aswell as getting same padding on top and bottom of field */
|
||||||
|
.intro-page .introduction > p {
|
||||||
|
margin: 0 0 0.5em 0;
|
||||||
|
}
|
||||||
|
.intro-page .introduction > p:last-child {
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
.intro-page .buttons {
|
.intro-page .buttons {
|
||||||
margin: 3em auto;
|
margin: 3em auto;
|
||||||
|
|
|
@ -39,7 +39,7 @@ H5P.QuestionSet = function (options, contentId) {
|
||||||
var texttemplate =
|
var texttemplate =
|
||||||
'<% if (introPage.showIntroPage) { %>' +
|
'<% if (introPage.showIntroPage) { %>' +
|
||||||
'<div class="intro-page">' +
|
'<div class="intro-page">' +
|
||||||
' <div class="title"><%= introPage.title %></div>' +
|
' <div class="title"><span><%= introPage.title %></span></div>' +
|
||||||
' <div class="introduction"><%= introPage.introduction %></div>' +
|
' <div class="introduction"><%= introPage.introduction %></div>' +
|
||||||
' <div class="buttons"><a class="qs-startbutton button"><%= introPage.startButtonText %></a></div>' +
|
' <div class="buttons"><a class="qs-startbutton button"><%= introPage.startButtonText %></a></div>' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"contentType": "question",
|
"contentType": "question",
|
||||||
"majorVersion": 1,
|
"majorVersion": 1,
|
||||||
"minorVersion": 0,
|
"minorVersion": 0,
|
||||||
"patchVersion": 44,
|
"patchVersion": 45,
|
||||||
"runnable": 1,
|
"runnable": 1,
|
||||||
"fullscreen": 0,
|
"fullscreen": 0,
|
||||||
"machineName": "H5P.QuestionSet",
|
"machineName": "H5P.QuestionSet",
|
||||||
|
|
Loading…
Reference in New Issue