Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h2 class="ilHeader">{TXT_TITLE}</h2>
<!-- BEGIN prop -->
<!-- BEGIN std_prop_start -->
<div class="form-group row" id="il_prop_cont_{LAB_ID}">
<label {FOR_ID} class="col-lg-2 col-md-3 col-sm-4 control-label">{PROPERTY_TITLE}<!-- BEGIN std_hid_title --> <span class="ilAccHeadingHidden">{PHID_TITLE}</span><!-- END std_hid_title --><!-- BEGIN required --> <span class="asterisk">*</span><!-- END required --></label>
<label {FOR_ID} class="col-lg-2 col-md-3 col-sm-4 control-label">{PROPERTY_TITLE}<!-- BEGIN std_hid_title --> <span class="ilAccHeadingHidden">{PHID_TITLE}</span> <!-- END std_hid_title --><!-- BEGIN required --><span class="asterisk">*</span><!-- END required --></label>
<div class="col-lg-10 col-md-9 col-sm-8">
<!-- END std_prop_start -->
<!-- BEGIN sub_prop_start -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@
display: block;
grid-area: label;
padding-right: l.$il-margin-large-horizontal;

> .asterisk:first-child {
padding-left: $il-padding-base-vertical;
}
}

> .c-input__field {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $il-form-autocomplete-padding: $il-padding-xs-horizontal;
// --------------------------------------------------


// Normalize non-controls
// Normalize non-controlsHm
//
// Restyle and baseline non-control form elements.

Expand Down Expand Up @@ -519,6 +519,10 @@ input[type="checkbox"] {
&.col-sm-3.il_textarea {
width: 100%;
}

> .asterisk {
padding-left: $il-padding-base-vertical;
}
}
/*
// Reset spacing and right align labels, but scope to media queries so that
Expand Down
6 changes: 6 additions & 0 deletions templates/default/delos.css
Original file line number Diff line number Diff line change
Expand Up @@ -9244,6 +9244,9 @@ ul.c-input--has-mustache-variables__definitions > li {
grid-area: label;
padding-right: 12px;
}
.c-input[data-il-ui-component] > label > .asterisk:first-child {
padding-left: 3px;
}
.c-input[data-il-ui-component] > .c-input__field {
grid-area: field;
}
Expand Down Expand Up @@ -19253,6 +19256,9 @@ fieldset[disabled] .checkbox label {
.form-horizontal .control-label.col-sm-3.il_textarea {
width: 100%;
}
.form-horizontal .control-label > .asterisk {
padding-left: 3px;
}

.ilFormHeader {
padding: 12px 0 12px 15px;
Expand Down