luci-app-banip: fix remaining css issues
* fix IE Edge rendering issues * merge remaining external styles in central css Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
9f2c2e7218
commit
176a767279
2 changed files with 32 additions and 6 deletions
|
@ -1,6 +1,8 @@
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
textarea
|
textarea
|
||||||
{
|
{
|
||||||
|
width: 100%;
|
||||||
|
height: 450px;
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
@ -51,9 +53,25 @@
|
||||||
.cbi-section-table-row > .cbi-value-field [data-dynlist] > input,
|
.cbi-section-table-row > .cbi-value-field [data-dynlist] > input,
|
||||||
.table.cbi-section-table input[type="text"],
|
.table.cbi-section-table input[type="text"],
|
||||||
.cbi-dynlist > .item,
|
.cbi-dynlist > .item,
|
||||||
.table.cbi-section-table input
|
.table.cbi-section-table input,
|
||||||
|
.cbi-dynlist
|
||||||
{
|
{
|
||||||
|
display: inline-block;
|
||||||
width: 6em;
|
width: 6em;
|
||||||
|
margin: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.td.cbi-value-field .cbi-button
|
||||||
|
{
|
||||||
|
width: auto;
|
||||||
|
margin: 1px 0 1px -2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn,
|
||||||
|
.cbi-button,
|
||||||
|
.item::after
|
||||||
|
{
|
||||||
|
-webkit-appearance: menulist;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cbi-input-checkbox
|
.cbi-input-checkbox
|
||||||
|
@ -68,7 +86,7 @@
|
||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
width: 4em;
|
width: 6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.runtime
|
.runtime
|
||||||
|
@ -88,4 +106,12 @@
|
||||||
height: 20px;
|
height: 20px;
|
||||||
margin: 2px 2px;
|
margin: 2px 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button_running
|
||||||
|
{
|
||||||
|
display: inline-block;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
margin: 0 5px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -124,7 +124,7 @@ function btn_action(action)
|
||||||
<label class="cbi-value-title" for="button_1"><%:Refresh IPSets%></label>
|
<label class="cbi-value-title" for="button_1"><%:Refresh IPSets%></label>
|
||||||
<div class="cbi-value-field">
|
<div class="cbi-value-field">
|
||||||
<input class="cbi-button cbi-button-apply" id="btn1" type="button" name="do_refresh" value="<%:Refresh%>" onclick="btn_action(this)" />
|
<input class="cbi-button cbi-button-apply" id="btn1" type="button" name="do_refresh" value="<%:Refresh%>" onclick="btn_action(this)" />
|
||||||
<span id="btn1_running" style="display:inline-block; width:16px; height:16px; margin:0 5px"></span>
|
<span id="btn1_running" class="btn_running"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue