Sha256: a1a979e74e95d247270fae45f03cae1cf3b720db1ca2d7f682fc4e72c28bf8d5

Contents?: true

Size: 1.85 KB

Versions: 6

Compression:

Stored size: 1.85 KB

Contents

/**
 * @copyright   2010-2014, The Titon Project
 * @license     http://opensource.org/licenses/BSD-3-Clause
 * @link        http://titon.io
 */

@import "../common";

.fluid {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: auto;
}

.show-retina,
.show-print { display: none !important; }

// Desktop states
@include in-desktop {
    .show-tablet,
    .show-mobile,
    .hide-desktop { display: none !important; }
}

// Tablet states
@include in-tablet {
    .show-desktop,
    .show-mobile,
    .hide-tablet { display: none !important; }
}

// Mobile states
@include in-mobile  {
    .show-desktop,
    .show-tablet,
    .hide-mobile { display: none !important; }
}

// Large states
@include in-large {
    .show-medium,
    .show-small,
    .hide-large { display: none !important; }
}

// Medium states
@include in-medium {
    .show-large,
    .show-small,
    .hide-medium { display: none !important; }
}

// Small states
@include in-small  {
    .show-large,
    .show-medium,
    .hide-small { display: none !important; }
}

// Orientation states
@include if-portrait {
    .show-landscape,
    .hide-portrait { display: none !important; }
}

@include if-landscape {
    .show-portrait,
    .hide-landscape { display: none !important; }
}

// Type states
@include if-retina {
    .hide-retina { display: none !important; }
    .show-retina { display: block !important; }
    table.show-retina { display: table !important; }
    tr.show-retina { display: table-row !important; }
    td.show-retina,
    th.show-retina { display: table-cell !important; }
}

@media print {
    .hide-print { display: none !important; }
    .show-print { display: block !important; }
    table.show-print { display: table !important; }
    tr.show-print { display: table-row !important; }
    td.show-print,
    th.show-print { display: table-cell !important; }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
titon-toolkit-1.5.3 scss/toolkit/layout/responsive.scss
titon-toolkit-1.5.2 scss/toolkit/layout/responsive.scss
titon-toolkit-1.5.1 scss/toolkit/layout/responsive.scss
titon-toolkit-1.5.0 scss/toolkit/layout/responsive.scss
titon-toolkit-1.4.1 scss/toolkit/layout/responsive.scss
titon-toolkit-1.4.0 scss/toolkit/layout/responsive.scss