UNPKG

854 BSCSSView Raw
1// Copyright 2016 Palantir Technologies, Inc. All rights reserved.
2
3@import "../../common/variables";
4@import "../../common/mixins";
5
6.#{$ns}-key-combo {
7 @include pt-flex-container(row, $pt-grid-size / 2);
8 align-items: center;
9}
10
11.#{$ns}-hotkey-dialog {
12 padding-bottom: 0;
13 top: $pt-grid-size * 4;
14
15 .#{$ns}-dialog-body {
16 margin: 0;
17 padding: 0;
18 }
19
20 .#{$ns}-hotkey-label {
21 flex-grow: 1;
22 }
23}
24
25.#{$ns}-hotkey-column {
26 margin: auto;
27 max-height: 80vh;
28 overflow-y: auto;
29 padding: $pt-grid-size * 3;
30
31 .#{$ns}-heading {
32 margin-bottom: $pt-grid-size * 2;
33
34 &:not(:first-child) {
35 margin-top: $pt-grid-size * 4;
36 }
37 }
38}
39
40.#{$ns}-hotkey {
41 align-items: center;
42 display: flex;
43 justify-content: space-between;
44 margin-left: 0;
45 margin-right: 0;
46
47 &:not(:last-child) {
48 margin-bottom: $pt-grid-size;
49 }
50}