Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/LimeSurvey/LimeSurvey
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Jun 14, 2016
2 parents 85b2b6a + b30f509 commit 86a9f35
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions templates/news_paper/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<filename>css/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css</filename>
<filename>css/news_paper.css</filename>
<filename>css/template.css</filename>
<filename>css/template-news-paper.css</filename>
</css>
<js>
<filename>scripts/template.js</filename>
Expand Down
23 changes: 23 additions & 0 deletions templates/news_paper/css/template-news-paper.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**
* Specific configuration for New Paper template
*
* It's the very last file to be loaded.
* N.B for internal team: this file will not be RTL. Any defintion specific to left/right positionning should be placed on template.css
*/

.answer-container,.question-help-container {
border: none;
}

.radio label::after {
background-color: #3a87ad;
}


.checkbox label::after {
color: #3a87ad;
}

.question-text{
color: #777777;
}
1 change: 1 addition & 0 deletions templates/ubuntu_orange/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<filename>css/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css</filename>
<filename>css/ubuntu_orange.css</filename>
<filename>css/template.css</filename>
<filename>css/template-ubuntu-orange.css</filename>
</css>
<js>
<filename>scripts/template.js</filename>
Expand Down
24 changes: 24 additions & 0 deletions templates/ubuntu_orange/css/template-ubuntu-orange.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* Specific configuration for Ubuntu Orange template
*
* It's the very last file to be loaded.
* N.B for internal team: this file will not be RTL. Any defintion specific to left/right positionning should be placed on template.css
*/

.answer-container,.question-help-container {
border: none;
}

.radio label::after {
background-color: #dd4814;
}


.checkbox label::after {
color: #dd4814;
}

.question-text{
color: #333333;
font-size: 18px;
}

0 comments on commit 86a9f35

Please sign in to comment.