revamping categories management page in ACP, #2463
parent
1e6f5d822d
commit
c98331de82
@ -1,133 +0,0 @@
|
|||||||
.categories {
|
|
||||||
.entry-row {
|
|
||||||
border-radius: 10px;
|
|
||||||
cursor: move;
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-icons .col-md-3 {
|
|
||||||
padding-left: 0;
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admin-categories {
|
|
||||||
margin-top: 20px;
|
|
||||||
|
|
||||||
> ul > li {
|
|
||||||
|
|
||||||
label {
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
form {
|
|
||||||
.btn-group {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3, h4 {
|
|
||||||
cursor: text;
|
|
||||||
.fa-edit {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h3, h4, .toggle-settings {
|
|
||||||
padding-left: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.preview-box {
|
|
||||||
width: 100%;
|
|
||||||
height: 100px;
|
|
||||||
text-align: center;
|
|
||||||
color: white;
|
|
||||||
margin-top: 0;
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
width: 30px;
|
|
||||||
height: 30px;
|
|
||||||
line-height: 40px;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 35px 5px 0 5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown {
|
|
||||||
hr {
|
|
||||||
margin: 5px auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.permissions-modal {
|
|
||||||
.search-results {
|
|
||||||
padding: 0;
|
|
||||||
|
|
||||||
> li {
|
|
||||||
.zebra;
|
|
||||||
clear: both;
|
|
||||||
list-style-type: none;
|
|
||||||
padding: 0.5em;
|
|
||||||
min-height: 46px;
|
|
||||||
|
|
||||||
a {
|
|
||||||
&:before {
|
|
||||||
font-family: "FontAwesome";
|
|
||||||
content: "\f096";
|
|
||||||
display: inline-block;
|
|
||||||
min-width: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.active:before {
|
|
||||||
content: "\f046";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 32px;
|
|
||||||
margin-right: 1em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.members {
|
|
||||||
li {
|
|
||||||
list-style-type: none;
|
|
||||||
.inline-block;
|
|
||||||
.pointer;
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.empty {
|
|
||||||
font-size: 12px;
|
|
||||||
cursor: auto;
|
|
||||||
min-height: 28px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.category-list {
|
|
||||||
padding: 0;
|
|
||||||
|
|
||||||
li {
|
|
||||||
.inline-block;
|
|
||||||
.pointer;
|
|
||||||
padding: 0.5em;
|
|
||||||
margin: 0.25em;
|
|
||||||
.border-radius(3px);
|
|
||||||
|
|
||||||
&.disabled {
|
|
||||||
-webkit-filter: grayscale(30%);
|
|
||||||
.opacity(0.5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,16 @@
|
|||||||
|
<tr data-cid="{cid}">
|
||||||
|
<td>
|
||||||
|
<span class="label" style="
|
||||||
|
<!-- IF backgroundImage -->background-image: url({backgroundImage});<!-- ENDIF backgroundImage -->
|
||||||
|
<!-- IF bgColor -->background-color: {bgColor};<!-- ENDIF bgColor -->
|
||||||
|
color: {color};
|
||||||
|
background-size:cover;
|
||||||
|
">
|
||||||
|
<i data-name="icon" value="{icon}" class="fa fa-fw {icon}"></i>
|
||||||
|
</span>
|
||||||
|
</td>
|
||||||
|
<td>{name}</td>
|
||||||
|
<td>{description}</td>
|
||||||
|
<td class="text-center">{topic_count}</td>
|
||||||
|
<td class="text-center">{post_count}</td>
|
||||||
|
</tr>
|
Loading…
Reference in New Issue