From: Simon Brandhof Date: Fri, 3 Feb 2012 08:50:43 +0000 (+0100) Subject: Add CSS elements for configuration of rules X-Git-Tag: 2.14~188 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ee89433c1d1db971c046c695d99ab1c72b265ba3;p=sonarqube.git Add CSS elements for configuration of rules --- diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 4296e0b7b14..3e02666e40d 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -2241,11 +2241,6 @@ table.without-header { vertical-align: top; } -/* Button "More" in source viewers. See sonar-gwt-api, class SourcePanel */ -#more_source { - margin: 5px 10px; -} - /* GENERIC STYLES */ .line-block { display: inline-block; @@ -2345,3 +2340,77 @@ table.nowrap td, td.nowrap, th.nowrap { .yellowHighlight { background: #FFFBCC; } + + + + +.link-action { + text-decoration: underline; + color: #4183C4; +} + +.table-bordered { + border: 1px solid #DDD; + border-collapse: separate; + *border-collapse: collapsed; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; +} +.form-key-cell { + padding: 2px 8px 4px 10px; + text-align: right; + width: 1%; + white-space: nowrap; + vertical-align: top; +} +.form-val-cell { + padding: 2px 8px 4px 0; + text-align: left; + white-space: normal; +} +.form-val-note { + font-size: 12px; + color: #999; +} +blockquote { + border-left: 3px solid #E5E5E5; + padding: 0 8px; + line-height: 16px; +} +blockquote cite { + line-height: 16px; + background-image: url('../images/reviews/comment.png'); + background-repeat: no-repeat; + padding-left: 20px; + background-position: left center; + font-size: 12px; + color: #888; +} +.spacer-left { + margin-left: 10px; +} +.spacer-right { + margin-right: 10px; +} +.spacer-bottom { + margin-bottom: 10px; +} +.spacer-top { + margin-top: 10px; +} +.bordered { + border: 1px solid #DDD; +} +.bordered-left { + border-left: 1px solid #DDD; +} +.bordered-right { + border-right: 1px solid #DDD; +} +.bordered-bottom { + border-bottom: 1px solid #DDD; +} +.bordered-top { + border-top: 1px solid #DDD; +} \ No newline at end of file