Merge branch '2.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / js / 3rdParty / codemirror / addon / fold / foldgutter.css
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 color: #555;
14 cursor: pointer;
15 }
16 .CodeMirror-foldgutter-open:after {
17 content: "\25BE";
18 }
19 .CodeMirror-foldgutter-folded:after {
20 content: "\25B8";
21 }