codecheck

Форк
0
87 строк · 1.6 Кб
1
// core
2
.p-splitter {
3
    display: flex;
4
    flex-wrap: nowrap;
5
}
6

7
.p-splitter-vertical {
8
    flex-direction: column;
9
}
10

11
.p-splitter-gutter {
12
    flex-grow: 0;
13
    flex-shrink: 0;
14
    display: flex;
15
    align-items: center;
16
    justify-content: center;
17
    cursor: col-resize;
18
}
19

20
.p-splitter-horizontal.p-splitter-resizing {
21
    cursor: col-resize;
22
    user-select: none;
23
}
24

25
.p-splitter-horizontal > .p-splitter-gutter > .p-splitter-gutter-handle {
26
    height: 24px;
27
    width: 100%;
28
}
29

30
.p-splitter-horizontal > .p-splitter-gutter {
31
    cursor: col-resize;
32
}
33

34
.p-splitter-vertical.p-splitter-resizing {
35
    cursor: row-resize;
36
    user-select: none;
37
}
38

39
.p-splitter-vertical > .p-splitter-gutter {
40
    cursor: row-resize;
41
}
42

43
.p-splitter-vertical > .p-splitter-gutter > .p-splitter-gutter-handle {
44
    width: 24px;
45
    height: 100%;
46
}
47

48
.p-splitter-panel {
49
    flex-grow: 1;
50
    overflow: hidden;
51
}
52

53
.p-splitter-panel-nested {
54
    display: flex;
55
}
56

57
.p-splitter-panel .p-splitter {
58
    flex-grow: 1;
59
    border: 0 none;
60
}
61

62
// theme
63
.p-splitter {
64
    border: $panelContentBorder;
65
    background: $panelContentBg;
66
    border-radius: $borderRadius;
67
    color: $panelContentTextColor;
68

69
    .p-splitter-gutter {
70
        transition: $actionIconTransition;
71
        background: $splitterGutterBg;
72
        
73
        .p-splitter-gutter-handle {
74
            background: $splitterGutterHandleBg;
75
            transition: $formElementTransition;
76
            outline-color: transparent;
77
            
78
            &:focus-visible {
79
                @include focused();
80
            }
81
        }
82
    }
83

84
    .p-splitter-gutter-resizing {
85
        background: $splitterGutterHandleBg;
86
    }
87
}

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.