mtrebizan
unread,May 14, 2012, 6:15:15 AM5/14/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
hi,
another problem with ClientBundle ... I have basic css, in which i have if statement for IE8- ..
@if user.agent ie6 ie8 {
@sprite .gwt-TabBarItem .tabMiddleCenterInner {
gwt-image: "tab";
background-position: right top;
width: auto;
margin-left: 8px;
overflow: visible;
display: block;
color: #888;
}
}
when I try to extend this css with another CSS, I am not able to remove this background image...
@if user.agent ie6 ie8 {
.gwt-TabBarItem .tabMiddleCenterInner {
background: #fff;
}
}
and extending is working, because other differences are visible. any help would be appreciate.