aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/TabBar.qml
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-11-13 10:22:41 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-11-19 17:49:45 +0000
commit6ca831b18f361924cab39b65d1a1e8b31e60b3fc (patch)
tree37fce3bddfc8f48fa3ba503174fdcb8c4df5a359 /src/imports/controls/TabBar.qml
parentf507472c306f13f4cc965ffd9f56f8e436b0e04b (diff)
Adjust default style to match current specs.
There are still more changes to come. Change-Id: I94ed2c5d649d72d90e43120841c2457091200b59 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/TabBar.qml')
-rw-r--r--src/imports/controls/TabBar.qml9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/imports/controls/TabBar.qml b/src/imports/controls/TabBar.qml
index 28d6a5db..773382a3 100644
--- a/src/imports/controls/TabBar.qml
+++ b/src/imports/controls/TabBar.qml
@@ -35,7 +35,6 @@
****************************************************************************/
import QtQuick 2.6
-import Qt.labs.controls 1.0
import Qt.labs.templates 1.0 as T
T.TabBar {
@@ -70,7 +69,7 @@ T.TabBar {
height: 4
width: parent.width
y: parent.height - height
- color: control.Theme.accentColor
+ color: "#353637"
}
}
}
@@ -81,15 +80,15 @@ T.TabBar {
implicitWidth: 26
implicitHeight: 26
- border.color: control.Theme.backgroundColor
+ border.color: "#ffffff"
border.width: 8
- color: control.count > 1 ? control.Theme.frameColor : control.Theme.backgroundColor
+ color: control.count > 1 ? "#bdbebf" : "#ffffff"
Rectangle {
y: parent.height - height
width: parent.width
height: 1
- color: control.Theme.frameColor
+ color: "#bdbebf"
}
}
//! [background]