Drupal:为管理样式创建一个独特的选择器?
我想在管理中以不同的方式设置某些组件的样式。如何在 body 元素上生成唯一的 id/class,以便我可以单独设置管理元素的样式?
I'd like to style some components differently in the admin. How could I generate a unique id/class on the body element so I could style admin elements separately?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以首先查看 admin 模块。它可以帮助您创建管理主题和其他人工智能改进。我发现使用 rubik 主题。
您还可以通过检查第一个参数将类放在管理页面上在预处理函数中。对于所有管理页面,第一个参数应该是
admin
。预处理函数应该位于主题的 template.php 文件中,并根据主题名称命名。You can start by looking at the admin module. It helps you to create an admin theme and other AI improvements. I found that using the rubik theme.
You can also just put a class on admin pages, by checking the first argument in a preprocess function. For all admin pages they the first arg should be
admin
. The preprocess function should be in your theme's template.php file, and named according to your theme's name.