forked from AkkomaGang/admin-fe
Enlarge url input, add headers
This commit is contained in:
parent
cea1485ddc
commit
cd689ac75c
1 changed files with 12 additions and 3 deletions
|
@ -4,6 +4,7 @@
|
||||||
<h1>{{ $t('mediaProxyCache.mediaProxyCache') }}</h1>
|
<h1>{{ $t('mediaProxyCache.mediaProxyCache') }}</h1>
|
||||||
<reboot-button/>
|
<reboot-button/>
|
||||||
</div>
|
</div>
|
||||||
|
<p class="media-proxy-cache-header">Evict object from the MediaProxy cache</p>
|
||||||
<div class="url-input-container">
|
<div class="url-input-container">
|
||||||
<el-input
|
<el-input
|
||||||
:placeholder="$t('mediaProxyCache.url')"
|
:placeholder="$t('mediaProxyCache.url')"
|
||||||
|
@ -13,6 +14,7 @@
|
||||||
<el-checkbox v-model="ban">{{ $t('mediaProxyCache.ban') }}</el-checkbox>
|
<el-checkbox v-model="ban">{{ $t('mediaProxyCache.ban') }}</el-checkbox>
|
||||||
<el-button class="evict-button" @click="evictURL">{{ $t('mediaProxyCache.evict') }}</el-button>
|
<el-button class="evict-button" @click="evictURL">{{ $t('mediaProxyCache.evict') }}</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
<p class="media-proxy-cache-header">List of all banned MediaProxy URLs</p>
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
:data="bannedUrls"
|
:data="bannedUrls"
|
||||||
|
@ -88,10 +90,16 @@ h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
.banned-urls-table {
|
.banned-urls-table {
|
||||||
margin: 15px;
|
margin-top: 15px;
|
||||||
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
.evict-button {
|
.evict-button {
|
||||||
margin-left: 5px;
|
margin-left: 15px;
|
||||||
|
}
|
||||||
|
.media-proxy-cache-header {
|
||||||
|
margin-left: 15px;
|
||||||
|
margin-top: 22px;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
.media-proxy-cache-header-container {
|
.media-proxy-cache-header-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -100,10 +108,11 @@ h1 {
|
||||||
margin: 10px 15px;
|
margin: 10px 15px;
|
||||||
}
|
}
|
||||||
.url-input {
|
.url-input {
|
||||||
width: 350px;
|
|
||||||
margin-right: 15px;
|
margin-right: 15px;
|
||||||
}
|
}
|
||||||
.url-input-container {
|
.url-input-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
margin: 15px 15px;
|
margin: 15px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue