Skip to content

Commit

Permalink
minor css fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kawshar committed Jan 6, 2022
1 parent 7c70b7b commit e4b01f3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
12 changes: 6 additions & 6 deletions templates/shaper_helix3/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -2812,15 +2812,15 @@ table.category tbody > tr td {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.radio,
.checkbox {
.radio:not(.btn-group),
.checkbox:not(.btn-group) {
display: inline-block;
margin: 0 16px 16px 0px;
}
.radio input[type="radio"],
.radio input[type="checkbox"],
.checkbox input[type="radio"],
.checkbox input[type="checkbox"] {
.radio:not(.btn-group) input[type="radio"],
.radio:not(.btn-group) input[type="checkbox"],
.checkbox:not(.btn-group) input[type="radio"],
.checkbox:not(.btn-group) input[type="checkbox"] {
margin-top: 2px;
margin-right: 8px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<?php endif; ?>
<?php else : ?>
<?php if ($useDefList) : ?>
<div id="pop-print" class="btn hidden-print">
<div id="pop-print" class="d-print-none">
<?php echo JHtml::_('icon.print_screen', $this->item, $params); ?>
</div>
<?php endif; ?>
Expand Down
16 changes: 9 additions & 7 deletions templates/shaper_helix3/less/legacy.less
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,15 @@
// checkbox & radio
.radio,
.checkbox {
display: inline-block;
margin: 0 16px 16px 0px;

input[type="radio"],
input[type="checkbox"] {
margin-top: 2px;
margin-right: 8px;
&:not(.btn-group) {
display: inline-block;
margin: 0 16px 16px 0px;

input[type="radio"],
input[type="checkbox"] {
margin-top: 2px;
margin-right: 8px;
}
}
}

Expand Down

0 comments on commit e4b01f3

Please sign in to comment.