mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 17:03:43 +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>
|
||||
<td class="label">Script URL</td>
|
||||
<td>
|
||||
<input id="property-script-url"></input>
|
||||
<input id="property-script-url" class="url"></input>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@ -637,13 +637,13 @@
|
|||
<tr class="model-section">
|
||||
<td class="label">Model URL</td>
|
||||
<td>
|
||||
<input type="text" id="property-model-url"></input>
|
||||
<input type="text" id="property-model-url" class="url"></input>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="model-section">
|
||||
<td class="label">Animation URL</td>
|
||||
<td>
|
||||
<input type="text" id="property-model-animation-url"></input>
|
||||
<input type="text" id="property-model-animation-url" class="url"></input>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="model-section">
|
||||
|
|
|
@ -96,6 +96,10 @@ input {
|
|||
background-color: #eee;
|
||||
}
|
||||
|
||||
input.url {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table#entity-table {
|
||||
border-collapse: collapse;
|
||||
font-family: Sans-Serif;
|
||||
|
@ -171,7 +175,7 @@ table#properties-table {
|
|||
}
|
||||
|
||||
#properties-table td {
|
||||
padding: 5px 0px 5px 10px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
col#col-label {
|
||||
|
|
Loading…
Reference in a new issue