Project

General

Profile

Download (466 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * @file
3
 * Wireframes Styling
4
 *
5
 * Add wireframes to the basic layout elements.
6
 */
7

    
8
@import "base";
9

    
10

    
11
.with-wireframes {
12
  #header,
13
  #main,
14
  #content,
15
  #navigation,
16
  .region-sidebar-first,
17
  .region-sidebar-second,
18
  #footer,
19
  .region-bottom {
20
    outline: 1px solid #ccc;
21

    
22
    @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
23
      .lt-ie8 & {
24
        border: 1px solid #ccc; /* IE6/7 do not support the outline property. */
25
      }
26
    }
27
  }
28
}
(21-21/21)