Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
.sidebar-folded {
2
  .sidebar {
3
    .sidebar-header {
4
        width: $sidebar-folded-width;
5
        .sidebar-brand {
6
          display: none;
7
        }
8
    }
9
  }
10
  .page-wrapper {
11
    width: calc(100% - #{$sidebar-folded-width});
12
    margin-left: $sidebar-folded-width;
13
    .navbar {
14
      width: calc(100% - #{$sidebar-folded-width});
15
      left: $sidebar-folded-width;
16
      right: 0;
17
    }
18
  }
19
  &:not(.open-sidebar-folded) {
20
    .sidebar {
21
      width: $sidebar-folded-width;
22
      .sidebar-header {
23
        width: $sidebar-folded-width;
24
        .sidebar-brand {
25
          opacity: 0;
26
          visibility: hidden;
27
          width: 0;
28
        }
29
      }
30
      .sidebar-body {
31
        .nav {
32
          .nav-item {
33
            .nav-link {
34
              .link-title,
35
              .link-arrow {
36
                  visibility: hidden;
37
                  opacity: 0;
38
              }
39
            }
40
            &.nav-category {
41
              visibility: hidden;
42
              &::before {
43
                content: '';
44
                width: 5px;
45
                height: 5px;
46
                border-radius: 50%;
47
                background: $text-muted;
48
                position: absolute;
49
                top: 5px;
50
                left: 6px;
51
                visibility: visible;
52
              }
53
            }
54
          }
55
          &.sub-menu {
56
            display: none;
57
          }
58
        }
59
      }
60
    }
61
  }
62
}
63
 
64
.sidebar-open, .settings-open {
65
  @media(max-width: 991px) {
66
    .main-wrapper {
67
      &::before {
68
        content: '';
69
        width: 100vw;
70
        background: rgba(0, 0, 0, .3);
71
        position: fixed;
72
        top: 0;
73
        bottom: 0;
74
        right: 0;
75
        z-index: 99;
76
        -webkit-transition: all 3s ease;
77
        transition: all 3s ease;
78
        z-index: 980;
79
      }
80
    }
81
  }
82
}