diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-02-20 15:48:44 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-02-20 15:48:44 +0100 |
commit | c62f38d64c56ef9215e78b9adeb224cd76bfa4be (patch) | |
tree | 66cef6c146f424f06f9ccb2c1467dc95cb21ca65 /sonar-server/src/main/webapp/stylesheets/dashboard.css | |
parent | 1b0a3a26064a45bcd9e2e06c69ea6fc5e49a9939 (diff) | |
download | sonarqube-c62f38d64c56ef9215e78b9adeb224cd76bfa4be.tar.gz sonarqube-c62f38d64c56ef9215e78b9adeb224cd76bfa4be.zip |
SONAR-3009 Widgets can not be configured on IE9
Diffstat (limited to 'sonar-server/src/main/webapp/stylesheets/dashboard.css')
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/dashboard.css | 58 |
1 files changed, 35 insertions, 23 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/dashboard.css b/sonar-server/src/main/webapp/stylesheets/dashboard.css index 7f2c344f15c..f3efd9ce346 100644 --- a/sonar-server/src/main/webapp/stylesheets/dashboard.css +++ b/sonar-server/src/main/webapp/stylesheets/dashboard.css @@ -3,6 +3,7 @@ position: relative; width: 100%; } + #dashboard .transparent { position: absolute; width: 100%; @@ -10,7 +11,6 @@ top: 0; left: 0; background: url('../images/transparent.gif') repeat; - cursor: move; z-index: 1000; } @@ -21,6 +21,7 @@ margin: 0; padding: 0; } + #dashboard .select-layout.selected img { border: 3px solid #4B9FD5; } @@ -32,21 +33,24 @@ padding: 10px; margin: 0 0 10px 0; border: 1px solid #ddd; - border-radius: 0 0 2px 2px; - -moz-border-radius: 0 0 2px 2px; + border-radius: 0 0 3px 3px; + -moz-border-radius: 0 0 3px 3px; } + #dashboard .configure_widget { - display: block; - position: relative; + display: block; + position: relative; } + #dashboard .widget_props { background-color: #FFF6BF; border: 1px solid #FFD324; margin-bottom: 10px; padding: 5px; + border-radius: 0 0 3px 3px; + -moz-border-radius: 0 0 3px 3px; } - /*CONFIGURATION*/ #dashboard #widget_defs { height: 250px; @@ -64,6 +68,7 @@ vertical-align: top; width: 25%; } + #dashboard .widget_def { border: 1px solid #FFD324; padding: 5px; @@ -72,13 +77,16 @@ vertical-align: top; height: 80px; } + #dashboard ul.widget_categs li { padding-right: 5px; } + #dashboard ul.widget_categs li.selected a { font-weight: bold; text-decoration: none; } + /*OPERATIONS*/ #dashboard #dashboard-operations { position: relative; @@ -133,8 +141,8 @@ #dashboard .column-handle { height: 100px; width: 100%; - margin: 10px 0px 10px 0px; - padding: 0px; + margin: 10px 0 10px 0; + padding: 0; display: inline-block; line-height: 100px; text-align: center; @@ -142,36 +150,40 @@ vertical-align: middle; color: #555; } + #dashboard .block { position: relative; width: 100%; } -#dashboard .block .handle { - margin: 0; +#dashboard .widget-header { + line-height: 16px; padding: 3px 5px; background-color: #efefef; - cursor: move; border: 1px solid #ddd; border-bottom: 0; - border-radius: 2px 2px 0 0; - -moz-border-radius: 2px 2px 0 0; + border-radius: 3px 3px 0 0; + -moz-border-radius: 3px 3px 0 0; + } -#dashboard .block .block-view-toggle { - display: block; - float: right; - cursor: pointer; - padding-left: 5px; - text-decoration: underline; +#dashboard .widget-handle { + cursor: move; + margin: 0; + background-image: url('../images/move.png'); + background-position: left center; + background-repeat: no-repeat; + padding-left: 20px; } -#dashboard .block .block-remove { - display: block; +#dashboard .widget-actions { float: right; + overflow: hidden; /* clears float for most browsers */ + zoom: 1; +} + +#dashboard .widget-actions a { cursor: pointer; - padding-left: 5px; - text-decoration: underline; } #dashboard .block-hover { |