diff --git a/src/plugins/coreplugin/fancyactionbar.cpp b/src/plugins/coreplugin/fancyactionbar.cpp
index b1af053991ec23b943a73c01408c82eff0d4e063..815075d725f5cfa7691f81abb1707207ac6d180a 100644
--- a/src/plugins/coreplugin/fancyactionbar.cpp
+++ b/src/plugins/coreplugin/fancyactionbar.cpp
@@ -52,7 +52,7 @@ using namespace Core;
 using namespace Internal;
 
 FancyToolButton::FancyToolButton(QWidget *parent)
-    : QToolButton(parent)
+    : QToolButton(parent), m_fader(0)
 {
     setAttribute(Qt::WA_Hover, true);
     setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
@@ -71,7 +71,7 @@ bool FancyToolButton::event(QEvent *e)
     case QEvent::Enter:
         {
             QPropertyAnimation *animation = new QPropertyAnimation(this, "fader");
-            animation->setDuration(250);
+            animation->setDuration(125);
             animation->setEndValue(1.0);
             animation->start(QAbstractAnimation::DeleteWhenStopped);
         }
@@ -79,7 +79,7 @@ bool FancyToolButton::event(QEvent *e)
     case QEvent::Leave:
         {
             QPropertyAnimation *animation = new QPropertyAnimation(this, "fader");
-            animation->setDuration(250);
+            animation->setDuration(125);
             animation->setEndValue(0.0);
             animation->start(QAbstractAnimation::DeleteWhenStopped);
         }
@@ -102,12 +102,12 @@ void FancyToolButton::paintEvent(QPaintEvent *event)
     if (m_fader > 0 && isEnabled() && !isDown()) {
         painter.save();
         QColor whiteOverlay(Qt::white);
-        whiteOverlay.setAlpha(int(20 * m_fader));
+        whiteOverlay.setAlpha(int(10 * m_fader));
         QRect roundRect = rect().adjusted(5, 3, -5, -3);
         painter.translate(0.5, 0.5);
         painter.setRenderHint(QPainter::Antialiasing);
         painter.setBrush(whiteOverlay);
-        whiteOverlay.setAlpha(int(30*m_fader));
+        whiteOverlay.setAlpha(int(20*m_fader));
         painter.setPen(whiteOverlay);
         painter.drawRoundedRect(roundRect, 3, 3);
         painter.restore();
diff --git a/src/plugins/coreplugin/fancytabwidget.cpp b/src/plugins/coreplugin/fancytabwidget.cpp
index 2618e153cce2d821504c08aea1c542ec85509186..7e97c07239c5d14d706648d8b38fd076c7747369 100644
--- a/src/plugins/coreplugin/fancytabwidget.cpp
+++ b/src/plugins/coreplugin/fancytabwidget.cpp
@@ -44,6 +44,8 @@
 #include <QtGui/QStatusBar>
 #include <QtGui/QToolButton>
 #include <QtGui/QToolTip>
+#include <QtCore/QAnimationGroup>
+#include <QtCore/QPropertyAnimation>
 
 using namespace Core;
 using namespace Internal;
@@ -79,7 +81,7 @@ QSize FancyTabBar::tabSizeHint(bool minimum) const
     boldFont.setPointSizeF(Utils::StyleHelper::sidebarFontSize());
     boldFont.setBold(true);
     QFontMetrics fm(boldFont);
-    int spacing = 6;
+    int spacing = 8;
     int width = 60 + spacing + 2;
 
     int iconHeight = minimum ? 0 : 32;
@@ -203,7 +205,6 @@ void FancyTabBar::paintTab(QPainter *painter, int tabIndex) const
     painter->save();
 
     QRect rect = tabRect(tabIndex);
-
     bool selected = (tabIndex == m_currentIndex);
     bool hover = (tabIndex == m_hoverIndex);
     bool enabled = isTabEnabled(tabIndex);
@@ -212,40 +213,46 @@ void FancyTabBar::paintTab(QPainter *painter, int tabIndex) const
     hover = false; // Do not hover on Mac
 #endif
 
-    QColor background = QColor(0, 0, 0, 10);
     QColor hoverColor;
-
-    if (hover) {
+    if (hover)
         hoverColor = QColor(255, 255, 255, m_hoverControl.currentFrame());
-    }
-
-    QColor light = QColor(255, 255, 255, 40);
-    QColor dark = QColor(0, 0, 0, 60);
 
     if (selected) {
-        QLinearGradient selectedGradient(rect.topLeft(), QPoint(rect.center().x(), rect.bottom()));
-        selectedGradient.setColorAt(0, Qt::white);
-        selectedGradient.setColorAt(0.3, Qt::white);
-        selectedGradient.setColorAt(0.7, QColor(230, 230, 230));
-
-        painter->fillRect(rect, selectedGradient);
-        painter->setPen(QColor(200, 200, 200));
+        //background
+        painter->fillRect(rect, QColor(220, 220, 220));
+
+        //highlight
+        painter->setPen(QColor(255, 255, 255, 150));
+        painter->drawLine(rect.bottomLeft() - QPoint(-1, 1), rect.bottomRight() - QPoint(0,1));
+        painter->drawLine(rect.topRight(), rect.bottomRight());
+
+        //shadow
+        painter->setPen(QColor(255, 255, 255, 50));
+        painter->drawLine(rect.topLeft() - QPoint(0,2), rect.topRight() - QPoint(0,2));
+        painter->setPen(QColor(0, 0, 0, 150));
+        painter->drawLine(rect.topLeft() - QPoint(0,1), rect.topRight() - QPoint(0,1));
+        painter->drawLine(rect.topLeft(), rect.bottomLeft());
+        painter->setPen(QColor(0, 0, 0, 100));
         painter->drawLine(rect.topLeft(), rect.topRight());
-        painter->setPen(QColor(150, 160, 200));
+        painter->setPen(QColor(0, 0, 0, 40));
+        painter->drawLine(rect.topLeft() + QPoint(0,1), rect.topRight() + QPoint(0,1));
+        painter->drawLine(rect.topLeft() + QPoint(1,1), rect.bottomLeft() + QPoint(1,0));
+        painter->setPen(QColor(0, 0, 0, 20));
+        painter->drawLine(rect.topLeft() + QPoint(0,2), rect.topRight() + QPoint(0,2));
+        painter->drawLine(rect.topLeft() + QPoint(2,1), rect.bottomLeft() + QPoint(2,0));
+        painter->setPen(QColor(0, 0, 0, 150));
         painter->drawLine(rect.bottomLeft(), rect.bottomRight());
+        painter->setPen(QColor(255, 255, 255, 50));
+        painter->drawLine(rect.bottomLeft() + QPoint(0,1), rect.bottomRight() + QPoint(0,1));
     } else {
-        painter->fillRect(rect, background);
         if (hover && enabled)
             painter->fillRect(rect, hoverColor);
-        painter->setPen(QPen(light, 0));
-        painter->drawLine(rect.topLeft(), rect.topRight());
-        painter->setPen(QPen(dark, 0));
-        painter->drawLine(rect.bottomLeft(), rect.bottomRight());
     }
 
     QString tabText(this->tabText(tabIndex));
     QRect tabTextRect(tabRect(tabIndex));
     QRect tabIconRect(tabTextRect);
+    tabTextRect.translate(0, -2);
     QFont boldFont(painter->font());
     boldFont.setPointSizeF(Utils::StyleHelper::sidebarFontSize());
     boldFont.setBold(true);
@@ -405,13 +412,18 @@ void FancyTabWidget::setBackgroundBrush(const QBrush &brush)
 void FancyTabWidget::paintEvent(QPaintEvent *event)
 {
     Q_UNUSED(event)
-    QPainter p(this);
+    QPainter painter(this);
 
     QRect rect = m_selectionWidget->rect().adjusted(0, 0, 1, 0);
     rect = style()->visualRect(layoutDirection(), geometry(), rect);
-    Utils::StyleHelper::verticalGradient(&p, rect, rect);
-    p.setPen(Utils::StyleHelper::borderColor());
-    p.drawLine(rect.topRight(), rect.bottomRight());
+    Utils::StyleHelper::verticalGradient(&painter, rect, rect);
+    painter.setPen(Utils::StyleHelper::borderColor());
+    painter.drawLine(rect.topRight(), rect.bottomRight());
+
+    QColor light = QColor(255, 255, 255, 40);
+    painter.setPen(light);
+    painter.drawLine(rect.bottomLeft(), rect.bottomRight());
+    setContentsMargins(0, 0, 0, 1);
 }
 
 void FancyTabWidget::insertCornerWidget(int pos, QWidget *widget)
diff --git a/src/plugins/coreplugin/fancytabwidget.h b/src/plugins/coreplugin/fancytabwidget.h
index 22163ce3a58be4d437b759ed08e787a2d1c207d8..cb689b1c00c87754065db887239e3352e303e2fe 100644
--- a/src/plugins/coreplugin/fancytabwidget.h
+++ b/src/plugins/coreplugin/fancytabwidget.h
@@ -44,7 +44,7 @@ QT_END_NAMESPACE
 namespace Core {
 namespace Internal {
 
-    struct FancyTab {
+    struct FancyTab{
         QIcon icon;
         QString text;
         QString toolTip;
@@ -81,6 +81,7 @@ public:
         tab.text = label;
         m_tabs.insert(index, tab);
     }
+    void setEnabled(int index, bool enabled);
     void removeTab(int index) {
         m_tabs.removeAt(index);
     }
@@ -95,7 +96,6 @@ public:
     int count() const {return m_tabs.count(); }
     QRect tabRect(int index) const;
 
-
 signals:
     void currentChanged(int);