diff options
author | Pascal Mugnier <pascal.mugnier@sonarsource.com> | 2018-09-11 14:56:10 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-09-19 10:51:38 +0200 |
commit | 75ac4a37f2faece59951606d86006c098bdb02d2 (patch) | |
tree | 523c3e383174a1f8625602ddc872989d405e16cb /server/sonar-docs/src/templates/page.css | |
parent | 818b95efd106fe8149821d3507c8a59c00d74688 (diff) | |
download | sonarqube-75ac4a37f2faece59951606d86006c098bdb02d2.tar.gz sonarqube-75ac4a37f2faece59951606d86006c098bdb02d2.zip |
MMF-1377 Fix issues and improve UI (#692)
Diffstat (limited to 'server/sonar-docs/src/templates/page.css')
-rw-r--r-- | server/sonar-docs/src/templates/page.css | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/server/sonar-docs/src/templates/page.css b/server/sonar-docs/src/templates/page.css index ddc3612e66d..09c716aa2fe 100644 --- a/server/sonar-docs/src/templates/page.css +++ b/server/sonar-docs/src/templates/page.css @@ -131,13 +131,52 @@ body > div, } } +.search-container { + position: relative; +} + +.search-container button { + position: absolute; + right: 8px; + top: 50%; + margin-top: -12px; + height: 16px; + width: 16px; + background: transparent; + border: none; + cursor: pointer; + outline: none; + border-radius: 3px; + transition: border-color 0.2s ease, box-shadow 0.2s ease; +} + +.search-container button svg { + position: absolute; + top: 4px; + left: 4px; +} + +.search-container button:hover, +.search-container button:focus { + background-color: #989898; +} + +.search-container button:hover svg, +.search-container button:focus svg { + color: #fff; +} + +.search-container button:focus { + box-shadow: 0 0 0 3px rgba(35, 106, 151, 0.25); +} + .search-input { border: 1px solid #cfd3d7; border-radius: 2px; width: calc(100% - 10px); margin-left: 10px; margin-bottom: 10px; - padding: 0 10px; + padding: 0 30px 0 10px; font-size: 14px; line-height: 30px; outline: none; @@ -288,6 +327,7 @@ a.search-result .note { } .page-container { + width: 900px; max-width: calc(100% - 220px); min-width: 320px; padding-left: 16px; |