diff options
Diffstat (limited to 'server/sonar-web/src/main/less/pages/analysis-reports.less')
-rw-r--r-- | server/sonar-web/src/main/less/pages/analysis-reports.less | 117 |
1 files changed, 0 insertions, 117 deletions
diff --git a/server/sonar-web/src/main/less/pages/analysis-reports.less b/server/sonar-web/src/main/less/pages/analysis-reports.less deleted file mode 100644 index 4e3bef56f27..00000000000 --- a/server/sonar-web/src/main/less/pages/analysis-reports.less +++ /dev/null @@ -1,117 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2016 SonarSource SA - * mailto:contact AT sonarsource DOT com - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ -@import (reference) "../mixins"; -@import (reference) "../variables"; -@import (reference) "../components/ui"; -@import (reference) "../components/navigator/base"; -@import (reference) "../init/type"; - - -@pendingColor: #fdfce2; -@workingColor: #ecf9fc; -@doneColor: #ecfced; -@cancelledColor: #fcecec; -@failedColor: #fcecec; - - -.analysis-reports-actions { - margin-bottom: 10px; -} - -.analysis-reports-total { - float: right; - margin-top: -20px; -} - -.analysis-reports-results .navigator-results-list > li { - cursor: default; -} - -.analysis-reports-no-results { - border: none !important; -} - -.analysis-reports-report-pending { - background-color: @pendingColor !important; -} - -.analysis-reports-report-working { - background-color: @workingColor !important; -} - -.analysis-reports-report-done { - background-color: @doneColor !important; -} - -.analysis-reports-report-cancelled { - background-color: @cancelledColor !important; -} - -.analysis-reports-report-failed { - background-color: @failedColor !important; - - .analysis-reports-report-id { color: darken(@failedColor, 60%); } -} - -.analysis-reports-project { - display: inline-block; - vertical-align: middle; - width: 30%; - .text-ellipsis; -} - -.analysis-reports-timestamp { - display: inline-block; - vertical-align: middle; - width: 220px; - margin-left: 15px; -} - -.analysis-reports-report-id { - position: absolute; - top: 6px; - right: 6px; - opacity: 0.3; - font-size: @bigFontSize; - - &:before { content: '#'; } -} - -.analysis-reports-spinner { - width: 200px; - height: 200px; - margin-top: 20px; -} - -.analysis-reports-spinner, -.analysis-reports-spinner:before -.analysis-reports-spinner:after { - animation-duration: 6s; -} - -.analysis-reports-timestamp-spinner { - margin-left: 10px; -} - -.analysis-reports-timestamp-spinner, -.analysis-reports-timestamp-spinner:before, -.analysis-reports-timestamp-spinner:after { - animation-duration: 2s; -} |