mirror of
https://github.com/kenzok8/small-package
synced 2025-09-20 19:11:30 +08:00
update-12.06
This commit is contained in:
@ -5,10 +5,10 @@
|
|||||||
var tb = document.getElementById('mosdns_status');
|
var tb = document.getElementById('mosdns_status');
|
||||||
if (data && tb) {
|
if (data && tb) {
|
||||||
if (data.running) {
|
if (data.running) {
|
||||||
var links = '<em><b><font color=green>MosDNS <%:RUNNING%></font></b></em>';
|
var links = '<em><b style=color:green>MosDNS <%:RUNNING%></b></em>';
|
||||||
tb.innerHTML = links;
|
tb.innerHTML = links;
|
||||||
} else {
|
} else {
|
||||||
tb.innerHTML = '<em><b><font color=red>MosDNS <%:NOT RUNNING%></font></b></em>';
|
tb.innerHTML = '<em><b style=color:red>MosDNS <%:NOT RUNNING%></b></em>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,29 +4,23 @@ local dsp = require "luci.dispatcher"
|
|||||||
-%>
|
-%>
|
||||||
|
|
||||||
#display{
|
#display{
|
||||||
padding: 10px;
|
display: flex;
|
||||||
display: -webkit-box;
|
flex-direction: row;
|
||||||
-webkit-box-orient: horizontal;
|
flex-wrap: wrap;
|
||||||
-webkit-box-pack: center;
|
padding: 20px;
|
||||||
-webkit-box-align: center;
|
}
|
||||||
display: -moz-box;
|
#main{
|
||||||
-moz-box-orient: horizontal;
|
min-width: 600px;
|
||||||
-moz-box-pack: center;
|
height: 300px;
|
||||||
-moz-box-align: center;
|
display: inline-block;
|
||||||
display: -o-box;
|
flex: 2 2 10%;
|
||||||
-o-box-orient: horizontal;
|
}
|
||||||
-o-box-pack: center;
|
#main2{
|
||||||
-o-box-align: center;
|
min-width: 600px;
|
||||||
display: -ms-box;
|
height: 300px;
|
||||||
-ms-box-orient: horizontal;
|
display: inline-block;
|
||||||
-ms-box-pack: center;
|
flex: 2 2 10%;
|
||||||
-ms-box-align: center;
|
|
||||||
display: box;
|
|
||||||
box-orient: horizontal;
|
|
||||||
box-pack: center;
|
|
||||||
box-align: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
table.imagetable {
|
table.imagetable {
|
||||||
font-family: verdana,arial,sans-serif;
|
font-family: verdana,arial,sans-serif;
|
||||||
font-size:11px;
|
font-size:11px;
|
||||||
@ -357,8 +351,8 @@ table.imagetable td {
|
|||||||
|
|
||||||
<div class="cbi-section cbi-tblsection">
|
<div class="cbi-section cbi-tblsection">
|
||||||
<div id="display">
|
<div id="display">
|
||||||
<div id="main" style="min-width: 600px;height:300px;"></div>
|
<div id="main" class="main left"></div>
|
||||||
<div id="main2" style="min-width: 600px;height:300px;"></div>
|
<div id="main2" class="main2 left"></div>
|
||||||
</div>
|
</div>
|
||||||
<table class="table cbi-section-table" id="user_status_table">
|
<table class="table cbi-section-table" id="user_status_table">
|
||||||
<tr class="tr table-titles">
|
<tr class="tr table-titles">
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=v2ray-core
|
PKG_NAME:=v2ray-core
|
||||||
PKG_VERSION:=4.43.0
|
PKG_VERSION:=4.44.0
|
||||||
PKG_RELEASE:=$(AUTORELEASE)
|
PKG_RELEASE:=$(AUTORELEASE)
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
Reference in New Issue
Block a user