[Mobile] Folder View

Folder representation now
will be a list.
This commit is contained in:
Dave
2015-07-07 13:02:40 -07:00
parent 2fc447e16f
commit 8a0b77ec5c
7 changed files with 138 additions and 80 deletions

View File

@@ -19,6 +19,28 @@
* this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information.
*****************************************************************************/
// Mixins for devices
@mixin phone {
@media screen and (max-width: $phoMaxW) {
@content
}
}
@mixin tablet {
@media screen and (min-width: $tabMinW) and (max-width: $tabMaxW) {
@content
}
}
@mixin desktop {
@media screen and (min-width: $compMinW) {
@content
}
}
@mixin absPosDefault($offset: 0px, $overflowHidden: hidden) {
overflow: $overflowHidden;
position: absolute;