PluginProbe ʕ •ᴥ•ʔ
SiteOrigin CSS / 1.0.4
SiteOrigin CSS v1.0.4
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 / fold / foldgutter.css
so-css / lib / codemirror / addon / fold Last commit date
brace-fold.js 11 years ago brace-fold.min.js 10 years ago comment-fold.js 11 years ago comment-fold.min.js 10 years ago foldcode.js 11 years ago foldcode.min.js 10 years ago foldgutter.css 11 years ago foldgutter.js 11 years ago foldgutter.min.js 10 years ago indent-fold.js 11 years ago indent-fold.min.js 10 years ago markdown-fold.js 11 years ago markdown-fold.min.js 10 years ago xml-fold.js 11 years ago xml-fold.min.js 10 years ago
foldgutter.css
21 lines
1 .CodeMirror-foldmarker {
2 color: blue;
3 text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
4 font-family: arial;
5 line-height: .3;
6 cursor: pointer;
7 }
8 .CodeMirror-foldgutter {
9 width: .7em;
10 }
11 .CodeMirror-foldgutter-open,
12 .CodeMirror-foldgutter-folded {
13 cursor: pointer;
14 }
15 .CodeMirror-foldgutter-open:after {
16 content: "\25BE";
17 }
18 .CodeMirror-foldgutter-folded:after {
19 content: "\25B8";
20 }
21