Commit c37a8a02 by Scott

Convert some files to tab indentation

parent ad9db8be
...@@ -110,7 +110,7 @@ form, fieldset { ...@@ -110,7 +110,7 @@ form, fieldset {
} }
input[type="text"].qa-search-field { input[type="text"].qa-search-field {
padding: 4px 5px; padding: 4px 5px;
} }
input[type="text"], input[type="password"], textarea, select, checkbox, radio { input[type="text"], input[type="password"], textarea, select, checkbox, radio {
...@@ -221,7 +221,7 @@ img { ...@@ -221,7 +221,7 @@ img {
} }
.qa-q-view-follows-link { .qa-q-view-follows-link {
color: #3B5998 !important; color: #3B5998 !important;
} }
p { p {
...@@ -2008,7 +2008,7 @@ a.qa-browse-cat-link:visited { ...@@ -2008,7 +2008,7 @@ a.qa-browse-cat-link:visited {
opacity: 0.5px; opacity: 0.5px;
} }
/* Answer view */ /* Answer view */
.qa-a-list-item { .qa-a-list-item {
background: #fff; background: #fff;
zoom: 1; zoom: 1;
......
<?php <?php
/* /*
Snow Theme for Question2Answer Package Snow Theme for Question2Answer Package
Copyright (C) 2014 Q2A Market <http://www.q2amarket.com> Copyright (C) 2014 Q2A Market <http://www.q2amarket.com>
File: qa-theme.php File: qa-theme.php
Version: Snow 1.4 Version: Snow 1.4
Description: Q2A theme class Description: Q2A theme class
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
This program is distributed in the hope that it will be useful, This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
/** /**
...@@ -268,9 +265,9 @@ class qa_html_theme extends qa_html_theme_base ...@@ -268,9 +265,9 @@ class qa_html_theme extends qa_html_theme_base
} }
// search and replace within the string // search and replace within the string
$search = array(' - <', '> - '); $search = array(' - <', '> - ');
$replace = array(' <', '> '); $replace = array(' <', '> ');
$output = $this->output('<span class="qa-' . $class . '-note ' . $qam_note_class . '">' . str_replace($search, $replace, $navlink['note']) . '</span>'); $output = $this->output('<span class="qa-' . $class . '-note ' . $qam_note_class . '">' . str_replace($search, $replace, $navlink['note']) . '</span>');
} }
} }
...@@ -336,18 +333,10 @@ class qa_html_theme extends qa_html_theme_base ...@@ -336,18 +333,10 @@ class qa_html_theme extends qa_html_theme_base
$this->output($qam_snow->footer_custom_content); $this->output($qam_snow->footer_custom_content);
$this->output('<div class="qam-footer-box">'); $this->output('<div class="qam-footer-box">');
// footer columns
// $this->output($qam_snow->footers['footer_columns']);
$this->output('<div class="qam-footer-row">'); $this->output('<div class="qam-footer-row">');
$this->widgets('full', 'bottom'); $this->widgets('full', 'bottom');
// for ($i = 0; $i < 4; $i++)
// $this->output('<div class="qam-footer-col">' . $i . '</div>');
$this->output('</div> <!-- END qam-footer-row -->'); $this->output('</div> <!-- END qam-footer-row -->');
// key to icons in footer
// $this->output($this->icons_info());
qa_html_theme_base::footer(); qa_html_theme_base::footer();
$this->output('</div> <!-- END qam-footer-box -->', ''); $this->output('</div> <!-- END qam-footer-box -->', '');
} }
......
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