PluginProbe
Code Snippets / 3.5.0
Code Snippets v3.5.0
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / css / edit / _tooltips.scss

_tooltips.scss in Code Snippets 3.5.0, at css/edit/_tooltips.scss

65 lines 904 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 .editor-help-tooltip {
3 cursor: help;
4 padding: 0.3em 0.3em 0;
5 display: inline-block;
6 font-size: 10px;
7 background: transparent !important;
8 }
9
10 .snippet-editor-help {
11 position: absolute;
12 right: 5px;
13 top: 5px;
14
15 &:hover .editor-help-text {
16 visibility: visible;
17 opacity: 1;
18 }
19 }
20
21 .editor-help-text {
22 visibility: hidden;
23 background-color: #555;
24 color: #fff;
25 padding: 5px;
26 border-radius: 6px;
27 position: absolute;
28 z-index: 99;
29 top: 125%;
30 right: 0;
31 margin-right: -10px;
32 opacity: 0;
33 transition: opacity 0.3s;
34 white-space: nowrap;
35 font-size: small;
36
37 &::after {
38 content: "";
39 position: absolute;
40 bottom: 100%;
41 right: 0;
42 margin-right: 10px;
43 border: 5px solid transparent;
44 border-bottom-color: #555;
45 }
46
47 td:first-child {
48 padding-right: 0.5em;
49 }
50
51 .mac-key {
52 display: none;
53 }
54
55 &.platform-mac {
56 .mac-key {
57 display: inline;
58 }
59
60 .pc-key {
61 display: none;
62 }
63 }
64 }
65