mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 17:49:27 +02:00
Increase size of url input boxes
This commit is contained in:
parent
92fc08fa70
commit
fbdc509428
2 changed files with 8 additions and 4 deletions
|
@ -618,7 +618,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td class="label">Script URL</td>
|
<td class="label">Script URL</td>
|
||||||
<td>
|
<td>
|
||||||
<input id="property-script-url"></input>
|
<input id="property-script-url" class="url"></input>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
@ -637,13 +637,13 @@
|
||||||
<tr class="model-section">
|
<tr class="model-section">
|
||||||
<td class="label">Model URL</td>
|
<td class="label">Model URL</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" id="property-model-url"></input>
|
<input type="text" id="property-model-url" class="url"></input>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="model-section">
|
<tr class="model-section">
|
||||||
<td class="label">Animation URL</td>
|
<td class="label">Animation URL</td>
|
||||||
<td>
|
<td>
|
||||||
<input type="text" id="property-model-animation-url"></input>
|
<input type="text" id="property-model-animation-url" class="url"></input>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="model-section">
|
<tr class="model-section">
|
||||||
|
|
|
@ -96,6 +96,10 @@ input {
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input.url {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
table#entity-table {
|
table#entity-table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
font-family: Sans-Serif;
|
font-family: Sans-Serif;
|
||||||
|
@ -171,7 +175,7 @@ table#properties-table {
|
||||||
}
|
}
|
||||||
|
|
||||||
#properties-table td {
|
#properties-table td {
|
||||||
padding: 5px 0px 5px 10px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
col#col-label {
|
col#col-label {
|
||||||
|
|
Loading…
Reference in a new issue