Skip to content

Commit

Permalink
[Plugin Manager] Fix font size also in master (issue #15302)
Browse files Browse the repository at this point in the history
  • Loading branch information
borysiasty committed Oct 17, 2016
1 parent 8194de9 commit a6c04fc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/pluginmanager/qgspluginmanager.cpp
Expand Up @@ -618,7 +618,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
" padding:0px;"
" margin:0px;"
" font-family:verdana;"
" font-size: 1.1em;"
" font-size: 10pt;"

This comment has been minimized.

Copy link
@m-kuhn

m-kuhn Oct 17, 2016

Member

Is it better to work in absolute values rather than relatives? I was used to prefer em from web design because it reacts flexible to system / user settings.

" }"
" div#votes {"
" width:360px;"
Expand Down Expand Up @@ -1134,11 +1134,11 @@ void QgsPluginManager::setCurrentTab( int idx )
if ( it != mTabDescriptions.constEnd() )
{
tabInfoHTML += "<style>"
"body, table {"
"margin:4px;"
"font-family:verdana;"
"font-size: 12px;"
"}"
" body, p {"
" margin: 2px;"
" font-family: verdana;"
" font-size: 10pt;"
" }"
"</style>";
// tabInfoHTML += "<style>" + QgsApplication::reportStyleSheet() + "</style>";
tabInfoHTML += it.value();
Expand Down

0 comments on commit a6c04fc

Please sign in to comment.