diff options
Diffstat (limited to 'js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css')
-rw-r--r-- | js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css index 442a5183..ed314fc9 100644 --- a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css +++ b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.css | |||
@@ -51,3 +51,41 @@ | |||
51 | border-color: #616161; | 51 | border-color: #616161; |
52 | } | 52 | } |
53 | 53 | ||
54 | .viewOptions .shortKeys{ | ||
55 | float: right; | ||
56 | margin-right:30px; | ||
57 | border: 1px solid #616161; | ||
58 | border-radius: 6px; | ||
59 | padding-left: 5px; | ||
60 | padding-right: 5px; | ||
61 | cursor:pointer; | ||
62 | position:relative; | ||
63 | } | ||
64 | |||
65 | .viewOptions .shortKeys .dropdownArrow{ | ||
66 | font-size: 0.7em; | ||
67 | color:#d1d1d1; | ||
68 | } | ||
69 | |||
70 | .viewOptions .shortKeys .list{ | ||
71 | position:absolute; | ||
72 | border: 1px solid #616161; | ||
73 | bottom: 16px; | ||
74 | left: -2px; | ||
75 | opacity: 1; | ||
76 | white-space: nowrap; | ||
77 | padding:5px; | ||
78 | background-color: #313131; | ||
79 | } | ||
80 | |||
81 | .viewOptions .shortKeys .list div{ | ||
82 | display: block; | ||
83 | } | ||
84 | |||
85 | .viewOptions .shortKeys .hide{ | ||
86 | visibility: hidden; | ||
87 | } | ||
88 | |||
89 | .viewOptions .shortKeys .show{ | ||
90 | visibility: visible; | ||
91 | } \ No newline at end of file | ||