[Mobile] Phone

Adjusted to differentiate
phones and tablets.
This commit is contained in:
Dave 2015-07-08 16:28:40 -07:00
parent cdcaedc8dd
commit 7974f33781
2 changed files with 19 additions and 7 deletions

View File

@ -731,7 +731,15 @@ mct-container {
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
@media screen and (max-width: 800px) {
@media screen and (max-width: 514px) {
/* line 26, ../sass/mobile/_layout.scss */
.holder-hide {
-moz-transition-duration: 0.2s;
-o-transition-duration: 0.2s;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
left: -108px; } }
@media screen and (min-width: 515px) and (max-width: 800px) {
/* line 26, ../sass/mobile/_layout.scss */
.holder-hide {
-moz-transition-duration: 0.2s;
@ -741,7 +749,7 @@ mct-container {
left: -150px; } }
@media screen and (max-width: 800px) {
/* line 33, ../sass/mobile/_layout.scss */
/* line 37, ../sass/mobile/_layout.scss */
.holder-show {
-moz-transition-duration: 0.2s;
-o-transition-duration: 0.2s;
@ -750,15 +758,15 @@ mct-container {
left: 0px; } }
@media screen and (max-width: 514px) {
/* line 40, ../sass/mobile/_layout.scss */
/* line 44, ../sass/mobile/_layout.scss */
.browse-manage {
width: 100px; } }
@media screen and (min-width: 515px) and (max-width: 800px) {
/* line 40, ../sass/mobile/_layout.scss */
/* line 44, ../sass/mobile/_layout.scss */
.browse-manage {
width: 150px; } }
@media screen and (min-width: 801px) {
/* line 40, ../sass/mobile/_layout.scss */
/* line 44, ../sass/mobile/_layout.scss */
.browse-manage {
min-width: 150px;
max-width: 800px;

View File

@ -24,7 +24,11 @@
// NOTE: Added to adjust the browse folder tree list view
.holder-hide {
@include phoneandtablet {
@include phone {
@include transition-duration(.2s);
left: -108px;
}
@include tablet {
@include transition-duration(.2s);
left: -150px;
}