aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/css/xtext/xtext-codemirror.css
blob: 831b6daf12250fdf06ad4d291f1b4b985cad1988 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
.CodeMirror {
	height: 100%;
}

.annotations-gutter {
	width: 12px;
	background: #f0f0f0;
}

.xtext-annotation_error {
	width: 12px;
	height: 12px;
	background-image: url('images/error_an.gif');
	background-repeat: no-repeat;
}

.xtext-annotation_warning {
	width: 12px;
	height: 12px;
	background-image: url('images/warning_an.gif');
	background-repeat: no-repeat;
}

.xtext-annotation_info {
	width: 12px;
	height: 12px;
	background-image: url('images/info_an.gif');
	background-repeat: no-repeat;
}

.xtext-marker_error {
	z-index: 30;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAABmJLR0QA/wD/AP+gvaeTAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==");
	background-repeat: repeat-x;
	background-position: left bottom;
}

.xtext-marker_warning {
	z-index: 20;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAABmJLR0QA/wD/AP+gvaeTAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=");
	background-repeat: repeat-x;
	background-position: left bottom;
}

.xtext-marker_info {
	z-index: 10;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAABmJLR0QA/wD/AP+gvaeTAAAANklEQVQI12NkgIIVRx8tZGBg6GZccfRRKAMDgw8DA0M3AwPDIiYGBoZKBgaG7ghruSsMDAwpABH5CoqwzCoTAAAAAElFTkSuQmCC");
	background-repeat: repeat-x;
	background-position: left bottom;
}

.xtext-marker_read {
	background-color: #ddd;
}

.xtext-marker_write {
	background-color: yellow;
}