CSS: Define responsive breakpoints, add to Access Controls, Bridges, Call Block, Buttons class.

This commit is contained in:
Nate
2019-10-19 20:29:44 -06:00
parent e29c4df126
commit a413f35f70
5 changed files with 53 additions and 14 deletions

View File

@@ -58,7 +58,7 @@ if (!class_exists('button')) {
!$array['icon'] ||
$array['class'] == 'link'
)) {
$hide_class = $array['icon'] && $button_icons != 'always' && $button_icons != 'never' ? 'hide-sm' : null;
$hide_class = $array['icon'] && $button_icons != 'always' && $button_icons != 'never' ? 'hide-md-dn' : null;
$pad_class = $array['icon'] ? 'pad' : null;
$button .= "<span class='button-label ".$hide_class." ".$pad_class."'>".$array['label']."</span>";
}