Skip to content

Commit

Permalink
Don't put color values in single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
BeckerWdf committed Sep 24, 2024
1 parent 5e8ae75 commit 0f92418
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions bundles/org.eclipse.ui.themes/css/e4_preview_gtk.css
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ CTabFolder Canvas {
}

.MTrimBar#org-eclipse-ui-main-toolbar {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

.MTrimBar#org-eclipse-ui-trim-status {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

.View Composite,
Expand Down Expand Up @@ -197,14 +197,14 @@ CTabFolder Canvas {

/* text color and background color of unselected tabs in editor*/
#org-eclipse-ui-editorss CTabItem{
color: '#000000';
background-color: '#f8f8f8';
color: #000000;
background-color: #f8f8f8;
}

/*text color and background color of selected tab in editor */
#org-eclipse-ui-editorss CTabItem:selected{
color: '#000000';
background-color: '#FFFFFF';
color: #000000;
background-color: #FFFFFF;
}

#org-eclipse-ui-editorss CTabFolder{
Expand All @@ -218,7 +218,7 @@ CTabFolder Canvas {
}

#org-eclipse-ui-editorss CTabFolder.active {
swt-selected-tab-highlight: '#2160bb';
swt-selected-tab-highlight: #2160bb;
swt-selected-highlight-top: true;
}

Expand Down
18 changes: 9 additions & 9 deletions bundles/org.eclipse.ui.themes/css/e4_preview_mac.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ ColorDefinition#org-eclipse-ui-workbench-INACTIVE_TAB_TEXT_COLOR {
}

.MTrimmedWindow {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

.MTrimBar {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

.MTrimBar#org-eclipse-ui-main-toolbar {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

CTabFolder Canvas {
Expand All @@ -100,7 +100,7 @@ CTabFolder Canvas {


.MTrimBar#org-eclipse-ui-trim-status {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

.View Composite,
Expand Down Expand Up @@ -167,14 +167,14 @@ CTabFolder Canvas {

/* text color of unselected tabs in editor*/
#org-eclipse-ui-editorss CTabItem{
color: '#000000';
background-color: '#f8f8f8';
color: #000000;
background-color: #f8f8f8;
}

/*text color and background color of selected tab in editor */
#org-eclipse-ui-editorss CTabItem:selected{
color: '#000000';
background-color: '#FFFFFF';
color: #000000;
background-color: #FFFFFF;
}

#org-eclipse-ui-editorss CTabFolder{
Expand All @@ -188,7 +188,7 @@ CTabFolder Canvas {
}

#org-eclipse-ui-editorss CTabFolder.active {
swt-selected-tab-highlight: '#5983c5';
swt-selected-tab-highlight: #5983c5;
swt-selected-highlight-top: true;
}

Expand Down
14 changes: 7 additions & 7 deletions bundles/org.eclipse.ui.themes/css/e4_preview_win.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ CTabFolder Canvas {
}

.MTrimBar#org-eclipse-ui-main-toolbar {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

.MTrimBar#org-eclipse-ui-trim-status {
background-color: '#f8f8f8';
background-color: #f8f8f8;
}

.View Composite,
Expand Down Expand Up @@ -171,14 +171,14 @@ CTabFolder Canvas {

/* text color and background color of unselected tabs in editor*/
#org-eclipse-ui-editorss CTabItem{
color: '#000000';
background-color: '#f8f8f8';
color: #000000;
background-color: #f8f8f8;
}

/*text color and background color of selected tab in editor */
#org-eclipse-ui-editorss CTabItem:selected{
color: '#000000';
background-color: '#FFFFFF';
color: #000000;
background-color: #FFFFFF;
}

#org-eclipse-ui-editorss CTabFolder{
Expand All @@ -192,7 +192,7 @@ CTabFolder Canvas {
}

#org-eclipse-ui-editorss CTabFolder.active {
swt-selected-tab-highlight: '#2160bb';
swt-selected-tab-highlight: #2160bb;
swt-selected-highlight-top: true;
}

Expand Down

0 comments on commit 0f92418

Please sign in to comment.