Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [e4-dev] Forms Css Styling issue

Hi Bogdan,

I'll attach my CSS. It's a MultiPage Form Editor and yesterday I found that it seems to happen only on 32bit windows. Seems quite strange.

Thomas

2011/8/3 Bogdan Gheorghe <gheorghe@xxxxxxxxxx>
Hi Thomas  -

If you send me a simple snippet along with you CSS code, I can take a look at this for you.

- Bogdan


From: Thomas Kratz <eiswind@xxxxxxxxxxxxxx>
To: e4-dev <e4-dev@xxxxxxxxxxx>
Date: 08/01/2011 08:19 AM
Subject: [e4-dev] Forms Css Styling issue
Sent by: e4-dev-bounces@xxxxxxxxxxx





Hi,

I changed the default Text font size to 9px in my css. Now in my FormEditors the Form Heading on the first tab gets changed to non-bold 9px, but on all other tabs it stays as the default bigger bold font.

Any ideas how I can work around?

Regards Thomas_______________________________________________
e4-dev mailing list
e4-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/e4-dev



_______________________________________________
e4-dev mailing list
e4-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/e4-dev


CTabItem, Label, Tree, Text, Combo, Table {
	font-family: "Arial";
}

CTabFolder {
	padding-bottom: 8px;
	padding-top: 0px;
	padding-left: 3px;
	padding-right: 3px;	
	
}


Combo, Table,  Text {
 	font-size: 10;
 	
}

Label {
 	font-size: 9;
}
.MTrimmedWindow {
    background-color: #E1E6F6;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 2px;
    margin-right: 2px;
}
 
 
.MTrimmedWindow.topLevel {
    margin-top: 12px;
    margin-bottom: 2px;
   
}
 
.MPartStack {
    tab-renderer: url('platform:/plugin/org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
    unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
    outer-keyline-color: #FFFFFF;
    inner-keyline-color: #FFFFFF;
    font-size: 9;
    font-family: 'Segoe UI';
    simple: true;
}

#org-eclipse-ui-editorss {
   tab-renderer: url('platform:/plugin/org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering');
   unselected-tabs-color: #F0F0F0 #F0F0F0 #F0F0F0 100% 100%;
   outer-keyline-color: #B4B4B4;
   inner-keyline-color: #F0F0F0;
   tab-outline: #F0F0F0;
   color: #F0F0F0;
   tab-height: 8px;
   padding: 0px 5px 7px;
}
 
.MTrimBar {
    background-color: #405579;
}
 
.MTrimBar#org-eclipse-ui-main-toolbar {
    background-color: #d9e3f3 rgb(170, 176, 191) 100%;
}
 
#PerspectiveSwitcher  {
    background-color: #d9e3f3 rgb(170, 176, 191) 100%;
}

 
.MPartStack.active {
    unselected-tabs-color: #F3F9FF #D0DFEE #CEDDED #CEDDED #D2E1F0 #D2E1F0 #FFFFFF 20% 45% 60% 70% 100% 100%;
    outer-keyline-color: #B6BCCC;
    inner-keyline-color: #FFFFFF;
}
 
#PerspectiveSwitcher  {
    background-color: #F5F7FC #E1E6F6 100%;
}

#org-eclipse-ui-editorss .MPartStack {
   shadow-visible: false;
}

CTabFolder Canvas {
  background-color: #F8F8F8;
}

Back to the top