Skip to content

Commit e4b01f3

Browse files
committed
minor css fix
1 parent 7c70b7b commit e4b01f3

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
lines changed

templates/shaper_helix3/css/template.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2812,15 +2812,15 @@ table.category tbody > tr td {
28122812
border-top-right-radius: 0;
28132813
border-bottom-right-radius: 0;
28142814
}
2815-
.radio,
2816-
.checkbox {
2815+
.radio:not(.btn-group),
2816+
.checkbox:not(.btn-group) {
28172817
display: inline-block;
28182818
margin: 0 16px 16px 0px;
28192819
}
2820-
.radio input[type="radio"],
2821-
.radio input[type="checkbox"],
2822-
.checkbox input[type="radio"],
2823-
.checkbox input[type="checkbox"] {
2820+
.radio:not(.btn-group) input[type="radio"],
2821+
.radio:not(.btn-group) input[type="checkbox"],
2822+
.checkbox:not(.btn-group) input[type="radio"],
2823+
.checkbox:not(.btn-group) input[type="checkbox"] {
28242824
margin-top: 2px;
28252825
margin-right: 8px;
28262826
}

templates/shaper_helix3/html/com_content/article/default.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<?php endif; ?>
112112
<?php else : ?>
113113
<?php if ($useDefList) : ?>
114-
<div id="pop-print" class="btn hidden-print">
114+
<div id="pop-print" class="d-print-none">
115115
<?php echo JHtml::_('icon.print_screen', $this->item, $params); ?>
116116
</div>
117117
<?php endif; ?>

templates/shaper_helix3/less/legacy.less

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,15 @@
144144
// checkbox & radio
145145
.radio,
146146
.checkbox {
147-
display: inline-block;
148-
margin: 0 16px 16px 0px;
149-
150-
input[type="radio"],
151-
input[type="checkbox"] {
152-
margin-top: 2px;
153-
margin-right: 8px;
147+
&:not(.btn-group) {
148+
display: inline-block;
149+
margin: 0 16px 16px 0px;
150+
151+
input[type="radio"],
152+
input[type="checkbox"] {
153+
margin-top: 2px;
154+
margin-right: 8px;
155+
}
154156
}
155157
}
156158

0 commit comments

Comments
 (0)