silverstripe-framework/admin/scss/_uitheme.scss

41 lines
892 B
SCSS
Raw Normal View History

2011-04-15 01:27:23 +02:00
/**
* This file defines CMS-specific customizations to the jQuery UI theme.
* Every rule in this file should be wrapped in the '.cms' selector (to make it more specific),
* and contain ONLY overwritten jQuery UI rules (with 'ui-' prefix).
*
* This file should be fairly short, as we're using our own custom jQuery UI theme already.
* TODO Add theme reference
*
* Use _style.scss to add more generic style information,
* and read the jQuery UI theming API: http://jqueryui.com/docs/Theming/API
2011-04-15 01:27:23 +02:00
*/
.cms {
2011-04-15 01:27:23 +02:00
.ui-tabs {
padding: 0;
.ui-widget-header {
border: 0;
background: none;
}
2011-04-15 01:27:23 +02:00
}
.ui-widget-content,
.ui-tabs .ui-tabs-panel {
color: $color-text;
font-size: 1em;
2011-04-15 01:27:23 +02:00
border: 0;
background: transparent;
2011-04-15 01:27:23 +02:00
}
.ui-widget-header {
background: $color-widget-bg;
2011-04-15 01:27:23 +02:00
border: 0;
padding: 0;
2011-04-15 01:27:23 +02:00
}
.ss-ui-button {
padding: 5px;
text-decoration: none;
}
2011-04-15 01:27:23 +02:00
}