PluginProbe ʕ •ᴥ•ʔ
SiteOrigin CSS / 1.2.13
SiteOrigin CSS v1.2.13
1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.10 1.5.11 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0
so-css / lib / codemirror / addon / dialog / dialog.css
so-css / lib / codemirror / addon / dialog Last commit date
dialog.css 6 years ago dialog.js 6 years ago dialog.min.js 6 years ago
dialog.css
33 lines
1 .CodeMirror-dialog {
2 position: absolute;
3 left: 0; right: 0;
4 background: inherit;
5 z-index: 15;
6 padding: .1em .8em;
7 overflow: hidden;
8 color: inherit;
9 }
10
11 .CodeMirror-dialog-top {
12 border-bottom: 1px solid #eee;
13 top: 0;
14 }
15
16 .CodeMirror-dialog-bottom {
17 border-top: 1px solid #eee;
18 bottom: 0;
19 }
20
21 .CodeMirror-dialog input {
22 border: none;
23 outline: none;
24 background: transparent;
25 width: 20em;
26 color: inherit;
27 font-family: monospace;
28 }
29
30 .CodeMirror-dialog button {
31 font-size: 70%;
32 }
33