From cd3c0750a05f21f996e4ffef5c1d2c96c0380c55 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 17 Aug 2014 04:22:12 +0200 Subject: [PATCH] * Use lighter font for biography. --- src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp b/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp index e87a2c8d8..fccf4ef7f 100644 --- a/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp +++ b/src/libtomahawk/widgets/infowidgets/ArtistInfoWidget.cpp @@ -126,13 +126,14 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget* { QFont f = ui->biography->font(); - f.setPointSize( 14 ); + f.setWeight( QFont::Light ); + f.setPointSize( 13 ); ui->biography->setFont( f ); ui->biography->setOpenLinks( false ); ui->biography->setOpenExternalLinks( true ); - ui->biography->document()->setDefaultStyleSheet( QString( "a { text-decoration: none; font-weight: bold; color: %1; }" ).arg( TomahawkStyle::HEADER_LINK.name() ) ); + ui->biography->document()->setDefaultStyleSheet( QString( "a { text-decoration: none; font-weight: bold; color: #000000; }" ) ); TomahawkStyle::stylePageFrame( ui->biography ); TomahawkStyle::stylePageFrame( ui->bioFrame ); TomahawkStyle::styleScrollBar( ui->biography->verticalScrollBar() );