Skip to content

Instantly share code, notes, and snippets.

@iamweird
Created November 27, 2013 20:59
Show Gist options
  • Save iamweird/7683112 to your computer and use it in GitHub Desktop.
Save iamweird/7683112 to your computer and use it in GitHub Desktop.
Overriding default system css and some module css in Drupal 7 theme
; Override default system css
stylesheets[all][] = css/default/system.admin.css
stylesheets[all][] = css/default/system.admin-rtl.css
stylesheets[all][] = css/default/system.base.css
stylesheets[all][] = css/default/system.base-rtl.css
stylesheets[all][] = css/default/system.maintenance.css
stylesheets[all][] = css/default/system.menus.css
stylesheets[all][] = css/default/system.menus-rtl.css
stylesheets[all][] = css/default/system.messages.css
stylesheets[all][] = css/default/system.messages-rtl.css
stylesheets[all][] = css/default/system.theme.css
stylesheets[all][] = css/default/system.theme-rtl.css
; Override core module css
stylesheets[all][] = css/default/field.css
stylesheets[all][] = css/default/node.css
stylesheets[all][] = css/default/search.css
stylesheets[all][] = css/default/user.css
; Override even non-core module css!
stylesheets[all][] = css/default/views.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment