[Mobile] IN PROGRESS: Hide name in view-switcher in mobile

open #74
This commit is contained in:
Charles Hacskaylo 2015-08-26 13:04:09 -07:00
parent f80266b23f
commit b8b9721ddc
2 changed files with 16 additions and 9 deletions

View File

@ -889,24 +889,27 @@ mct-container {
/* line 120, ../sass/mobile/_layout.scss */
.object-browse-bar .view-switcher {
margin-right: 0 !important; }
/* line 122, ../sass/mobile/_layout.scss */
.object-browse-bar .view-switcher .name {
display: none; }
/* line 125, ../sass/mobile/_layout.scss */
/* line 129, ../sass/mobile/_layout.scss */
.tree-holder {
overflow-x: hidden !important; }
/* line 129, ../sass/mobile/_layout.scss */
/* line 133, ../sass/mobile/_layout.scss */
.mobile-disable-select {
-moz-user-select: -moz-none;
-ms-user-select: none;
-webkit-user-select: none;
user-select: none; }
/* line 134, ../sass/mobile/_layout.scss */
/* line 138, ../sass/mobile/_layout.scss */
.mobile-hide,
.mobile-hide-important {
display: none !important; }
/* line 139, ../sass/mobile/_layout.scss */
/* line 143, ../sass/mobile/_layout.scss */
.mobile-back-hide {
pointer-events: none;
-moz-transition-property: opacity;
@ -923,7 +926,7 @@ mct-container {
transition-timing-function: ease-in-out;
opacity: 0; }
/* line 144, ../sass/mobile/_layout.scss */
/* line 148, ../sass/mobile/_layout.scss */
.mobile-back-unhide {
pointer-events: all;
-moz-transition-property: opacity;
@ -940,18 +943,18 @@ mct-container {
transition-timing-function: ease-in-out;
opacity: 1; } }
@media screen and (orientation: portrait) and (max-width: 514px) and (max-height: 740px) and (max-device-width: 799px) and (max-device-height: 1024px) {
/* line 153, ../sass/mobile/_layout.scss */
/* line 157, ../sass/mobile/_layout.scss */
.browse-showtree .pane.left.treeview {
width: 90% !important; }
/* line 156, ../sass/mobile/_layout.scss */
/* line 160, ../sass/mobile/_layout.scss */
.browse-showtree .pane.right-repr {
left: 0 !important;
transform: translateX(90%); }
/* line 159, ../sass/mobile/_layout.scss */
/* line 163, ../sass/mobile/_layout.scss */
.browse-showtree .pane.right-repr #content-area {
opacity: 0; } }
@media screen and (min-device-width: 800px) and (min-device-height: 1025px), screen and (min-device-width: 1025px) and (min-device-height: 800px) {
/* line 167, ../sass/mobile/_layout.scss */
/* line 171, ../sass/mobile/_layout.scss */
.desktop-hide {
display: none; } }
/*****************************************************************************

View File

@ -119,6 +119,10 @@
}
.view-switcher {
margin-right: 0 !important;
.name {
// Hide the name in mobile
display: none;
}
}
}