2011-05-20 01:29:40 +02:00
|
|
|
/**
|
2011-10-29 02:01:06 +02:00
|
|
|
* Styles for the left hand side menu and header for the admin panels.
|
|
|
|
*
|
|
|
|
* Take into consideration CSS selector performance.
|
2011-05-20 01:29:40 +02:00
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2011-05-20 01:29:40 +02:00
|
|
|
* @subpackage admin
|
|
|
|
*/
|
2011-08-01 00:54:31 +02:00
|
|
|
|
2011-10-29 02:01:06 +02:00
|
|
|
.cms-logo-header {
|
|
|
|
background-color: darken($color-dark-bg, 10%);
|
|
|
|
position: relative;
|
2012-03-23 23:33:48 +01:00
|
|
|
padding: $grid-y + 1 8px 0 4px;
|
2011-10-29 02:01:06 +02:00
|
|
|
line-height: 24px;
|
|
|
|
|
|
|
|
@include background-image(
|
|
|
|
linear-gradient(darken($color-dark-bg, 10%), $color-dark-bg, darken($color-dark-bg, 10%)
|
|
|
|
));
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: $color-text-light;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $color-text-dark-link;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cms-logo {
|
|
|
|
border-bottom: 1px solid darken($color-dark-separator, 20%);
|
|
|
|
height: 31px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 0 0 4px;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-size: $font-base-size;
|
|
|
|
|
|
|
|
.version {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: inline-block;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
float: left;
|
|
|
|
margin-right: 8px;
|
|
|
|
background: $application-logo-small no-repeat;
|
|
|
|
text-indent: -9999em;
|
|
|
|
padding-right: 7px;
|
|
|
|
border-right: 1px solid $color-dark-separator;
|
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 14px;
|
|
|
|
@include hide-text-overflow();
|
2012-02-17 05:00:29 +01:00
|
|
|
padding-top:1px;
|
2011-10-29 02:01:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cms-login-status {
|
|
|
|
border-top: 1px solid $color-dark-separator;
|
|
|
|
height: 24px;
|
|
|
|
padding: 7px 4px 0 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
line-height: 16px;
|
|
|
|
font-size: $font-base-size - 1;
|
|
|
|
|
|
|
|
.logout-link {
|
|
|
|
display: inline-block;
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
float: left;
|
|
|
|
margin: 0 8px 0 3px;
|
2012-01-06 11:59:10 +01:00
|
|
|
background: sprite($sprites32, logout) no-repeat;
|
2011-10-29 02:01:06 +02:00
|
|
|
text-indent: -9999em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-15 01:27:23 +02:00
|
|
|
.cms-menu {
|
2011-08-01 00:54:31 +02:00
|
|
|
z-index: 80;
|
2012-04-18 03:35:57 +02:00
|
|
|
background: $color-base;
|
2011-05-20 01:29:40 +02:00
|
|
|
border-right: 1px solid $color-menu-border;
|
2012-02-14 11:18:58 +01:00
|
|
|
width: ($grid-x * 24) - 1; /* 8x24 - 1 */
|
2011-04-15 01:27:23 +02:00
|
|
|
|
2012-02-14 11:18:58 +01:00
|
|
|
@include box-shadow($color-shadow-dark 0 0 $grid-x);
|
2011-05-20 01:29:40 +02:00
|
|
|
|
2011-04-15 01:27:23 +02:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2011-05-13 03:30:49 +02:00
|
|
|
|
|
|
|
.cms-panel-content {
|
2012-02-14 11:18:58 +01:00
|
|
|
width: ($grid-x * 24) - 1; /* 8x24 - 1 */
|
2011-10-29 02:01:06 +02:00
|
|
|
overflow-x: hidden;
|
2011-10-29 11:19:12 +02:00
|
|
|
overflow-y: auto;
|
2011-05-13 03:30:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.collapsed {
|
|
|
|
width: 40px;
|
|
|
|
cursor: auto;
|
2011-07-28 06:57:41 +02:00
|
|
|
z-index: 1000;
|
|
|
|
|
2011-10-29 02:01:06 +02:00
|
|
|
.cms-panel-header {
|
2011-07-28 06:57:41 +02:00
|
|
|
width: 30px;
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2011-05-13 03:30:49 +02:00
|
|
|
|
|
|
|
.cms-menu-list {
|
2011-07-28 06:57:41 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
2011-05-13 03:30:49 +02:00
|
|
|
li span.text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
li ul {
|
2011-10-07 06:48:53 +02:00
|
|
|
display: none;
|
2011-05-13 03:30:49 +02:00
|
|
|
}
|
|
|
|
}
|
2011-10-07 06:48:53 +02:00
|
|
|
|
2011-05-13 03:30:49 +02:00
|
|
|
&.cms-panel .cms-panel-content {
|
|
|
|
display: block; // override panel defaults
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.cms-menu-list {
|
|
|
|
li {
|
|
|
|
a {
|
|
|
|
display: block;
|
2012-02-14 11:18:58 +01:00
|
|
|
height: $grid-y * 3;
|
|
|
|
line-height: $grid-y * 3;
|
2011-05-20 01:29:40 +02:00
|
|
|
font-size: $font-base-size;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2011-06-10 03:37:54 +02:00
|
|
|
text-shadow: lighten($color-base, 5%) 1px 1px 0;
|
2011-04-19 06:34:30 +02:00
|
|
|
color: $color-text-dark;
|
2012-02-14 11:18:58 +01:00
|
|
|
padding: ($grid-y - 1) 5px ($grid-y - 1) 8px;
|
2012-02-17 05:00:29 +01:00
|
|
|
background-color: darken($color-base, 12%);
|
2011-08-16 04:57:30 +02:00
|
|
|
cursor: pointer;
|
2011-05-20 01:29:40 +02:00
|
|
|
|
2011-07-28 06:57:41 +02:00
|
|
|
@include background-image(linear-gradient(
|
2011-05-20 01:29:40 +02:00
|
|
|
$color-base,
|
2011-07-06 15:22:13 +02:00
|
|
|
darken($color-base, 12%)
|
2011-05-20 01:29:40 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
border-top: 1px solid lighten($color-base, 10%);
|
|
|
|
border-bottom: 1px solid darken($color-base, 20%);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: lighten($color-base, 2%);
|
|
|
|
border-bottom: 1px solid darken($color-base, 15%);
|
|
|
|
color: lighten($color-text-dark, 5%);
|
|
|
|
|
2011-07-28 06:57:41 +02:00
|
|
|
@include background-image(linear-gradient(
|
2011-05-20 01:29:40 +02:00
|
|
|
lighten($color-base, 5%),
|
|
|
|
$color-base
|
|
|
|
));
|
|
|
|
}
|
2011-08-04 02:02:39 +02:00
|
|
|
&:focus,
|
|
|
|
&:active {
|
2011-05-20 01:29:40 +02:00
|
|
|
border-top: 1px solid darken($color-base, 5%);
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: darken($color-base, 5%);
|
|
|
|
color: lighten($color-text-dark, 10%);
|
|
|
|
|
2011-07-28 06:57:41 +02:00
|
|
|
@include background-image(linear-gradient(
|
2011-05-20 01:29:40 +02:00
|
|
|
darken($color-base, 10%),
|
|
|
|
darken($color-base, 5%)
|
|
|
|
));
|
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
|
|
|
|
.icon {
|
2012-01-05 17:03:38 +01:00
|
|
|
display: inline-block;
|
2011-04-15 01:27:23 +02:00
|
|
|
float: left;
|
2011-08-09 01:39:12 +02:00
|
|
|
margin: 4px 10px 0 4px;
|
2012-01-05 17:03:38 +01:00
|
|
|
|
2011-07-28 06:57:41 +02:00
|
|
|
@include opacity(0.7);
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
2012-01-05 17:03:38 +01:00
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toggle-children {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
width: 20px;
|
|
|
|
height: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.toggle-children-icon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
2012-01-06 00:06:34 +01:00
|
|
|
background: sprite($sprites32, menu-arrow-deselected-down) no-repeat;
|
2012-01-05 17:03:38 +01:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.opened {
|
|
|
|
.toggle-children-icon {
|
2012-01-06 00:06:34 +01:00
|
|
|
background: sprite($sprites32, menu-arrow-deselected-up) no-repeat;
|
2012-01-05 17:03:38 +01:00
|
|
|
}
|
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
|
|
|
}
|
2011-08-16 05:36:39 +02:00
|
|
|
|
2011-10-07 06:48:53 +02:00
|
|
|
&.current { //need to apply current stlye to flyout also (at least line height)
|
2011-05-20 01:29:40 +02:00
|
|
|
a {
|
|
|
|
color: $color-text-light;
|
|
|
|
text-shadow: darken($color-menu-button, 20%) 0 -1px 0;
|
|
|
|
border-top: 1px solid lighten($color-menu-button, 10%);
|
|
|
|
border-bottom: 1px solid darken($color-menu-button, 20%);
|
|
|
|
background-color: $color-menu-button;
|
2011-07-28 06:57:41 +02:00
|
|
|
@include background-image(linear-gradient(
|
2011-05-20 01:29:40 +02:00
|
|
|
$color-menu-button,
|
2011-04-19 06:34:30 +02:00
|
|
|
darken($color-menu-button, 10%)
|
|
|
|
));
|
2012-01-06 00:06:34 +01:00
|
|
|
|
|
|
|
.toggle-children {
|
|
|
|
.toggle-children-icon {
|
|
|
|
background: sprite($sprites32, menu-arrow-down) no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.opened {
|
|
|
|
.toggle-children-icon {
|
|
|
|
background: sprite($sprites32, menu-arrow-up) no-repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-19 06:34:30 +02:00
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
|
2011-05-20 01:29:40 +02:00
|
|
|
ul {
|
2011-10-07 06:48:53 +02:00
|
|
|
border-top: none;
|
2011-08-18 01:26:24 +02:00
|
|
|
display: block;
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
|
|
|
|
2011-05-20 01:29:40 +02:00
|
|
|
li {
|
|
|
|
background-color: darken($color-menu-button, 10%);
|
|
|
|
a {
|
2011-06-10 03:37:54 +02:00
|
|
|
font-size: $font-base-size - 1;
|
2011-07-28 06:57:41 +02:00
|
|
|
padding: 0 10px 0 40px;
|
2011-05-20 01:29:40 +02:00
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
color: lighten($color-menu-button, 45%);
|
|
|
|
background: none;
|
|
|
|
border-top: 1px solid $color-menu-button;
|
|
|
|
border-bottom: 1px solid darken($color-menu-button, 20%);
|
|
|
|
|
|
|
|
&.current,
|
|
|
|
&:hover {
|
|
|
|
background: darken($color-menu-button, 5%);
|
|
|
|
border-top: 1px solid darken($color-menu-button, 5%);
|
|
|
|
color: $color-text-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: darken($color-menu-button, 15%);
|
|
|
|
border-top: 1px solid darken($color-menu-button, 20%);
|
|
|
|
color: lighten($color-menu-button, 60%);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-03-23 23:57:14 +01:00
|
|
|
&.current {
|
|
|
|
background: darken($color-menu-button, 5%);
|
|
|
|
border-top: 1px solid darken($color-menu-button, 5%);
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
color: $color-text-light;
|
|
|
|
}
|
2011-05-20 01:29:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&.first a {
|
|
|
|
border-top: none;
|
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
|
|
|
}
|
2011-10-07 06:48:53 +02:00
|
|
|
|
2012-02-17 05:00:29 +01:00
|
|
|
ul {
|
|
|
|
display: none;
|
|
|
|
#Menu-CMSPagesController {
|
|
|
|
a {
|
|
|
|
background-image:none;
|
|
|
|
font-size: 11px;
|
|
|
|
padding: 0 10px 0 40px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#Menu-CMSPageAddController {
|
|
|
|
a {
|
|
|
|
background-image:none;
|
|
|
|
font-size: 11px;
|
|
|
|
padding: 0 10px 0 40px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#Menu-AssetAdmin {
|
|
|
|
a {
|
|
|
|
background-image:none;
|
|
|
|
font-size: 11px;
|
|
|
|
padding: 0 10px 0 40px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#Menu-CMSFileAddController {
|
|
|
|
a {
|
|
|
|
background-image:none;
|
|
|
|
font-size: 11px;
|
|
|
|
padding: 0 10px 0 40px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-07 06:48:53 +02:00
|
|
|
/* Style applied to the menu flyout only when the collapsed setting */
|
|
|
|
ul.collapsed-flyout {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
li {
|
|
|
|
a {
|
|
|
|
font-size: $font-base-size - 1;
|
|
|
|
padding: 0 10px 0 40px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
|
|
|
|
&.current,
|
|
|
|
&:hover {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.current a {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.first a {
|
|
|
|
border-top: 1px solid darken($color-base, 10%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-15 01:27:23 +02:00
|
|
|
}
|
2011-08-16 05:36:39 +02:00
|
|
|
|
2011-05-13 03:30:49 +02:00
|
|
|
&.collapsed {
|
2012-01-05 17:03:38 +01:00
|
|
|
li {
|
|
|
|
.text, .toggle-children {
|
|
|
|
display: none;
|
|
|
|
}
|
2011-05-13 03:30:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
li > li {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2011-12-21 19:45:20 +01:00
|
|
|
}
|