1
0
mirror of synced 2024-12-18 09:15:54 +01:00

Fix spacing on rivals searches.

This commit is contained in:
Jennifer Taylor 2022-10-08 22:30:40 +00:00
parent a9dcabf061
commit ecd0b63971
8 changed files with 16 additions and 8 deletions

View File

@ -196,7 +196,7 @@ var rivals_view = createReactClass({
}.bind(this))} }.bind(this))}
</div> </div>
<div className="section"> <div className="section">
<form onSubmit={this.searchForPlayers}> <form onSubmit={this.searchForPlayers} className="padded">
<label for="search">Name or DDR ID:</label> <label for="search">Name or DDR ID:</label>
<br /> <br />
<input <input

View File

@ -171,7 +171,7 @@ var rivals_view = createReactClass({
}.bind(this))} }.bind(this))}
</div> </div>
<div className="section"> <div className="section">
<form onSubmit={this.searchForPlayers}> <form onSubmit={this.searchForPlayers} className="padded">
<label for="search">DJ Name or IIDX ID:</label> <label for="search">DJ Name or IIDX ID:</label>
<br /> <br />
<input <input

View File

@ -155,7 +155,7 @@ var rivals_view = createReactClass({
}.bind(this))} }.bind(this))}
</div> </div>
<div className="section"> <div className="section">
<form onSubmit={this.searchForPlayers}> <form onSubmit={this.searchForPlayers} className="padded">
<label for="search">Name or Jubeat ID:</label> <label for="search">Name or Jubeat ID:</label>
<br /> <br />
<input <input

View File

@ -175,7 +175,7 @@ var rivals_view = createReactClass({
}.bind(this))} }.bind(this))}
</div> </div>
<div className="section"> <div className="section">
<form onSubmit={this.searchForPlayersName}> <form onSubmit={this.searchForPlayersName} className="padded">
<label for="search">Name:</label> <label for="search">Name:</label>
<br /> <br />
<input <input
@ -229,7 +229,7 @@ var rivals_view = createReactClass({
null null
} }
</form> </form>
<form onSubmit={this.searchForPlayersID}> <form onSubmit={this.searchForPlayersID} className="padded">
<label for="search">Pop'n Music ID:</label> <label for="search">Pop'n Music ID:</label>
<br /> <br />
<input <input

View File

@ -175,7 +175,7 @@ var rivals_view = createReactClass({
}.bind(this))} }.bind(this))}
</div> </div>
<div className="section"> <div className="section">
<form onSubmit={this.searchForPlayersName}> <form onSubmit={this.searchForPlayersName} className="padded">
<label for="search">Name:</label> <label for="search">Name:</label>
<br /> <br />
<input <input
@ -277,7 +277,7 @@ var rivals_view = createReactClass({
null null
} }
</form> </form>
<form onSubmit={this.searchForPlayersID}> <form onSubmit={this.searchForPlayersID} className="padded">
<label for="search">Reflec Beat ID:</label> <label for="search">Reflec Beat ID:</label>
<br /> <br />
<input <input

View File

@ -155,7 +155,7 @@ var rivals_view = createReactClass({
}.bind(this))} }.bind(this))}
</div> </div>
<div className="section"> <div className="section">
<form onSubmit={this.searchForPlayers}> <form onSubmit={this.searchForPlayers} className="padded">
<label for="search">Name or SDVX ID:</label> <label for="search">Name or SDVX ID:</label>
<br /> <br />
<input <input

View File

@ -14,6 +14,10 @@ form.inline div.row {
padding-bottom: 5px; padding-bottom: 5px;
} }
form.padded {
padding-bottom: 5px;
}
form.inline select { form.inline select {
vertical-align: bottom; vertical-align: bottom;
margin-right: 5px; margin-right: 5px;

View File

@ -14,6 +14,10 @@ form.inline div.row {
padding-bottom: 5px; padding-bottom: 5px;
} }
form.padded {
padding-bottom: 5px;
}
form.inline select { form.inline select {
vertical-align: bottom; vertical-align: bottom;
margin-right: 5px; margin-right: 5px;