Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Caks2016-12-22 11:10:51 +0000
committerChristoph Caks2016-12-22 11:12:16 +0000
commitf0570b671571fb71179ac4ee4de127ca224d5240 (patch)
tree2f2081cd65b9e4f3fd5525be8cc4269250335cd7
parentd9feabb2e3b0f339fb8ee758a1a6fccd9077f0d8 (diff)
downloadorg.eclipse.efxclipse-f0570b671571fb71179ac4ee4de127ca224d5240.tar.gz
org.eclipse.efxclipse-f0570b671571fb71179ac4ee4de127ca224d5240.tar.xz
org.eclipse.efxclipse-f0570b671571fb71179ac4ee4de127ca224d5240.zip
refs #36
removed paddings from different hover types
-rw-r--r--bundles/code/org.eclipse.fx.code.editor.fx.themes/css/dark-highlight.css30
-rw-r--r--bundles/code/org.eclipse.fx.code.editor.fx.themes/css/highlight.css34
2 files changed, 17 insertions, 47 deletions
diff --git a/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/dark-highlight.css b/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/dark-highlight.css
index d0b2925c1..375144225 100644
--- a/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/dark-highlight.css
+++ b/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/dark-highlight.css
@@ -83,29 +83,19 @@
}
.styled-text-hover .errors {
- -fx-background-color: darkred;
- -fx-padding: 10;
- -fx-background-radius: 5;
+ -fx-background-color: firebrick;
}
.styled-text-hover .warnings {
- -fx-background-color: darkorange;
- -fx-padding: 10;
- -fx-background-radius: 5;
+ -fx-background-color: tomato;
}
.styled-text-hover .infos {
- -fx-background-color: blanchediamond;
- -fx-padding: 10;
- -fx-background-radius: 5;
+ -fx-background-color: dimgrey;
}
.styled-text-hover .docs {
- -fx-background-color: darkblue;
- -fx-padding: 10;
- -fx-background-radius: 5;
+ -fx-background-color: lightblue;
}
.styled-text-hover .others {
- -fx-background-color: gray;
- -fx-padding: 10;
- -fx-background-radius: 5;
+ -fx-background-color: palegreen;
}
.styled-text-hover .context-info {
@@ -118,10 +108,8 @@
-fx-text-fill: #b8c4d1;
}
-.styled-text-hover {
-/* -fx-background-color: #2b5696;
- -fx-background-radius: 5;
- -fx-padding: 10;
- -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.5) , 10, 0.0 , 0 , 3 );
-*/
+.resize-popup-pane {
+ -fx-background-color: rgba(230,230,230,0.7);
+ -fx-background-radius: 5px;
+ -efx-resize-handle-size: 5px;
} \ No newline at end of file
diff --git a/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/highlight.css b/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/highlight.css
index 162fcc506..63b2adf7c 100644
--- a/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/highlight.css
+++ b/bundles/code/org.eclipse.fx.code.editor.fx.themes/css/highlight.css
@@ -65,30 +65,21 @@
-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;
+ -fx-background-color: blanchedalmond;
}
.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;
+ -fx-background-color: palegreen;
}
.styled-text-hover .context-info {
@@ -97,21 +88,12 @@
-fx-border-width: thin;
}
-.resize-popup-pane {
- -fx-background-color: rgba(20,20,20,0.7);
- -fx-background-radius: 4px;
- -efx-resize-handle-size: 7px;
-}
-
.content-proposal-container .split-pane .split-pane-divider {
-fx-background-color: transparent;
}
-
-.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 );
-*/
-} \ No newline at end of file
+.resize-popup-pane {
+ -fx-background-color: rgba(20,20,20,0.7);
+ -fx-background-radius: 5px;
+ -efx-resize-handle-size: 5px;
+}

Back to the top