Skip to content

Commit a6c04fc

Browse files
committedOct 17, 2016
[Plugin Manager] Fix font size also in master (issue #15302)
1 parent 8194de9 commit a6c04fc

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
@@ -618,7 +618,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
618618
" padding:0px;"
619619
" margin:0px;"
620620
" font-family:verdana;"
621-
" font-size: 1.1em;"
621+
" font-size: 10pt;"
Code has comments. Press enter to view.
622622
" }"
623623
" div#votes {"
624624
" width:360px;"
@@ -1134,11 +1134,11 @@ void QgsPluginManager::setCurrentTab( int idx )
11341134
if ( it != mTabDescriptions.constEnd() )
11351135
{
11361136
tabInfoHTML += "<style>"
1137-
"body, table {"
1138-
"margin:4px;"
1139-
"font-family:verdana;"
1140-
"font-size: 12px;"
1141-
"}"
1137+
" body, p {"
1138+
" margin: 2px;"
1139+
" font-family: verdana;"
1140+
" font-size: 10pt;"
1141+
" }"
11421142
"</style>";
11431143
// tabInfoHTML += "<style>" + QgsApplication::reportStyleSheet() + "</style>";
11441144
tabInfoHTML += it.value();

0 commit comments

Comments
 (0)
Please sign in to comment.