1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 16:46:50 +02:00

Theme descriptions. Default content for landingzero and tooltips during install during theme selection.

This commit is contained in:
Cameron
2017-01-17 14:47:20 -08:00
parent 830814b5a1
commit 2348442068
4 changed files with 116 additions and 7 deletions

View File

@@ -1129,6 +1129,7 @@ class e_install
$title = vartrue($themeInfo['@attributes']['name']);
$category = vartrue($themeInfo['category']);
$preview = e_THEME.$val."/".$themeInfo['thumbnail'];
$description = vartrue($themeInfo['description']);
if(!is_readable($preview))
{
@@ -1142,7 +1143,7 @@ class e_install
$output .= "
<div class='col-md-6 theme-cell' >
<label class='theme-selection'><input type='radio' name='sitetheme' value='{$val}' required='required' $selected />
<label class='theme-selection' title=\"".$description."\"><input type='radio' name='sitetheme' value='{$val}' required='required' $selected />
<div>".$thumbnail."
<h5>".$title." <small>(".$category.")</small><span class='glyphicon glyphicon-ok text-success'></span></h5>
</div>
@@ -2104,6 +2105,7 @@ function template_data()
label.theme-selection > input:checked + div { border:2px solid #337ab7; }
label.theme-selection > input + div span { visibility: hidden; float:right; margin-right:10px; color:#337ab7 }
label.theme-selection > input:checked + div span { visibility: initial; }
div.tooltip { width:320px }