diff options
author | alain <108417558+alain-kermis-sonarsource@users.noreply.github.com> | 2022-07-19 18:00:11 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-07-19 20:03:21 +0000 |
commit | d65cb67822e7a3af9ecdb9a3a4e3d410952dc6f8 (patch) | |
tree | e6a4009bb140b891c75f459fa3e2c9422fd0efe0 /server/sonar-web/src | |
parent | d00e293015b8f24db80eca42ba15bac4671810ef (diff) | |
download | sonarqube-d65cb67822e7a3af9ecdb9a3a4e3d410952dc6f8.tar.gz sonarqube-d65cb67822e7a3af9ecdb9a3a4e3d410952dc6f8.zip |
SONAR-16505 Make plugin matrix scroll visible on screen
Diffstat (limited to 'server/sonar-web/src')
-rw-r--r-- | server/sonar-web/src/main/js/apps/documentation/styles.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/documentation/styles.css b/server/sonar-web/src/main/js/apps/documentation/styles.css index b9704237c8c..599e453ead6 100644 --- a/server/sonar-web/src/main/js/apps/documentation/styles.css +++ b/server/sonar-web/src/main/js/apps/documentation/styles.css @@ -36,6 +36,17 @@ line-height: 1.7; } +.documentation-content .markdown-content { + width: 100%; +} + +.documentation-content.markdown iframe { + width: 100%; + border: 0; + overflow-y: auto; + height: 65vh; +} + .documentation-content.markdown .documentation-title { font-size: 24px; padding-top: var(--gridSize); |