aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-05-10 18:11:58 +0200
committerDavid Gageot <david@gageot.net>2012-05-10 18:11:58 +0200
commit31ed289854118d69f2b11eee05be79183dc730c5 (patch)
tree9038547ce2cad716a4db1e359d90b8197284e6c1
parentd0ac203f2ea044d394f2d10ec75488fecc26c224 (diff)
downloadsonarqube-31ed289854118d69f2b11eee05be79183dc730c5.tar.gz
sonarqube-31ed289854118d69f2b11eee05be79183dc730c5.zip
Widgets shouldn't have round corners. NEVER! :-)
-rw-r--r--sonar-server/src/main/webapp/stylesheets/dashboard.css28
1 files changed, 9 insertions, 19 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/dashboard.css b/sonar-server/src/main/webapp/stylesheets/dashboard.css
index 55657aa36f4..f2477e32b65 100644
--- a/sonar-server/src/main/webapp/stylesheets/dashboard.css
+++ b/sonar-server/src/main/webapp/stylesheets/dashboard.css
@@ -21,9 +21,6 @@
padding: 10px;
margin: 0;
border: 1px solid #ddd;
- border-radius: 0 0 3px 3px;
- -moz-border-radius: 0 0 3px 3px;
- -webkit-border-radius: 0 0 3px 3px;
}
#dashboard .block {
@@ -46,15 +43,19 @@
}
#dashboard .widget-title {
- background-color: #4B9FD5;
- color: #EFEFEF;
+ background-color: #DDD;
+ color: #4B9FD5;
+ /* background-color: #4B9FD5; */
+ /* background-color: #CAE3F2; */
+ /* color: #EFEFEF; */
+ /* color: #4B9FD5; */
+ /* border-top: 1px solid #DDD; */
+ /* border-left: 1px solid #DDD; */
+ /* border-right: 1px solid #DDD; */
padding: 3px 0 3px 5px;
height: 16px;
line-height: 16px;
vertical-align: middle;
- border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- -webkit-border-radius: 3px 3px 0 0;
}
/*CONFIGURATION*/
@@ -233,9 +234,6 @@
background-color: #efefef;
border: 1px solid #ddd;
border-bottom: 0;
- border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- -webkit-border-radius: 3px 3px 0 0;
}
#dashboard .widget-handle {
@@ -267,11 +265,3 @@
-moz-box-shadow: 8px 8px 8px #ddd;
-webkit-box-shadow: 8px 8px 8px #ddd;
}
-
-/*FILTERS*/
-#dashboard .filter-title {
- font-style: italic;
- font-weight: bold;
- position: absolute;
- top: 10px;
-}