From becccf7ec50f82a0f01ecd0543573f45b6efca4a Mon Sep 17 00:00:00 2001 From: David Rosca Date: Sun, 24 Jan 2016 13:26:32 +0100 Subject: [PATCH] Linux theme: Prefer arrow icons from icon theme --- bin/themes/linux/main.css | 9 ++++++--- bin/themes/linux/rtl.css | 6 ++++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/bin/themes/linux/main.css b/bin/themes/linux/main.css index c2e2a2cfb..08efc573d 100644 --- a/bin/themes/linux/main.css +++ b/bin/themes/linux/main.css @@ -66,19 +66,22 @@ #tabbar-button-right { - qproperty-icon: url(images/tab-right-arrow.png); + qproperty-themeIcon: "arrow-right"; + qproperty-fallbackIcon: url(images/tab-right-arrow.png); qproperty-fixedsize: 15px 25px; } #tabbar-button-left { - qproperty-icon: url(images/tab-left-arrow.png); + qproperty-themeIcon: "arrow-left"; + qproperty-fallbackIcon: url(images/tab-left-arrow.png); qproperty-fixedsize: 15px 25px; } #tabwidget-button-opentabs { - qproperty-icon: url(images/tabs-list-button.png); + qproperty-themeIcon: "arrow-down"; + qproperty-fallbackIcon: url(images/tabs-list-button.png); qproperty-fixedsize: 20px 25px; } diff --git a/bin/themes/linux/rtl.css b/bin/themes/linux/rtl.css index 0667895dd..85f5542bb 100644 --- a/bin/themes/linux/rtl.css +++ b/bin/themes/linux/rtl.css @@ -12,10 +12,12 @@ #tabbar-button-right { - qproperty-icon: url(images/tab-left-arrow.png); + qproperty-themeIcon: "arrow-left"; + qproperty-fallbackIcon: url(images/tab-left-arrow.png); } #tabbar-button-left { - qproperty-icon: url(images/tab-right-arrow.png); + qproperty-themeIcon: "arrow-right"; + qproperty-fallbackIcon: url(images/tab-right-arrow.png); }