Skip to content

Commit

Permalink
Fixed #18918 Removed Asterisk sign.
Browse files Browse the repository at this point in the history
  • Loading branch information
suryakant-krish committed Nov 14, 2018
1 parent 7365f5f commit c870f0d
Showing 1 changed file with 15 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,7 @@
}

.abs-field-no-label {
/**
* @codingStandardsIgnoreStart
*/
#mix-grid .return_length(@field-label-grid__column, @field-grid__columns, '+');
//@codingStandardsIgnoreEnd
margin-left: @_length;
}

Expand Down Expand Up @@ -170,13 +166,6 @@
.admin__control-text,
.admin__control-textarea {
width: 100%;
&.disabled {
background-color: #e9e9e9;
border-color: #adadad;
color: #303030;
cursor: not-allowed;
opacity: .5;
}
}
}

Expand All @@ -194,13 +183,10 @@

.admin__field-label {
color: @field-label__color;
cursor: pointer;
margin: 0;
text-align: right;

label {
cursor: pointer;
}

+ br {
display: none;
}
Expand All @@ -221,7 +207,7 @@
overflow: hidden;
}

label {
span {
display: inline-block;
line-height: @field-label__line-height;
vertical-align: top;
Expand All @@ -239,7 +225,7 @@

.required > &, // ToDo UI: change classes 'required' to '_required'.
._required > & {
> label {
> span {
&:after {
color: @validation__color;
content: '*';
Expand All @@ -249,12 +235,9 @@
line-height: 1;
margin-left: 10px;
margin-top: .2rem;
position: inherit;
position: absolute;
z-index: 1;
margin-left: -10px;
right: -17px;
top: 3px;


}
}
}
Expand Down Expand Up @@ -300,6 +283,14 @@
opacity: 1;
}
}

legend.admin__field-label{
span {
&:after {
display: none;
}
}
}

// ToDo UI: Scope Labels must be moved from right side of each control to the place under the label of the control.
// This code must be removed after Scope Labels are moved completely.
Expand Down Expand Up @@ -530,7 +521,7 @@
position: absolute;
top: 0;

label {
span {
&:before {
display: block;
}
Expand All @@ -545,7 +536,7 @@
}

& > .admin__field-label {
label {
span {
&:before {
display: none;
}
Expand Down

0 comments on commit c870f0d

Please sign in to comment.