Skip to content

Commit

Permalink
Force block display for form-rows for now, instead of using flex
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Apr 4, 2018
1 parent 712fb6b commit 1aa5f67
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
1 change: 1 addition & 0 deletions client/galaxy/style/scss/base.scss
Expand Up @@ -723,6 +723,7 @@ textarea {
// -webkit-box-sizing: border-box;
max-width: 90%;
}
display: block;
}

textarea,
Expand Down
14 changes: 8 additions & 6 deletions static/style/blue/base.css
Expand Up @@ -12697,12 +12697,14 @@ input,
textarea {
font: inherit; }

.form-row select,
.form-row textarea,
.form-row input[type="text"],
.form-row input[type="file"],
.form-row input[type="password"] {
max-width: 90%; }
.form-row {
display: block; }
.form-row select,
.form-row textarea,
.form-row input[type="text"],
.form-row input[type="file"],
.form-row input[type="password"] {
max-width: 90%; }

textarea,
input[type="text"],
Expand Down
4 changes: 2 additions & 2 deletions templates/user/login.mako
Expand Up @@ -80,12 +80,12 @@ def inherit(context):
<div class="toolFormTitle">Login</div>
<form name="login" id="login" action="${form_action}" method="post" >
<input type="hidden" name="session_csrf_token" value="${trans.session_csrf_token}" />
<div class="form-row flex-column">
<div class="form-row">
<label>Username / Email Address:</label>
<input type="text" name="login" value="${login or ''| h}" size="40"/>
<input type="hidden" name="redirect" value="${redirect | h}" size="40"/>
</div>
<div class="form-row flex-column">
<div class="form-row">
<label>Password:</label>
<input type="password" name="password" value="" size="40"/>
<div class="toolParamHelp" style="clear: both;">
Expand Down

0 comments on commit 1aa5f67

Please sign in to comment.