Skip to content

Commit

Permalink
Adding a span class to form field seperators
Browse files Browse the repository at this point in the history
  • Loading branch information
Raymond Benc committed Aug 18, 2015
1 parent 75a0df0 commit a99ec82
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion PF.Base/include/library/phpfox/template/cache.class.php
Expand Up @@ -1137,7 +1137,7 @@ private function _parseFunction($sFunction, $sModifiers, $sArguments)
$sYear .= '<?php endforeach; ?>';
$sYear .= "\t\t" . '</select>' . "\n";

$aSep = $this->_removeQuote($aArgs['field_separator']);
$aSep = '<span class="field_separator">' . $this->_removeQuote($aArgs['field_separator']) . '</span>';

$sReturn = '';
switch (Phpfox::getParam('core.date_field_order'))
Expand Down
4 changes: 4 additions & 0 deletions PF.Base/less/forms.less
Expand Up @@ -377,4 +377,8 @@ button {

.label_hover label:hover {
background:darken(@blockBg, 8%);
}

.field_separator {
display:none;
}
3 changes: 3 additions & 0 deletions PF.Base/theme/default/flavor/default.css
Expand Up @@ -2948,6 +2948,9 @@ button {
.label_hover label:hover {
background: #ebebeb;
}
.field_separator {
display: none;
}
#header_left {
width: auto;
}
Expand Down

0 comments on commit a99ec82

Please sign in to comment.