aboutsummaryrefslogtreecommitdiff
path: root/less/responsive-utilities.less
blob: c69851bb96b9302da44f175aa40596a399b7e450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//
// Responsive: Utility classes
// --------------------------------------------------


// IE10 Metro responsive
// Required for Windows 8 Metro split-screen snapping with IE10
//
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
@-ms-viewport{
  width: device-width;
}

// IE10 on Windows Phone 8
// IE10 on WP8 doesn't report CSS pixels, but actual device pixels. In
// other words, say on a Lumia, you'll get 768px as the device width,
// meaning users will see the tablet styles and not phone styles.
//
// Alternatively you can override this with JS (see source below), but
// we won't be doing that here given our limited scope.
//
// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
@media screen and (max-width: 400px) {
  @-ms-viewport{
    width: 320px;
  }
}

// Hide from screenreaders and browsers
// Credit: HTML5 Boilerplate
.hidden {
  display: none;
  visibility: hidden;
}

// Visibility utilities

// For Phones
.visible-phone     { display: inherit !important; }
.visible-tablet    { display: none !important; }
.visible-desktop   { display: none !important; }

.hidden-phone      { display: none !important; }
.hidden-tablet     { display: inherit !important; }
.hidden-desktop    { display: inherit !important; }


// Tablets & small desktops only
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
  .visible-phone    { display: none !important; }
  .visible-tablet    { display: inherit !important; }
  .visible-desktop   { display: none !important; }

  .hidden-phone      { display: inherit !important; }
  .hidden-tablet     { display: none !important; }
  .hidden-desktop    { display: inherit !important; }
}

// For desktops
@media (min-width: @screen-desktop) {
  .visible-phone     { display: none !important; }
  .visible-tablet    { display: none !important; }
  .visible-desktop   { display: inherit !important; }

  .hidden-phone      { display: inherit !important; }
  .hidden-tablet     { display: inherit !important; }
  .hidden-desktop    { display: none !important; }
}

// Print utilities
.visible-print    { display: none !important; }
.hidden-print     { }

@media print {
  .visible-print  { display: inherit !important; }
  .hidden-print   { display: none !important; }
}