Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13542 anikendra 1
 
2
/**
3
 * Menus
4
 * --------------------------------------------------
5
 * Side panel structure
6
 */
7
 
8
.menu {
9
  position: absolute;
10
  top: 0;
11
  bottom: 0;
12
  z-index: $z-index-menu;
13
  overflow: hidden;
14
 
15
  min-height: 100%;
16
  max-height: 100%;
17
  width: $menu-width;
18
 
19
  background-color: $menu-bg;
20
 
21
  .scroll-content {
22
    z-index: $z-index-menu-scroll-content;
23
  }
24
 
25
  .bar-header {
26
    z-index: $z-index-menu-bar-header;
27
  }
28
}
29
 
30
.menu-content {
31
  @include transform(none);
32
  box-shadow: $menu-side-shadow;
33
}
34
 
35
.menu-open .menu-content .pane,
36
.menu-open .menu-content .scroll-content {
37
  pointer-events: none;
38
}
39
 
40
.grade-b .menu-content,
41
.grade-c .menu-content {
42
  @include box-sizing(content-box);
43
  right: -1px;
44
  left: -1px;
45
  border-right: 1px solid #ccc;
46
  border-left: 1px solid #ccc;
47
  box-shadow: none;
48
}
49
 
50
.menu-left {
51
  left: 0;
52
}
53
 
54
.menu-right {
55
  right: 0;
56
}
57
 
58
.aside-open.aside-resizing .menu-right {
59
  display: none;
60
}
61
 
62
.menu-animated {
63
  @include transition-transform($menu-animation-speed ease);
64
}