Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Oct 7, 2021
1 parent 2bd13ec commit ddd81ee
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
11 changes: 7 additions & 4 deletions core/src/main/resources/lib/form/radioBlock.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,19 @@ THE SOFTWARE.
<div class="radioBlock-container">
<div class="tr help-sibling radio-block-start row-group-start ${attrs.inline?'':'row-set-start'}" hasHelp="${attrs.help!=null}"><!-- this ID marks the beginning -->
<div colspan="3">
<label>
<div class="jenkins-radio">
<input type="radio"
id="${name}-${value}"
name="${name}"
value="${value}"
class="radio-block-control block-control"
class="jenkins-radio__input"
checked="${checked ? 'true' : null}"
disabled="${readOnlyMode ? 'true' : null}"
/>
${title}
</label>
<label class="jenkins-radio__label" for="${name}-${value}">
${title}
</label>
</div>
<f:helpLink url="${help}" featureName="${title}" />
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions war/src/main/less/base/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -1244,9 +1244,9 @@ div.to-be-removed { display: none; }
.optionalBlock-container > .form-container,
.radioBlock-container > .form-container,
.dropdownList-container {
margin-left: 0.25rem;
border-left: 2px dashed rgba(0, 0, 0, 0.33);
padding-left: 1rem;
margin-left: 10px;
border-left: 2px dashed var(--input-border);
padding-left: 20px;
}

.row-set-end { display: none; }
Expand Down

0 comments on commit ddd81ee

Please sign in to comment.