- List node by node types - fixed the trash/restore/delete workflow Added messaging module to send message to cms users (by email for now). Added early protection for cache, export and import functionalities.
55 lines
989 B
CSS
55 lines
989 B
CSS
ul.cms-users {
|
|
list-style-type: none;
|
|
padding: 3px 3px 3px 3px;
|
|
border: solid 1px #ccc;
|
|
}
|
|
ul.cms-users li {
|
|
border-top: dotted 1px #ccc;
|
|
}
|
|
ul.cms-users li:first-child {
|
|
border-top: none;
|
|
}
|
|
ul.cms-users li.cms_user a::before {
|
|
content: "[user] ";
|
|
}
|
|
|
|
ul.cms-roles {
|
|
list-style-type: none;
|
|
padding: 3px 3px 3px 3px;
|
|
border: solid 1px #ccc;
|
|
}
|
|
ul.cms-roles li {
|
|
border-top: dotted 1px #ccc;
|
|
}
|
|
ul.cms-roles li:first-child {
|
|
border-top: none;
|
|
}
|
|
ul.cms-roles li.cms_role a::before {
|
|
content: "[role] ";
|
|
}
|
|
|
|
ul.cms-permissions {
|
|
list-style-type: none;
|
|
padding: 3px 3px 3px 3px;
|
|
border: solid 1px #ccc;
|
|
}
|
|
ul.cms-permissions li {
|
|
border-top: dotted 1px #ccc;
|
|
}
|
|
ul.cms-permissions li:first-child {
|
|
border-top: none;
|
|
}
|
|
ul.cms-permissions li.cms_permission a::before {
|
|
content: "[permission] ";
|
|
}
|
|
|
|
form#modules_collection thead td {
|
|
font-weight: bold;
|
|
}
|
|
form#modules_collection tr {
|
|
border-bottom: dotted 1px #ccc;
|
|
}
|
|
form#modules_collection td {
|
|
padding: 3px;
|
|
}
|