luci-0.10: merge r8125

This commit is contained in:
Jo-Philipp Wich 2011-12-20 18:33:17 +00:00
parent 71e73497ba
commit 2f6a862dc0
2 changed files with 10 additions and 2 deletions

View file

@ -38,7 +38,7 @@ function action_restart()
local service
local services = { }
for service in luci.dispatcher.context.requestpath[3]:gmatch("%w+") do
for service in luci.dispatcher.context.requestpath[3]:gmatch("[%w_-]+") do
services[#services+1] = service
end

View file

@ -720,6 +720,10 @@ td.cbi-value-error {
padding: 3px;
}
.cbi-value-field var {
color: #2222FF;
}
ul.cbi-tabmenu {
padding: 3px 0;
margin-left: 0 !important;
@ -772,8 +776,12 @@ div.cbi-tab-descr {
padding: 0.5em 0.5em 0.5em 2em;
}
.left {
text-align: left !important;
}
.right {
text-align: right;
text-align: right !important;
}
.luci {