mirror of
https://github.com/kenzok8/small-package
synced 2025-09-20 19:11:30 +08:00
update 2023-03-12 23:35:24
This commit is contained in:
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for ChineseSubFinder
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-chinesesubfinder/conffiles
|
||||
/etc/config/chinesesubfinder
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for CodeServer
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-codeserver/conffiles
|
||||
/etc/config/codeserver
|
||||
|
@ -3,6 +3,7 @@ Design Theme Config Plugin
|
||||
|
||||
### Features
|
||||
- Support changing theme dark/light mode
|
||||
- Support display/hide navbar
|
||||
- Support for replacing commonly used proxy icons
|
||||
|
||||
### Compile
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for DrawIO
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd +luci-lib-docker +docker-compose
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd +luci-lib-docker +docker-compose
|
||||
|
||||
define Package/luci-app-drawio/conffiles
|
||||
/etc/config/drawio
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Emby
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-emby/conffiles
|
||||
/etc/config/emby
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Excalidraw
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd +luci-lib-docker +docker-compose
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd +luci-lib-docker +docker-compose
|
||||
|
||||
define Package/luci-app-excalidraw/conffiles
|
||||
/etc/config/excalidraw
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Emby
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-emby/conffiles
|
||||
/etc/config/emby
|
||||
|
@ -2,12 +2,12 @@
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_VERSION:=1.1.1-20230108
|
||||
PKG_VERSION:=1.1.2-20230312
|
||||
PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for homeassistant
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-homeassistant/conffiles
|
||||
/etc/config/homeassistant
|
||||
|
@ -22,8 +22,10 @@ o = s:option(Value, "image_name", translate("Image").."<b>*</b>")
|
||||
o.rmempty = false
|
||||
o.datatype = "string"
|
||||
o:value("homeassistant/home-assistant:latest", "homeassistant/home-assistant:latest")
|
||||
o:value("homeassistant/home-assistant:2023.3.3", "homeassistant/home-assistant:2023.3.3")
|
||||
o:value("homeassistant/home-assistant:dev", "homeassistant/home-assistant:dev")
|
||||
o:value("ghcr.io/home-assistant/home-assistant:stable", "ghcr.io/home-assistant/home-assistant:stable")
|
||||
o:value("ghcr.io/home-assistant/home-assistant:2022.11.4", "ghcr.io/home-assistant/home-assistant:2022.11.4")
|
||||
o:value("ghcr.io/home-assistant/home-assistant:2023.3.3", "ghcr.io/home-assistant/home-assistant:2023.3.3")
|
||||
o.default = "homeassistant/home-assistant:latest"
|
||||
|
||||
local blocks = homeassistant_model.blocks()
|
||||
|
@ -35,15 +35,19 @@ do_install() {
|
||||
|
||||
RET=$?
|
||||
if [ "$RET" = "0" ]; then
|
||||
echo "Wait 10 seconds for homeassistant boot..."
|
||||
sleep 10
|
||||
do_hacs_install
|
||||
fi
|
||||
}
|
||||
|
||||
do_hacs_install() {
|
||||
echo "wget -O - https://get.hacs.xyz | bash -" | docker exec -i homeassistant bash -
|
||||
echo "Install HACS"
|
||||
echo "rm -f custom_components/hacs.zip config/custom_components/hacs.zip ; wget -O - https://get.hacs.xyz | bash -" | docker exec -i homeassistant bash -
|
||||
sleep 3
|
||||
echo "restart homeassistant"
|
||||
docker restart homeassistant
|
||||
return 0
|
||||
}
|
||||
|
||||
usage() {
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for jackett
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-jackett/conffiles
|
||||
/etc/config/jackett
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for jellyfin
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-jellyfin/conffiles
|
||||
/etc/config/jellyfin
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for LANraragi
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-lanraragi/conffiles
|
||||
/etc/config/lanraragi
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Memos
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-memos/conffiles
|
||||
/etc/config/memos
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for nastools
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-nastools/conffiles
|
||||
/etc/config/nastools
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Navidrome
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-navidrome/conffiles
|
||||
/etc/config/navidrome
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for nextcloud
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-nextcloud/conffiles
|
||||
/etc/config/nextcloud
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Owntone
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-owntone/conffiles
|
||||
/etc/config/owntone
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Penpot
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd +docker-compose
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd +docker-compose
|
||||
|
||||
define Package/luci-app-penpot/conffiles
|
||||
/etc/config/penpot
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for PhotoPrism
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-photoprism/conffiles
|
||||
/etc/config/photoprism
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Plex
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd +luci-lib-docker
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd +luci-lib-docker
|
||||
|
||||
define Package/luci-app-plex/conffiles
|
||||
/etc/config/plex
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for SysTools
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-iform +luci-lib-taskd +speedtestcli
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-iform +luci-lib-taskd +speedtestcli
|
||||
LUCI_EXTRA_DEPENDS:=luci-lib-iform (>=1.1)
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
@ -20,5 +20,6 @@ chmod 755 /tmp/is-opkg
|
||||
/tmp/is-opkg update
|
||||
# /tmp/is-opkg install taskd
|
||||
/tmp/is-opkg opkg install --force-reinstall luci-lib-taskd luci-lib-xterm
|
||||
/tmp/is-opkg opkg install --force-reinstall luci-app-store
|
||||
/tmp/is-opkg opkg install --force-reinstall luci-app-store || exit $?
|
||||
[ -s "/etc/init.d/tasks" ] || /tmp/is-opkg opkg install --force-reinstall taskd
|
||||
[ -s "/usr/lib/lua/luci/cbi.lua" ] || /tmp/is-opkg opkg install luci-compat >/dev/null 2>&1
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for UnifiController
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-unifi/conffiles
|
||||
/etc/config/unifi
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Vaultwarden
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-vaultwarden/conffiles
|
||||
/etc/config/vaultwarden
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for wxedge
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd
|
||||
|
||||
define Package/luci-app-wxedge/conffiles
|
||||
/etc/config/wxedge
|
||||
|
@ -7,7 +7,7 @@ PKG_RELEASE:=
|
||||
|
||||
LUCI_TITLE:=LuCI support for Xteve
|
||||
LUCI_PKGARCH:=all
|
||||
LUCI_DEPENDS:=+docker +luci-lib-taskd +luci-lib-docker
|
||||
LUCI_DEPENDS:=+lsblk +docker +luci-lib-taskd +luci-lib-docker
|
||||
|
||||
define Package/luci-app-xteve/conffiles
|
||||
/etc/config/xteve
|
||||
|
@ -26,6 +26,11 @@ luci-theme-design is an OpenWrt LuCI theme for immersive WebApp experience and o
|
||||
> **luci-theme-design** based on luci-theme-neobird, suitable for [lede](https://github.com/coolsnowwolf/lede) / [OpenWrt](https://github.com/openwrt/openwrt ).
|
||||
> The default branch only supports the lua version of the lede source code. If you use openwrt 21/22, please pull the [js](https://github.com/gngpp/luci-theme-design/tree/js) version(Development stage).
|
||||
|
||||
- You can use [plugins](https://github.com/gngpp/luci-app-design-config) to define Settings.
|
||||
- Support changing theme dark/light mode
|
||||
- Support display/hide navbar
|
||||
- Support for replacing commonly used proxy icons
|
||||
|
||||
- Thanks for non-commercial open source development authorization by [JetBrains](https://www.jetbrains.com/)!
|
||||
<a href="https://www.jetbrains.com/?from=gnet" target="_blank"><img src="https://raw.githubusercontent.com/panjf2000/illustrations/master/jetbrains/jetbrains-variant-4.png" width="250" align="middle"/></a>
|
||||
|
||||
@ -42,11 +47,6 @@ luci-theme-design is an OpenWrt LuCI theme for immersive WebApp experience and o
|
||||
- Adapt to dark mode, adapt to automatic switching of the system;
|
||||
- Adapt to openwrt 21/22, lede
|
||||
|
||||
### Plugins
|
||||
link: https://github.com/gngpp/luci-app-design-config
|
||||
- Support changing theme dark/light mode
|
||||
- Support for replacing commonly used proxy icons
|
||||
|
||||
### Experience WebApp method
|
||||
|
||||
- Open the settings management in the mobile browser (iOS/iPadOS, Android Google) and add it to the home screen.
|
||||
|
@ -26,6 +26,11 @@ luci-theme-design 是一个针对移动端和PC端的沉浸式WebApp体验和优
|
||||
> **luci-theme-design**基于luci-theme-neobird, 适用于[lede](https://github.com/coolsnowwolf/lede) / [OpenWrt](https://github.com/openwrt/openwrt)
|
||||
> 默认分支只支持lede源码的lua版本,若使用openwrt 21/22请拉取[js](https://github.com/gngpp/luci-theme-design/tree/js)版本(开发阶段)。
|
||||
|
||||
- 你可以使用[插件](https://github.com/gngpp/luci-app-design-config)定义一些设置
|
||||
- 支持更改主题深色/浅色模式
|
||||
- 支持显示/隐藏导航栏
|
||||
- 支持更换常用的代理图标
|
||||
|
||||
- 感谢 [JetBrains](https://www.jetbrains.com/) 提供的非商业开源软件开发授权!
|
||||
<a href="https://www.jetbrains.com/?from=gnet" target="_blank"><img src="https://raw.githubusercontent.com/panjf2000/illustrations/master/jetbrains/jetbrains-variant-4.png" width="250" align="middle"/></a>
|
||||
|
||||
@ -42,11 +47,6 @@ luci-theme-design 是一个针对移动端和PC端的沉浸式WebApp体验和优
|
||||
- 适配深色模式,适配系统自动切换;
|
||||
- 适配openwrt 21/22、lede
|
||||
|
||||
### 插件
|
||||
link:https://github.com/gngpp/luci-app-design-config
|
||||
- 支持更改主题深色/浅色模式
|
||||
- 支持更换常用的代理图标
|
||||
|
||||
### 体验WebApp方法
|
||||
|
||||
- 在移动端(iOS/iPadOS、Android谷歌)浏览器打开设置管理,添加到主屏幕即可。
|
||||
|
@ -922,6 +922,114 @@ img[src*="/luci-static/resources/icons/signal-none.png"]
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/* fix Main Login*/
|
||||
|
||||
.node-main-login {
|
||||
text-align: center;
|
||||
background-color: var(--bgwhite) !important;
|
||||
}
|
||||
.node-main-login .cbi-section-node > .cbi-value:nth-of-type(2n) {
|
||||
background: none;
|
||||
}
|
||||
.node-main-login h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.node-main-login header {
|
||||
display: none;
|
||||
}
|
||||
.node-main-login > .main > .main-left {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.node-main-login > .main > .main-right {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset {
|
||||
padding: 0px !important;
|
||||
margin-bottom: 1rem;
|
||||
display: inline;
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset .cbi-value-title {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-section {
|
||||
margin-top: 10px !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-map {
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset .cbi-value {
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset .cbi-value-title {
|
||||
padding: 10px 0 10px 5px !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-value {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-value-title {
|
||||
width: 7rem;
|
||||
}
|
||||
|
||||
.node-main-login > .main #maincontent {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* .node-main-login > .main .container {
|
||||
background-image: var(--logo);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 300px auto;
|
||||
width: 300px;
|
||||
padding: 80px 0 0 0;
|
||||
} */
|
||||
|
||||
.node-main-login > .main form > div:nth-last-child(1) {
|
||||
}
|
||||
|
||||
|
||||
.node-main-login > .main .cbi-value > * {
|
||||
display: inline-block !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-input-user,
|
||||
.node-main-login > .main .cbi-input-password {
|
||||
appearance: none;
|
||||
outline: 0;
|
||||
padding: 0 0 0 35px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px 10px;
|
||||
background-size: 18px 18px;
|
||||
min-width: 15rem;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-input-user {
|
||||
background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23627386" d="M12 4a4 4 0 0 1 4 4a4 4 0 0 1-4 4a4 4 0 0 1-4-4a4 4 0 0 1 4-4m0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4Z"%2F%3E%3C%2Fsvg%3E');
|
||||
}
|
||||
.node-main-login > .main .cbi-input-password {
|
||||
background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23627386" d="M12 17a2 2 0 0 0 2-2a2 2 0 0 0-2-2a2 2 0 0 0-2 2a2 2 0 0 0 2 2m6-9a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h1V6a5 5 0 0 1 5-5a5 5 0 0 1 5 5v2h1m-6-5a3 3 0 0 0-3 3v2h6V6a3 3 0 0 0-3-3Z"%2F%3E%3C%2Fsvg%3E');
|
||||
}
|
||||
.node-main-login footer {
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
@ -2331,114 +2439,6 @@ header > .container > .pull-right > * {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* fix Main Login*/
|
||||
|
||||
.node-main-login {
|
||||
text-align: center;
|
||||
background-color: var(--bgwhite) !important;
|
||||
}
|
||||
.node-main-login .cbi-section-node > .cbi-value:nth-of-type(2n) {
|
||||
background: none;
|
||||
}
|
||||
.node-main-login h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.node-main-login header {
|
||||
display: none;
|
||||
}
|
||||
.node-main-login > .main > .main-left {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.node-main-login > .main > .main-right {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset {
|
||||
padding: 0px !important;
|
||||
margin-bottom: 1rem;
|
||||
display: inline;
|
||||
background: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset .cbi-value-title {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-section {
|
||||
margin-top: 10px !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-map {
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset .cbi-value {
|
||||
}
|
||||
|
||||
.node-main-login > .main fieldset .cbi-value-title {
|
||||
padding: 10px 0 10px 5px !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-value {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-value-title {
|
||||
width: 7rem;
|
||||
}
|
||||
|
||||
.node-main-login > .main #maincontent {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* .node-main-login > .main .container {
|
||||
background-image: var(--logo);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 300px auto;
|
||||
width: 300px;
|
||||
padding: 80px 0 0 0;
|
||||
} */
|
||||
|
||||
.node-main-login > .main form > div:nth-last-child(1) {
|
||||
}
|
||||
|
||||
|
||||
.node-main-login > .main .cbi-value > * {
|
||||
display: inline-block !important;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-input-user,
|
||||
.node-main-login > .main .cbi-input-password {
|
||||
appearance: none;
|
||||
outline: 0;
|
||||
padding: 0 0 0 35px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px 10px;
|
||||
background-size: 18px 18px;
|
||||
min-width: 15rem;
|
||||
}
|
||||
|
||||
.node-main-login > .main .cbi-input-user {
|
||||
background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23627386" d="M12 4a4 4 0 0 1 4 4a4 4 0 0 1-4 4a4 4 0 0 1-4-4a4 4 0 0 1 4-4m0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4Z"%2F%3E%3C%2Fsvg%3E');
|
||||
}
|
||||
.node-main-login > .main .cbi-input-password {
|
||||
background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23627386" d="M12 17a2 2 0 0 0 2-2a2 2 0 0 0-2-2a2 2 0 0 0-2 2a2 2 0 0 0 2 2m6-9a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h1V6a5 5 0 0 1 5-5a5 5 0 0 1 5 5v2h1m-6-5a3 3 0 0 0-3 3v2h6V6a3 3 0 0 0-3-3Z"%2F%3E%3C%2Fsvg%3E');
|
||||
}
|
||||
.node-main-login footer {
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* fix node-services-shadowsocksr */
|
||||
|
||||
.node-services-shadowsocksr .cbi-input-textarea,
|
||||
@ -2455,12 +2455,14 @@ header > .container > .pull-right > * {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
||||
/* fix status overview */
|
||||
|
||||
.node-status-overview > .main fieldset:nth-child(4) td:nth-child(2) {
|
||||
white-space: normal;
|
||||
}
|
||||
.node-status-overview small {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* fix status processes */
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 299 KiB |
Reference in New Issue
Block a user