diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-07-07 10:47:45 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-07-07 10:50:51 +0200 |
commit | 62d39cbb6ee17726406fad67618b2381eeff7752 (patch) | |
tree | da7d017caa3e0ba6585c3475fa1d53aeb6d5420d /server/sonar-web/src/main/less | |
parent | e5818438a289fe522c87245d5bd18d71406f0e39 (diff) | |
download | sonarqube-62d39cbb6ee17726406fad67618b2381eeff7752.tar.gz sonarqube-62d39cbb6ee17726406fad67618b2381eeff7752.zip |
apply feedback for the quality profiles page
Diffstat (limited to 'server/sonar-web/src/main/less')
-rw-r--r-- | server/sonar-web/src/main/less/components/page.less | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/server/sonar-web/src/main/less/components/page.less b/server/sonar-web/src/main/less/components/page.less index e6a828a0542..d6e25d68ac7 100644 --- a/server/sonar-web/src/main/less/components/page.less +++ b/server/sonar-web/src/main/less/components/page.less @@ -35,19 +35,13 @@ body { } .page-limited { - max-width: 1440px; + max-width: 1280px; margin-left: auto; margin-right: auto; padding-top: 20px; padding-bottom: 20px; } -.page-limited-small { - .page-limited; - width: 1080px; - box-sizing: border-box; -} - .page-container { min-width: 1080px; } @@ -134,3 +128,24 @@ body { .link-base-color; } } + +.page-with-sidebar { + display: flex; +} + +.page-main { + flex-grow: 1; +} + +.page-sidebar { + width: 30%; + min-width: 300px; + flex-shrink: 0; + padding-left: 40px; + box-sizing: border-box; +} + +.page-sidebar-fixed { + .page-sidebar; + width: 300px; +} |