Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8dc69af8b6d697d90795987a3c949babe85ebab0 (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
.root {
	-type-info-color: darkgray;
}

.styled-text-area .dart.quick_link {
	-styled-text-color: blue !important;
	-efx-decoration: "underline";
}

.styled-text-area .dart.quick_link Text {
	-fx-fill: red !important;
}

.styled-text-area .list-view {
	-fx-background-color: white;

	-source-editor-code: rgb(0, 0, 0);
	-source-editor-operator: rgb(0, 0, 0);
	-source-editor-bracket: rgb(0, 0, 0);
	-source-editor-keyword: rgb(127, 0, 85);
	-source-editor-string:  rgb(42, 0, 255);
	-source-editor-number:  #6c83c4;
	-source-editor-doc: rgb(63, 127, 95);
	-source-editor-api-doc:  rgb(63, 95, 191);
	-source-editor-buitin-type: #74a567;
	-source-editor-annotation: rgb(200, 200, 200);

	-source-editor-markup-doc: rgb(63, 95, 191);
	-source-editor-markup-property-name: rgb(0, 0, 128);
	-source-editor-markup-property-value: #7f007f;
	-source-editor-markup-tag: #3f7f80;
	-source-editor-markup-extra: rgb(128, 128, 128);
}

.styled-text-hover .errors {
	-fx-background-color: red;
	-fx-padding: 10;
	-fx-background-radius: 5;
}
.styled-text-hover .warnings {
	-fx-background-color: darkorange;
	-fx-padding: 10;
	-fx-background-radius: 5;
}
.styled-text-hover .infos {
	-fx-background-color: blanchediamond;
	-fx-padding: 10;
	-fx-background-radius: 5;
}
.styled-text-hover .docs {
	-fx-background-color: aliceblue;
	-fx-padding: 10;
	-fx-background-radius: 5;
}
.styled-text-hover .others {
	-fx-background-color: gray;
	-fx-padding: 10;
	-fx-background-radius: 5;
}

.styled-text-hover .context-info {
	-fx-background-color: antiquewhite;
	-fx-border-color: black;
	-fx-border-width: thin;
}

.styled-text-hover {
/*  -fx-background-color: #ecebec;
	-fx-background-radius: 5;
	-fx-padding: 10;
	-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.5) , 10, 0.0 , 0 , 3 );
*/
}

Back to the top