Fixing inadvertant breakage of super-menu

Fixing inadvertant breakage of super-menu
from changes to .pane classes related to split-pane CSS changes
WTD-618
This commit is contained in:
Charles Hacskaylo 2014-12-31 10:39:39 -08:00 committed by Victor Woeltjen
parent f820cd47b6
commit d281bd52de
2 changed files with 15 additions and 14 deletions

View File

@ -1377,8 +1377,8 @@ label.checkbox.custom {
left: 10px; } left: 10px; }
/* line 47, ../sass/controls/_menus.scss */ /* line 47, ../sass/controls/_menus.scss */
.menu-element .super-menu { .menu-element .super-menu {
width: 400px; width: 450px;
height: 420px; } height: 430px; }
/* line 54, ../sass/controls/_menus.scss */ /* line 54, ../sass/controls/_menus.scss */
.menu-element .super-menu .contents { .menu-element .super-menu .contents {
overflow: none; } overflow: none; }
@ -1393,7 +1393,7 @@ label.checkbox.custom {
left: 0; left: 0;
padding-right: 5px; padding-right: 5px;
right: auto; right: auto;
width: 220.0px; width: 225px !important;
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; } overflow-y: auto; }
/* line 67, ../sass/controls/_menus.scss */ /* line 67, ../sass/controls/_menus.scss */
@ -1413,10 +1413,10 @@ label.checkbox.custom {
left: 5px; } left: 5px; }
/* line 83, ../sass/controls/_menus.scss */ /* line 83, ../sass/controls/_menus.scss */
.menu-element .super-menu .pane.right { .menu-element .super-menu .pane.right {
left: 220.0px; left: 225px;
right: 0; right: 0;
padding: 15px; padding: 25px;
width: auto; } width: 225px !important; }
/* line 94, ../sass/controls/_menus.scss */ /* line 94, ../sass/controls/_menus.scss */
.menu-element .menu-item-description .desc-area.icon { .menu-element .menu-item-description .desc-area.icon {
position: relative; position: relative;
@ -1424,7 +1424,8 @@ label.checkbox.custom {
font-size: 8em; font-size: 8em;
left: 0; left: 0;
height: 150px; height: 150px;
line-height: 150px; } line-height: 150px;
text-align: center; }
/* line 107, ../sass/controls/_menus.scss */ /* line 107, ../sass/controls/_menus.scss */
.menu-element .menu-item-description .desc-area.description { .menu-element .menu-item-description .desc-area.description {
color: #8c8c8c; color: #8c8c8c;

View File

@ -45,9 +45,9 @@
} }
} }
.super-menu { .super-menu {
$w: 400px; $w: 450px;
$h: $w + 20; $h: $w - 20;
$plw: $w * 0.55; $plw: $w * 0.5;
$prw: $w - $plw; $prw: $w - $plw;
width: $w; width: $w;
height: $h; height: $h;
@ -60,7 +60,7 @@
left: 0; left: 0;
padding-right: $interiorMargin; padding-right: $interiorMargin;
right: auto; right: auto;
width: $plw; width: $plw !important;
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
ul { ul {
@ -83,8 +83,8 @@
&.right { &.right {
left: $plw; left: $plw;
right: 0; right: 0;
padding: $interiorMargin * 3; padding: $interiorMargin * 5;
width: auto; width: $prw !important;
} }
} }
} }
@ -102,7 +102,7 @@
line-height: $h; line-height: $h;
// top: 0; right: 0; bottom: 5em; left: 0; // top: 0; right: 0; bottom: 5em; left: 0;
// height: 5em; // height: 5em;
// text-align: center; text-align: center;
} }
&.description { &.description {
color: lighten($bg, 30%); color: lighten($bg, 30%);