update 2022-06-03 20:16:06

This commit is contained in:
github-actions[bot] 2022-06-03 20:16:06 +08:00
parent 74c493de18
commit 227f67459a
4 changed files with 41 additions and 39 deletions

View File

@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=aliyundrive-webdav PKG_NAME:=aliyundrive-webdav
PKG_VERSION:=1.3.3 PKG_VERSION:=1.4.0
PKG_RELEASE:=$(AUTORELEASE) PKG_RELEASE:=$(AUTORELEASE)
PKG_LICENSE:=MIT PKG_LICENSE:=MIT

View File

@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-aliyundrive-webdav PKG_NAME:=luci-app-aliyundrive-webdav
PKG_VERSION:=1.3.3 PKG_VERSION:=1.4.0
PKG_RELEASE:=1 PKG_RELEASE:=1
PKG_PO_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE) PKG_PO_VERSION:=$(PKG_VERSION)-$(PKG_RELEASE)

File diff suppressed because one or more lines are too long

View File

@ -2694,44 +2694,46 @@ td>.ifacebadge,
.network-status-table { .network-status-table {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
}
.network-status-table .ifacebox { .ifacebox {
flex-grow: 1; flex-grow: 1;
border-radius: 4px; border-radius: 4px;
overflow: hidden;
margin: 0 1.25rem 1rem 1.25rem;
}
.network-status-table .ifacebox-body {
display: flex;
flex-direction: column;
height: 100%;
gap: 0.5em;
}
.network-status-table .ifacebox-body>span {
flex: 10 10 auto;
height: 100%;
}
.network-status-table .ifacebox-body>div {
display: flex;
flex-wrap: wrap;
gap: .5rem;
}
.network-status-table .ifacebox-body .ifacebadge {
align-items: center;
flex: 1 1 auto;
min-width: 220px;
padding: .5em;
background-color: #fff;
>span {
white-space: nowrap;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; margin: 0 1.25rem 1rem 1.25rem;
}
.ifacebox-body {
display: flex;
flex-direction: column;
height: 100%;
gap: 0.5em;
>span {
flex: 10 10 auto;
}
>div {
display: flex;
flex-wrap: wrap;
gap: .5rem;
height: 100%;
}
.ifacebadge {
align-items: center;
flex: 1 1 auto;
min-width: 220px;
padding: .5em;
background-color: #fff;
>span {
height: 100%;
align-self: flex-start;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
} }
} }