Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing blue text and gaps in rhn/users/CreateUser #9393

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 2 additions & 6 deletions java/code/webapp/WEB-INF/pages/user/create/usercreate.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,6 @@ function toggleAsterisk() {
checked="checked"
</c:if>/>
<c:out value="${defaultLocale.localizedName}" />
<br />
<br />
</div>
</div>
<c:forEach var="item" items="${supportedLocales}">
Expand All @@ -176,7 +174,7 @@ function toggleAsterisk() {
<c:if test="${item.key == currentLocale}">
checked="checked"
</c:if>/>
<span class="text-info"><strong><c:out value="${item.value.localizedName}" /></strong></span>
<span><strong><c:out value="${item.value.localizedName}" /></strong></span>
</div>
<c:if test="${counter == 1}">
</div>
Expand Down Expand Up @@ -210,8 +208,6 @@ function toggleAsterisk() {
</c:if>/>
<c:out value="${defaultDocsLocale.localizedName}" />
</div>
</br>
</br>
</div>
<c:set var="counter" value="0"/>
<c:forEach var="item" items="${supportedDocsLocales}">
Expand All @@ -223,7 +219,7 @@ function toggleAsterisk() {
<c:if test="${item.key == currentDocsLocale}">
checked="checked"
</c:if>/>
<span class="text-info"><strong><c:out value="${item.value.localizedName}" /></strong></span>
<span><strong><c:out value="${item.value.localizedName}" /></strong></span>
</div>
<c:if test="${counter == 1}">
</div>
Expand Down