FEATURE reordering admin menu
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2026-05-07 17:56:22 +02:00
parent 3bb2464d3a
commit 09a459226e
2 changed files with 48 additions and 0 deletions

View File

@ -14,3 +14,26 @@
.interface-navigable-region a[target='_blank']:after, .edit-post-header a[target='_blank']:after, .editor-header__settings a[target='_blank']:after, .interface-interface-skeleton__header a[target='_blank']:after {
content: none;
}
ul#adminmenu #menu-pages {
border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
padding-top: 10px !important;
}
ul#adminmenu #menu-media {
border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
padding-bottom: 10px !important;
}
ul#adminmenu #menu-posts-equipe {
border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
padding-bottom: 10px !important;
}
ul#adminmenu #menu-media + li {
padding-top: 10px !important;
}
ul#adminmenu li:has(+ #menu-pages) {
padding-bottom: 10px !important;
}

View File

@ -20,3 +20,28 @@
content: none;
}
}
ul#adminmenu {
#menu-pages {
border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
padding-top: 10px !important;
}
#menu-media {
border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
padding-bottom: 10px !important;
}
#menu-posts-equipe {
border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
padding-bottom: 10px !important;
}
#menu-media + li {
padding-top: 10px !important;
}
li:has(+ #menu-pages) {
padding-bottom: 10px !important;
}
}