Skip to content

Commit

Permalink
Fixed issue #12858: Admin home page : 6 block width broken
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Nov 3, 2017
1 parent 6bcb05d commit e9e4135
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion application/extensions/PanelBoxWidget/PanelBoxWidget.php
Expand Up @@ -77,7 +77,7 @@ protected function renderBox()
'ico' => $this->ico,
'description' => $this->description,
'external' => $this->external,
'sizeClass' => "col-sm-".(12/$this->boxesbyrow)
'sizeClass' => "col-md-".(12/$this->boxesbyrow)." col-sm-".(floor(24/$this->boxesbyrow))
));
}
}
Expand Down
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
1 change: 0 additions & 1 deletion assets/styles-admin/Bay_of_Many/css/lime-admin-common.css
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
1 change: 0 additions & 1 deletion assets/styles-admin/Black_Pearl/css/lime-admin-common.css
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
1 change: 0 additions & 1 deletion assets/styles-admin/Dark_Sky/css/lime-admin-common.css
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
1 change: 0 additions & 1 deletion assets/styles-admin/Free_Magenta/css/lime-admin-common.css
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
1 change: 0 additions & 1 deletion assets/styles-admin/Sea_Green/css/lime-admin-common.css
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
Expand Up @@ -2218,7 +2218,6 @@ table#responsedetail tr td{

.welcome .panel {
height: 110%;
min-width: 200px;
}

.welcome .panel-body {
Expand Down
4 changes: 2 additions & 2 deletions templates/default/views/subviews/survey/question.twig
Expand Up @@ -91,10 +91,10 @@
{# The additional question help as entered by the survey creator in question editing #}
<!-- Survey question help -->
<div class="{{ aSurveyInfo.class.helpcontainer }} text-info col-xs-12 " {{ aSurveyInfo.attr.helpcontainer }}>
{% if aQuestion.help.show %}
{# {% if aQuestion.help.show %} #}
<div class="{{ aSurveyInfo.class.lsquestionhelp }}">
{{ aQuestion.help.text | raw }}
</div>
{% endif %}
{# {% endif %} #}
</div>
</div>

0 comments on commit e9e4135

Please sign in to comment.