summaryrefslogtreecommitdiffstats
path: root/deluge/ui/web/resources/themes/stylesheets/ext4/default/util/_splitter.scss
blob: 3fc87a63d727c77df5f9562469beb54c466bc42b (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@mixin extjs-splitter {
    .#{$prefix}splitter {
        .#{$prefix}collapse-el {
            position: absolute;

            cursor: pointer;

            background-color: transparent;
            background-repeat: no-repeat !important;
        }
    }

    .#{$prefix}layout-split-left,
    .#{$prefix}layout-split-right {
        top: 50%;

        margin-top: -17px;

        width: 5px;
        height: 35px;
    }

    .#{$prefix}layout-split-top,
    .#{$prefix}layout-split-bottom {
        left: 50%;

        width: 35px;
        height: 5px;

        margin-left: -17px;
    }

    .#{$prefix}layout-split-left {
        background: no-repeat top right;
        background-image: theme-background-image($theme-name, 'util/splitter/mini-left.gif');
    }

    .#{$prefix}layout-split-right {
        background: no-repeat top left;
        background-image: theme-background-image($theme-name, 'util/splitter/mini-right.gif');
    }

    .#{$prefix}layout-split-top {
        background: no-repeat top left;
        background-image: theme-background-image($theme-name, 'util/splitter/mini-top.gif');
    }

    .#{$prefix}layout-split-bottom {
        background: no-repeat top left;
        background-image: theme-background-image($theme-name, 'util/splitter/mini-bottom.gif');
    }

    .#{$prefix}splitter-collapsed {
        .#{$prefix}layout-split-left {
            background: no-repeat top left;
            background-image: theme-background-image($theme-name, 'util/splitter/mini-right.gif');
        }

        .#{$prefix}layout-split-right {
            background: no-repeat top right;
            background-image: theme-background-image($theme-name, 'util/splitter/mini-left.gif');
        }

        .#{$prefix}layout-split-top {
            background: no-repeat top left;
            background-image: theme-background-image($theme-name, 'util/splitter/mini-bottom.gif');
        }

        .#{$prefix}layout-split-bottom {
            background: no-repeat top left;
            background-image: theme-background-image($theme-name, 'util/splitter/mini-top.gif');
        }
    }

    .#{$prefix}splitter-horizontal {
        cursor: e-resize;
        cursor: row-resize;
        font-size:1px;
    }
    .#{$prefix}splitter-vertical {
        cursor: e-resize;
        cursor: col-resize;
        font-size:1px;
    }
    .#{$prefix}splitter-collapsed {
        cursor: default;
    }

    .#{$prefix}splitter-active {
        z-index: 4;
        font-size:1px;
        background-color: rgb(180, 180, 180);
        @include opacity(0.8);
    }
    .#{$prefix}splitter-active {
        .#{$prefix}collapse-el {
            @include opacity(0.3);
        }
    }

    .#{$prefix}proxy-el {
        position: absolute;
        background: rgb(180, 180, 180);
        @include opacity(0.8);
    }
}