blob: ba15743a509a566e802388a38cd9b9b5e0e8d1f9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 EclipseSource and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* EclipseSource - initial API and implementation
******************************************************************************/
/* ToolBar default theme */
ToolBar {
font: 14px Verdana, "Lucida Sans", Arial, Helvetica, sans-serif;
color: #4a4a4a;
padding: 0;
spacing: 0;
background-color: #ffffff;
background-image: none;
border: none;
border-radius: 0;
opacity: 1;
}
ToolBar[BORDER] {
border: 1px solid #a4a4a4;
border-radius: 2px;
}
ToolItem,
ToolItem[FLAT] {
color: inherit;
background-color: #ffffff;
background-image: none;
border: none;
border-radius: 2px;
padding: 8px;
spacing: 4px;
opacity: 1;
animation: none;
text-shadow: none;
}
ToolItem:hover {
background-color: #f0f0f0;
background-image: gradient(
linear, left top, left bottom,
from( #f9f9f9 ),
to( #e4e4e4 )
);
border: 1px solid #bdbdbd;
border-radius: 2px;
}
ToolItem:pressed, ToolItem:selected {
border: 1px solid #a4a4a4;
border-radius: 2px;
padding: 9px 8px 8px 9px;
background-image: gradient(
linear, left top, left bottom,
from( #e4e4e4 ),
to( #f9f9f9 )
);
}
ToolItem-DropDownIcon {
background-image: url( resource/widget/rap/toolbar/down.png );
border: none;
}
ToolItem-DropDownIcon:hover {
border: 1px inset;
}
ToolItem-Separator {
width: 4px;
}