[Frontend] Fixed styles that were breaking Create menu

WTD-1404
This commit is contained in:
Charles Hacskaylo
2015-06-30 16:01:53 -07:00
parent f03a9bcc08
commit 9f38914faa
3 changed files with 11 additions and 11 deletions

View File

@@ -612,16 +612,16 @@ mct-container {
padding: 5px 0; } padding: 5px 0; }
/* line 201, ../sass/user-environ/_layout.scss */ /* line 201, ../sass/user-environ/_layout.scss */
.browse-mode .split-layout .pane.left { .browse-mode .split-layout .split-pane-component.pane.left {
min-width: 150px; min-width: 150px;
max-width: 50%; } max-width: 50%; }
/* line 210, ../sass/user-environ/_layout.scss */ /* line 210, ../sass/user-environ/_layout.scss */
.edit-mode .split-layout .pane.right { .edit-mode .split-layout .split-pane-component.pane.right {
min-width: 150px; min-width: 150px;
max-width: 50%; } max-width: 50%; }
/* line 213, ../sass/user-environ/_layout.scss */ /* line 213, ../sass/user-environ/_layout.scss */
.edit-mode .split-layout .pane.right .pane.bottom { .edit-mode .split-layout .split-pane-component.pane.right .split-pane-component.pane.bottom {
min-height: 50px; min-height: 50px;
max-height: 80%; } max-height: 80%; }
@@ -4985,14 +4985,14 @@ input[type="text"] {
width: 100%; } width: 100%; }
/* line 5, ../sass/_initialization.scss */ /* line 5, ../sass/_initialization.scss */
.browse-mode .split-layout .pane.left { .browse-mode .split-layout .split-pane-component.pane.left {
width: 15%; } width: 15%; }
/* line 13, ../sass/_initialization.scss */ /* line 13, ../sass/_initialization.scss */
.edit-mode .split-layout .pane.right { .edit-mode .split-layout .split-pane-component.pane.right {
width: 15%; } width: 15%; }
/* line 15, ../sass/_initialization.scss */ /* line 15, ../sass/_initialization.scss */
.edit-mode .split-layout .pane.right .pane.bottom { .edit-mode .split-layout .split-pane-component.pane.right .pane.bottom {
height: 30%; } height: 30%; }
/***************************************************************************** /*****************************************************************************

View File

@@ -2,7 +2,7 @@
.browse-mode { .browse-mode {
.split-layout { .split-layout {
.pane.left { .split-pane-component.pane.left {
width: 15%; width: 15%;
} }
} }
@@ -10,7 +10,7 @@
.edit-mode { .edit-mode {
.split-layout { .split-layout {
.pane.right { .split-pane-component.pane.right {
width: 15%; width: 15%;
.pane.bottom { .pane.bottom {
height: 30%; height: 30%;

View File

@@ -198,7 +198,7 @@
.browse-mode { .browse-mode {
.split-layout { .split-layout {
.pane.left { .split-pane-component.pane.left {
min-width: 150px; min-width: 150px;
max-width: 50%; max-width: 50%;
} }
@@ -207,10 +207,10 @@
.edit-mode { .edit-mode {
.split-layout { .split-layout {
.pane.right { .split-pane-component.pane.right {
min-width: 150px; min-width: 150px;
max-width: 50%; max-width: 50%;
.pane.bottom { .split-pane-component.pane.bottom {
min-height: 50px; min-height: 50px;
max-height: 80%; max-height: 80%;
} }