Project

General

Profile

1
/* panels */
2
.md-panel-full {
3
    .border-box();
4
    position: relative;
5
    overflow: hidden;
6
    min-height: 100%;
7
    > .uk-grid {
8
        height: 100%;
9
        [class*=uk-width] {
10
            height: 100%;
11
        }
12
    }
13
    .md-panel-full-aside {
14
        margin: 16px 16px 32px;
15
        padding: 16px;
16
        &.md-panel-full-aside-bg {
17
            background: @white;
18
        }
19
    }
20
    .md-panel-full-content {
21
        background: @white;
22
        padding: 25px 25px 90px;
23
        width: inherit;
24
        min-width: 100%;
25
        min-height: 100%;
26
        > .md-panel-full-content-inner {
27
            position: relative;
28
            z-index: 10;
29
        }
30
        &:before {
31
            width: inherit;
32
            content: '';
33
            position: absolute;
34
            background: @white;
35
            display: block;
36
            right: 0;
37
            top: 0;
38
            bottom: 0;
39
            .md-box-shadow-left();
40
            z-index: 5;
41
        }
42
        .md-panel-full-content-header {
43
            margin-bottom: 24px;
44
            .md-panel-full-content-menu {
45
                float: right;
46
            }
47
        }
48
    }
49
}
(7-7/12)