aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/css/index.scss
blob: d9c9b4b41b38de196204de194ab8467fe5d85793 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
@import 'codemirror/lib/codemirror';
@import 'codemirror/addon/hint/show-hint';
@import 'codemirror/theme/material-darker';

.CodeMirror {
  font-size: 16px;
  height: 100%;
}

.annotations-gutter {
	width: 12px;
}

.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: rgba(128, 203, 196, 0.2);
}

.xtext-marker_write {
  background: rgba(255, 229, 100, 0.2);
}

.problem-class, .problem-enum {
  @extend .cm-type;
}

.problem-abstract {
	font-style: italic;
}

.problem-reference {
  @extend .cm-def;
}

.problem-containment {
	font-weight: bold;
}

.cm-quoted-name, .problem-enum-node {
  @extend .cm-atom;
}

.problem-new-node {
	font-style: italic;
}

.problem-variable {
  @extend .cm-variable;
}

.problem-singleton-variable {
  opacity: 0.7;
}