Skip to content

Commit 06a84f9

Browse files
committedOct 13, 2016
[Plugin Manager] Fix font size (issue #15302)
1 parent eb2f595 commit 06a84f9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎src/app/pluginmanager/qgspluginmanager.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
617617
" padding:0px;"
618618
" margin:0px;"
619619
" font-family:verdana;"
620-
" font-size: 1.1em;"
620+
" font-size: 10pt;"
621621
" }"
622622
" div#votes {"
623623
" width:360px;"
@@ -1133,11 +1133,11 @@ void QgsPluginManager::setCurrentTab( int idx )
11331133
if ( it != mTabDescriptions.constEnd() )
11341134
{
11351135
tabInfoHTML += "<style>"
1136-
"body, table {"
1137-
"margin:4px;"
1138-
"font-family:verdana;"
1139-
"font-size: 12px;"
1140-
"}"
1136+
" body, p {"
1137+
" margin: 2px;"
1138+
" font-family: verdana;"
1139+
" font-size: 10pt;"
1140+
" }"
11411141
"</style>";
11421142
// tabInfoHTML += "<style>" + QgsApplication::reportStyleSheet() + "</style>";
11431143
tabInfoHTML += it.value();

0 commit comments

Comments
 (0)
Please sign in to comment.