diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-02-04 20:53:35 +0100 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-02-05 15:25:58 +0100 |
commit | e0aa81c1df99db3039775c3aa2dbad5e685b64be (patch) | |
tree | caab949bc5ec887512d37136e915fa3505835ad1 /server/sonar-web/src/main/less/dsm.less | |
parent | abfd622fa5dc29501056b20a5e20cf9281052aa7 (diff) | |
download | sonarqube-e0aa81c1df99db3039775c3aa2dbad5e685b64be.tar.gz sonarqube-e0aa81c1df99db3039775c3aa2dbad5e685b64be.zip |
rework css
Diffstat (limited to 'server/sonar-web/src/main/less/dsm.less')
-rw-r--r-- | server/sonar-web/src/main/less/dsm.less | 125 |
1 files changed, 0 insertions, 125 deletions
diff --git a/server/sonar-web/src/main/less/dsm.less b/server/sonar-web/src/main/less/dsm.less deleted file mode 100644 index f41f4ffc461..00000000000 --- a/server/sonar-web/src/main/less/dsm.less +++ /dev/null @@ -1,125 +0,0 @@ -@import (reference) 'variables'; -@import (reference) 'mixins'; -@import (reference) 'ui'; - -@cellSize: 22px; - -.dsm { - -} - - -.dsm-legend { - margin: 10px 0; - - & > li { - display: inline-block; - } - - & > li + li { - margin-left: 20px; - } -} - -.dsm-legend-square { - display: inline-block; - vertical-align: middle; - .size(14px, 14px); - - &.gray { background-color: @grey; } - &.red { background-color: @red; } - &.green { .dsm-usage-mixin; } - &.blue { background-color: @blue; } - &.yellow { .dsm-dependency-mixin; } -} - -.dsm-legend-label { - display: inline-block; - vertical-align: middle; - font-size: @baseFontSize; -} - - -.dsm-body td { - border: 1px solid @barBorderColor; -} - - -.dsm-body-title { - position: relative; - vertical-align: middle; - padding: 2px 32px 2px 4px; - border-right: 2px solid darken(@barBorderColor, 8%) !important; - color: @baseFontColor; - cursor: pointer; - white-space: nowrap; - .link-no-underline; - .trans(background-color); - - &:hover { background-color: @barBackgroundColor; } -} - -.dsm-body-cell { - min-width: 23px; - padding: 2px 4px; - .box-sizing(border-box); - text-align: center; - cursor: pointer; - white-space: nowrap; - .trans(background-color); -} - -.dsm-body-cell-dependency { - background-color: @grey; -} - -.dsm-body-cell-cycle { - background-color: @red !important; - color: #fff !important; -} - - -.dsm-body-highlighted { - background-color: #dff2fd; - - &:hover { background-color: #dff2fd; } -} - -.dsm-body-usage, .dsm-body-usage:hover { .dsm-usage-mixin; } -.dsm-body-dependency, .dsm-body-dependency:hover { .dsm-dependency-mixin; } - - -.dsm-usage-mixin() { - background-color: #e2ffbe; -} - -.dsm-dependency-mixin() { - background-color: #fde9cc; -} - - -.dsm-info { - margin-top: 25px; - - th { - padding: 2px 5px 7px; - font-weight: 500; - } - - td { - padding: 2px 5px; - - &.changed { padding-top: 7px; } - } -} - -.dsm-body-title-package-tangles { - position: absolute; - top: 50%; right: 4px; - margin-top: -10px; - padding: 2px 5px; - border-radius: 20px; - background: @red; - font-size: @smallFontSize; - color: #fff; -} |