ubuntu12.04 or later,eclipse的界面设置

解决的问题:

1、工具栏高度太高,字体太大。

2、代码提示框的背景色。

=================================================

1、修改导航树和工具栏的字体。

einstein@ThinkPad :~$ vim /home/einstein/.gtkrc-2.0  //如果没有,先touch一个文件。

在文件中加入一下内容:

style "gtkcompact" {
font_name="Sans 8"
GtkButton::default_border={0,0,0,0}
GtkButton::default_outside_border={0,0,0,0}
GtkButtonBox::child_min_width=0
GtkButtonBox::child_min_heigth=0
GtkButtonBox::child_internal_pad_x=0
GtkButtonBox::child_internal_pad_y=0
GtkMenu::vertical-padding=1
GtkMenuBar::internal_padding=0
GtkMenuItem::horizontal_padding=4
GtkToolbar::internal-padding=0
GtkToolbar::space-size=0
GtkOptionMenu::indicator_size=0
GtkOptionMenu::indicator_spacing=0
GtkPaned::handle_size=4
GtkRange::trough_border=0
GtkRange::stepper_spacing=0
GtkScale::value_spacing=0
GtkScrolledWindow::scrollbar_spacing=0
GtkExpander::expander_size=10
GtkExpander::expander_spacing=0
GtkTreeView::vertical-separator=0
GtkTreeView::horizontal-separator=0
GtkTreeView::expander-size=8
GtkTreeView::fixed-height-mode=TRUE
GtkWidget::focus_padding=0
}
class "GtkWidget" style "gtkcompact"

style "gtkcompactextra" {
xthickness=0
ythickness=0
}
class "GtkButton" style "gtkcompactextra"
class "GtkToolbar" style "gtkcompactextra"
class "GtkPaned" style "gtkcompactextra"

2、修改eclipse中标签栏中的字体

在eclipse的路径:/opt/soft/eclipse/plugins/org.eclipse.platform_4.3.0.v20130605-2000/css中,找到e4_default_gtk.css文件(这里也有其他几类系统的样式文件),修改css类MPartStack

.MPartStack {
font-size: 8;
swt-simple: false;
swt-mru-visible: false;
}

font-size:为标签栏中的字体大小属性。

3、修改eclipse中代码提示框的背景。

找到文件:/usr/share/themes/[Ambiance]/gtk-2.0/gtkrc,方框号中为当前的主题名。修改其中的这两个属性:

tooltip_fg_color:#000000

tooltip_bg_color:#f2edbc


你可能感兴趣的:(eclipse,ubuntu,字体,工具栏,gtk,太大,标签栏)