[Mobile] Clean Up

Cleaned up scss files. Removed
repeated statements and added
comments. Also commented js files
like QueryService and InfoGesture.
This commit is contained in:
Shivam Dave
2015-07-22 10:25:21 -07:00
parent 827cb27f28
commit 926b3d075c
7 changed files with 79 additions and 91 deletions

View File

@@ -47,6 +47,8 @@
// classes used for the left menu and the
// right representation.
.browse-hidetree {
// Sets the left tree menu when the tree
// is hidden.
.mobile-pane.left-menu {
@include phoneandtablet {
@include slMenuTransitions;
@@ -59,6 +61,8 @@
}
}
// Sets the right represenation when
// the tree is hidden.
.mobile-pane.right-repr {
@include phoneandtablet {
@include slMenuTransitions;
@@ -74,6 +78,8 @@
// orientation combination, separate
// parameters are used)
.browse-showtree {
// Sets the left tree menu when the tree
// is shown.
.mobile-pane.left-menu {
@include phoneandtablet {
@include slMenuTransitions;
@@ -82,6 +88,8 @@
display: block !important;
width: auto !important;
}
// On both phones and tablets, the amount of
// space allowed for the right pane is specified
@include phonePortrait {
right: $phoneRepSizePortrait !important;
}
@@ -95,11 +103,15 @@
right: $tabletRepSizeLandscape !important;
}
}
// Sets the right represenation when
// the tree is shown.
.mobile-pane.right-repr {
@include phoneandtablet {
@include slMenuTransitions;
left: auto !important;
}
// On both phones and tablets, the width of
// the right pane is specified
@include phonePortrait {
width: $phoneRepSizePortrait !important;
}