Fix overflows through out the front end (#2382)
* Fix overflows through out the front end Fixed Server row overflow for servers name and description Fixed Sub-user overflow for users with oddly long emails.... Fixed Server new overflow on console view. See Attached images. * Remove conflicting server name limits
This commit is contained in:
parent
c75ed20b26
commit
c928214a83
5 changed files with 6 additions and 6 deletions
|
@ -32,7 +32,7 @@
|
|||
<div class="form-group">
|
||||
<label for="pName">Server Name</label>
|
||||
<input type="text" class="form-control" id="pName" name="name" value="{{ old('name') }}" placeholder="Server Name">
|
||||
<p class="small text-muted no-margin">Character limits: <code>a-z A-Z 0-9 _ - .</code> and <code>[Space]</code> (max 200 characters).</p>
|
||||
<p class="small text-muted no-margin">Character limits: <code>a-z A-Z 0-9 _ - .</code> and <code>[Space]</code>.</p>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<div class="form-group">
|
||||
<label for="name" class="control-label">Server Name <span class="field-required"></span></label>
|
||||
<input type="text" name="name" value="{{ old('name', $server->name) }}" class="form-control" />
|
||||
<p class="text-muted small">Character limits: <code>a-zA-Z0-9_-</code> and <code>[Space]</code> (max 35 characters).</p>
|
||||
<p class="text-muted small">Character limits: <code>a-zA-Z0-9_-</code> and <code>[Space]</code>.</p>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="external_id" class="control-label">External Identifier</label>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue