diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2024-10-15 16:33:22 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-10-22 20:03:09 +0000 |
commit | 4563bf92ef65836ce0afc2e974a2ecd5fe719b1b (patch) | |
tree | 471ae7b96b719e30f40437699b8d444736a7ce29 /server/sonar-web/src/main/js/apps/web-api/styles | |
parent | df6a4b8b61181bae40298a7031bb66af6373ebb7 (diff) | |
download | sonarqube-4563bf92ef65836ce0afc2e974a2ecd5fe719b1b.tar.gz sonarqube-4563bf92ef65836ce0afc2e974a2ecd5fe719b1b.zip |
SONAR-23205 Remove legacy CSS custom properties
Diffstat (limited to 'server/sonar-web/src/main/js/apps/web-api/styles')
-rw-r--r-- | server/sonar-web/src/main/js/apps/web-api/styles/web-api.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/web-api/styles/web-api.css b/server/sonar-web/src/main/js/apps/web-api/styles/web-api.css index 7bddceae3b3..da075b8b900 100644 --- a/server/sonar-web/src/main/js/apps/web-api/styles/web-api.css +++ b/server/sonar-web/src/main/js/apps/web-api/styles/web-api.css @@ -24,7 +24,7 @@ .web-api-search { margin: 20px 10px 0; padding: 0 10px 20px; - border-bottom: 1px solid var(--barBorderColor); + border-bottom: 1px solid #e6e6e6; white-space: nowrap; } @@ -45,7 +45,7 @@ } .web-api-domain-actions { - margin-top: calc(2 * var(--gridSize)); + margin-top: calc(2 * 8px); } .web-api-action-title { @@ -78,7 +78,7 @@ .web-api-params td { vertical-align: top; padding: 8px 10px; - border-top: 1px solid var(--barBorderColor); + border-top: 1px solid #e6e6e6; } .web-api-params tr:first-child td { |