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
|
|
|
|
*
|
2011-04-19 06:34:30 +02:00
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
2011-04-19 06:34:30 +02:00
|
|
|
.cms {
|
2011-04-15 01:27:23 +02:00
|
|
|
.ui-tabs {
|
2011-04-24 01:05:59 +02:00
|
|
|
padding: 0;
|
2011-08-04 02:02:39 +02:00
|
|
|
background: $tab-panel-texture-background;
|
2011-04-24 01:05:59 +02:00
|
|
|
|
|
|
|
.ui-widget-header {
|
|
|
|
border: 0;
|
|
|
|
background: none;
|
|
|
|
}
|
2011-06-10 03:37:54 +02:00
|
|
|
|
|
|
|
.ui-tabs-nav {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding: 0 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.ui-state-active {
|
|
|
|
border-color: $color-medium-separator;
|
|
|
|
}
|
|
|
|
}
|
2011-07-29 05:10:14 +02:00
|
|
|
|
|
|
|
.ui-tabs-panel {
|
|
|
|
background: transparent; // default it's white
|
2011-08-09 07:52:13 +02:00
|
|
|
padding: $grid-vertical * 2 $grid-horizontal * 2;
|
2011-07-29 05:10:14 +02:00
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
2011-07-29 05:10:14 +02:00
|
|
|
|
2011-08-01 04:27:52 +02:00
|
|
|
.ui-widget-content,
|
|
|
|
.ui-widget {
|
2011-04-19 06:34:30 +02:00
|
|
|
color: $color-text;
|
2011-06-10 03:37:54 +02:00
|
|
|
font-size: $font-base-size;
|
2011-07-29 05:10:14 +02:00
|
|
|
font-family: $font-family;
|
2011-04-15 01:27:23 +02:00
|
|
|
border: 0;
|
|
|
|
}
|
2011-08-16 04:57:30 +02:00
|
|
|
|
2011-04-15 01:27:23 +02:00
|
|
|
.ui-widget-header {
|
2011-04-24 01:05:59 +02:00
|
|
|
background: $color-widget-bg;
|
2011-04-15 01:27:23 +02:00
|
|
|
border: 0;
|
2011-05-20 01:29:40 +02:00
|
|
|
padding: 0;
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
2011-08-04 02:02:39 +02:00
|
|
|
|
2011-07-07 07:34:55 +02:00
|
|
|
.ui-state-hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2011-07-29 05:10:14 +02:00
|
|
|
|
|
|
|
.ui-widget input,
|
|
|
|
.ui-widget select,
|
|
|
|
.ui-widget textarea,
|
|
|
|
.ui-widget button {
|
|
|
|
color: $color-text;
|
|
|
|
font-size: $font-base-size;
|
|
|
|
font-family: $font-family;
|
|
|
|
}
|
|
|
|
|
2011-07-07 07:34:55 +02:00
|
|
|
.ss-ui-button,
|
|
|
|
.ui-widget-content .ss-ui-button,
|
|
|
|
.ui-widget-header .ss-ui-button {
|
2011-08-04 02:02:39 +02:00
|
|
|
|
2011-07-29 05:10:14 +02:00
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|