调整Tag页面样式

This commit is contained in:
Meekdai 2024-04-07 10:54:57 +08:00
parent ae95ed6a82
commit db0ccd2b5d

View File

@ -14,8 +14,11 @@
.subnav-search-input{width:160px;border-top-right-radius:0px;border-bottom-right-radius:0px;}
.subnav-search button{padding:5px 8px;border-top-left-radius:0px;border-bottom-left-radius:0px;}
.SideNav-icon{margin-right: 16px}
.SideNav-icon{margin-right:16px}
.Label{color: #fff;margin-left:8px;}
#taglabel .Label {margin-bottom:8px;}
.Counter{color:#fff;background-color:rgba(234, 238, 242, 0.5)}
.genTime{float: right;}
.d-flex{min-width:0;}
.listTitle{overflow:hidden;white-space:nowrap;text-overflow: ellipsis;max-width: 100%;}
@ -53,7 +56,7 @@
{% endblock %}
{% block content %}
<div id="taglabel" style="margin-bottom: 16px;"></div>
<div id="taglabel" style="margin-bottom:8px;"></div>
<nav class="SideNav"></nav>
<div class="notFind" style="display:none;font-size:24px;margin:8px;">Not Find</div>
{% endblock %}
@ -105,7 +108,6 @@ function showList(labelsCount){
let LabelNum=document.createElement("span");
LabelNum.setAttribute("class","Counter");
LabelNum.setAttribute("style","color:#fff;background-color:rgba(234, 238, 242, 0.5)");
LabelNum.innerHTML=labelsCount[label];
showLabels.appendChild(LabelNum);
taglabel.appendChild(showLabels);