CSS for Admin section?

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
6/6/2011 6:07:39 AM
Gravatar
Total Posts 220

CSS for admin section?

Hi,

I have to make a lot of changes in the admin section (font size, tab color ...), because after I copied the export from Artisteer into the copy of the appropriate existing skin, the admin section has still the same design as the existing skin. "In the past" the admin section was easy to change with ".admin", but now with Artisteer I can not find out which CSS is responsible.

Best
Matthias

6/6/2011 6:33:26 AM
Gravatar
Total Posts 18439

Re: CSS for Admin section?

Hi Matthias,

If you are talking about the tabs, that is mainly controlled by the jqueryui theme. You can choose from a number of jqueryui themes and you specify a them by this setting on the StyleSheetCombiner control in layout.master

<%-- JQueryUIThemeName valid options are:
base, black-tie, blitzer, cupertino, dark-hive, dot-luv, eggplant, excite-bike, flick, hot-sneaks,
humanity, le-frog, mint-choc, overcast, pepper-grinder,
redmond, smoothness, south-street, start, sunny, swanky-purse, trontastic, ui-darkness, ui-lightness, vader
--%>
    <portal:StyleSheetCombiner ID="StyleSheetCombiner" runat="server" JQueryUIThemeName="humanity" />

If after choosing a jqeuryui theme you still need more changes you can define CSS rules to override whatever you need. If you view the source of the page you will see there are custom classes on the body element in all admin pages. Using that class as part of a CSS selector you can override the style of anything on the page.

Hope that helps,

Joe

6/6/2011 8:57:57 AM
Gravatar
Total Posts 220

Re: CSS for Admin section?

Hell yeah! Great!

Cheers
Matthias

You must sign in to post in the forums. This thread is closed to new posts.