1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

Issue #2970 Bootstrap 3 pull-left/right combined with Bootstrap 4 float-left/right. News Email/Print icon default styles added.

This commit is contained in:
Cameron
2019-06-17 12:27:53 -07:00
parent d318b7a8fc
commit 26ff074ee5
28 changed files with 68 additions and 149 deletions

View File

@@ -163,7 +163,7 @@ if (CB_MOD) {
$text =
"<form method='post' action='" . e_SELF . "'>"
. $text .
"<input type='submit' class='btn btn-danger btn-secondary button pull-right' name='moderate' value='" . CHATBOX_L13 . "' />
"<input type='submit' class='btn btn-danger btn-secondary button float-right pull-right' name='moderate' value='" . CHATBOX_L13 . "' />
</form>";
}

View File

@@ -45,11 +45,11 @@ $CHATBOX_MENU_TEMPLATE['list']['item'] = '
</div>
<div class="media-body">
<h4 class="media-heading" style="display: inline !important;">{CB_USERNAME}</h4>
<small class="label label-default pull-right">{CB_TIMEDATE}</small><br>
<small class="label label-default pull-right float-right">{CB_TIMEDATE}</small><br>
<p>{CB_MESSAGE}</p>
<div>
<div class="pull-left">{CB_BLOCKED}</div>
<div class="pull-right">{CB_MOD}</div>
<div class="pull-left float-left">{CB_BLOCKED}</div>
<div class="pull-right float-right">{CB_MOD}</div>
</div>
</div>
</li>'. PHP_EOL;