mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
92 lines
1.9 KiB
SCSS
Executable File
92 lines
1.9 KiB
SCSS
Executable File
/**
|
|
* 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
|
|
*/
|
|
|
|
.cms {
|
|
.ui-tabs {
|
|
padding: 0;
|
|
background: transparent url(../images/textures/bg_cms_main_content.png) repeat top left;
|
|
|
|
.ui-widget-header {
|
|
border: 0;
|
|
background: none;
|
|
}
|
|
|
|
.ui-tabs-nav {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
li {
|
|
top: 0;
|
|
|
|
a {
|
|
padding: 0 15px;
|
|
}
|
|
}
|
|
|
|
&.ui-state-active {
|
|
border-color: $color-medium-separator;
|
|
}
|
|
}
|
|
|
|
.ui-tabs-panel {
|
|
background: transparent; // default it's white
|
|
padding: $grid-vertical * 2 $grid-horizontal;
|
|
}
|
|
}
|
|
|
|
.ui-widget-content {
|
|
color: $color-text;
|
|
font-size: $font-base-size;
|
|
font-family: $font-family;
|
|
border: 0;
|
|
}
|
|
|
|
.ui-widget-header {
|
|
background: $color-widget-bg;
|
|
border: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.ss-ui-button {
|
|
padding: 5px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
// Buttons
|
|
.ui-state-hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ui-widget input,
|
|
.ui-widget select,
|
|
.ui-widget textarea,
|
|
.ui-widget button {
|
|
color: $color-text;
|
|
font-size: $font-base-size;
|
|
font-family: $font-family;
|
|
}
|
|
|
|
.ss-ui-button,
|
|
.ui-widget-content .ss-ui-button,
|
|
.ui-widget-header .ss-ui-button {
|
|
padding: $grid-vertical - 1 $grid-horizontal;
|
|
color: $color-text-dark;
|
|
@include background(image-url("../images/btn_icons_sprite.png") no-repeat 999px 999px,
|
|
linear-gradient(color-stops(
|
|
$color-button-generic-light,
|
|
$color-button-generic-dark
|
|
))
|
|
);
|
|
background-color: $color-button-generic-light;
|
|
@include box-shadow(darken($color-base, 20%) 1px 1px 2px);
|
|
}
|
|
} |