Files
NodeBB/public/less/admin/manage/categories.less

92 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-05-30 18:44:31 +03:00
div.categories {
2015-07-08 17:08:19 -04:00
ul {
.no-select;
list-style-type: none;
margin: 0;
padding: 0;
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
> li > ul > li {
margin-left: 4.5rem;
}
2015-07-08 17:08:19 -04:00
.row {
margin-left: -15px;
margin-right: -15px;
border-bottom: 1px dashed #ddd;
padding-bottom: 12px;
margin-bottom: 12px;
}
2015-08-20 14:58:58 -04:00
> li li:last-child {
.row {
border-bottom: 0px;
}
}
2015-07-08 17:08:19 -04:00
}
2015-07-08 17:08:19 -04:00
.stats {
display: inline-block;
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
li {
min-height: 0;
display: inline;
margin: 0 @acp-margin 0 0;
left: 0;
}
}
2015-07-08 17:08:19 -04:00
li {
min-height: @acp-line-height;
margin: @acp-base-line 0;
2015-08-20 14:58:58 -04:00
margin-top: 28px;
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
&.placeholder {
border: 1px dashed #2196F3;
background-color: #E1F5FE;
}
}
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
.disabled {
2015-05-30 18:44:31 +03:00
2015-08-20 13:24:54 -04:00
.icon, .category-header, .description {
2015-07-08 17:08:19 -04:00
opacity: 0.5;
}
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
.stats {
opacity: 0.3;
}
}
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
.icon {
width: @acp-line-height;
height: @acp-line-height;
border-radius: 50%;
line-height: @acp-line-height;
text-align: center;
vertical-align: bottom;
background-size: cover;
float: left;
margin-right: @acp-margin;
cursor: move;
}
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
.information {
float: left;
}
2015-05-30 18:44:31 +03:00
2015-08-20 13:24:54 -04:00
.category-header {
2015-07-08 17:08:19 -04:00
margin-top: 0;
margin-bottom: @acp-base-line;
}
2015-05-30 18:44:31 +03:00
2015-07-08 17:08:19 -04:00
.description {
margin: 0;
}
2015-09-28 16:59:24 -04:00
.children-placeholder{
border: 1px dashed #ddd;
min-height: 20px;
height: 20px;
}
2015-05-30 18:44:31 +03:00
}