From: Stas Vilchik Date: Tue, 18 Jul 2017 09:30:44 +0000 (+0200) Subject: add application icon and description (#2258) X-Git-Tag: 6.6-RC1~801 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d275093bbfeebff18d14e5f6fa599cb30baaab98;p=sonarqube.git add application icon and description (#2258) --- diff --git a/server/sonar-web/src/main/less/components/navigator.less b/server/sonar-web/src/main/less/components/navigator.less deleted file mode 100644 index 63443399ab6..00000000000 --- a/server/sonar-web/src/main/less/components/navigator.less +++ /dev/null @@ -1,25 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2017 SonarSource SA - * mailto:info 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 "navigator/config"; -@import "navigator/base"; -@import "navigator/filters"; diff --git a/server/sonar-web/src/main/less/components/navigator/base.less b/server/sonar-web/src/main/less/components/navigator/base.less deleted file mode 100644 index e16babca1e5..00000000000 --- a/server/sonar-web/src/main/less/components/navigator/base.less +++ /dev/null @@ -1,407 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2017 SonarSource SA - * mailto:info 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) "../../variables"; -@import (reference) "../../mixins"; -@import (reference) "config"; - -.navigator { -} - -.navigator-element() { - position: fixed; - z-index: @navigator-element-z-index; - box-sizing: border-box; -} - -.navigator-header { - height: @navigatorHeaderHeight; - margin: @navigatorPadding; - border: 1px solid @navigatorBorderLightColor; - box-sizing: border-box; -} - -.navigator-filters { - position: relative; - border: 1px solid @navigatorBorderLightColor; - box-sizing: border-box; -} - -.navigator-content { - display: table; - width: 100%; -} - -.navigator-side { - position: relative; - display: table-cell; - vertical-align: top; - width: @navigatorResultsWidth + 2 * @navigatorPadding; - min-width: 275px + 2 * @navigatorPadding; - max-width: 600px + 2 * @navigatorPadding; -} - -.navigator-main { - display: table-cell; - vertical-align: top; -} - -.navigator-results { - position: relative; - z-index: @navigator-results-z-index; - width: @navigatorResultsWidth; - min-width: 275px; - max-width: 600px; - margin: @navigatorPadding @navigatorPadding 0; - box-sizing: border-box; -} - -.navigator-actions { - position: relative; - z-index: @navigator-actions-z-index; - margin: 0 @navigatorPadding @navigatorPadding; - border: 1px solid @navigatorBorderLightColor; - box-sizing: border-box; - .clearfix; -} - -.navigator-details { - position: relative; - margin: @navigatorPadding 0 0 0; -} - -.navigator-notes { - display: none; -} - -.navigator-with-notes { - .navigator-notes { - display: block; - } -} - -.measures-page { - .navigator-details { - overflow: visible; - } -} - -.navigator-fetching { - &:before { - content: " "; - position: absolute; - z-index: @navigator-fetching-z-index; - top: 0; - bottom: 0; - left: 0; - right: 0; - background: #fff url(../../../images/loading.gif) no-repeat 4px 4px; - } -} - -.navigator-page-loader { - padding: @navigatorPadding 0 0 @navigatorPadding; -} - -// Header -.navigator-header { - padding: 0 @navigatorPadding; - background-color: @navigatorBarBackground; - font-size: 0; - - .page-title, - .page-actions { - margin: (@navigatorHeaderHeight - @formControlHeight) / 2 0; - } -} - -.navigator-header-favorite { - padding-left: 58px; -} - -.navigator-header-title { - display: inline-block; - vertical-align: middle; - color: @navigatorHeaderColor; - font-size: 20px; - line-height: @navigatorHeaderLineHeight; -} - -.navigator-header-title-note { - vertical-align: middle; - color: #777; - font-size: @smallFontSize; -} - -.navigator-header-description { - display: inline-block; - vertical-align: middle; - max-width: 70%; - margin-left: 16px; - font-size: @smallFontSize; - font-style: italic; -} - -.navigator-header-actions { - margin: 8px 0 8px 20px; - - & > a { - vertical-align: middle; - margin: 0 8px; - font-size: @smallFontSize; - } -} - -.navigator-header-menu-toggle { - display: inline-block; - vertical-align: top; - height: 36px; - margin-right: 10px; - margin-left: -10px; - padding: 10px; - border-right: 1px solid transparent; - box-sizing: border-box; - cursor: pointer; - transition: all 0.2s ease; - - &:hover { - background-color: @navigatorHover; - } - - &.active { - border-color: #cdcdcd; - background-color: #fff; - } - - [class^="icon-"], - [class*=" icon-"] { - font-size: 16px; - } -} - -// Notes -.navigator-notes { - margin: 0 @navigatorPadding @navigatorPadding @navigatorPadding; - padding: 0 @navigatorPadding; - border: 1px solid @navigatorBorderColor; - background-color: @navigatorBarBackground; - - color: #777; - font-size: @smallFontSize; - line-height: @navigatorNotesHeight; -} - -// Facets -.navigator-facets { - padding: @navigatorPadding; - border-bottom: 1px solid @navigatorBorderColor; - background-color: @navigatorBarBackground; -} - -.navigator-facets-list { -} - -.navigator-facets-list-item { - font-size: 0; - margin-bottom: -6px; -} - -.navigator-facets-list-item + .navigator-facets-list-item { - margin-top: @navigatorPadding; -} - -.navigator-facets-list-item-name { - float: left; - line-height: 22px; - min-width: 120px; - margin-right: @navigatorPadding; - font-size: @smallFontSize; - font-weight: normal; - text-transform: uppercase; -} - -.navigator-facets-list-item-options { - overflow: hidden; -} - -// Results -.navigator-results { - background-color: @white; - overflow-x: hidden; - overflow-y: auto; - - &.fetching { - .navigator-results-list { - visibility: hidden; - } - .navigator-results-loader { - display: block; - } - } -} - -.navigator-results-loader { - position: fixed; - z-index: @navigator-results-loader-z-index; - display: none; - background-color: #fff; -} - -.navigator-results-list { - & > li { - position: relative; - z-index: @normal-z-index; - padding: @navigatorPadding / 2 0; - border: 1px solid; - border-color: @navigatorBorderLightColor transparent; - cursor: pointer; - transition: all 0.2s ease; - - .line { - padding: @navigatorPadding / 2 @navigatorPadding; - line-height: 1.2; - } - - .line-small { - font-size: 11px; - line-height: 14px; - } - - .line-right { - float: right; - } - - .line-nowrap { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - &:hover { - background-color: @navigatorBarBackground; - } - - &.active { - z-index: @above-normal-z-index; - background-color: #cae3f2; - border-color: #4b9fd5; - } - } - - & > li + li { - margin-top: -1px; - } -} - -.navigator-results-no-results { - padding-top: 20% !important; - background: #fff !important; - border-color: transparent !important; - color: #999; - cursor: default !important; - text-align: center; -} - -// Details -.navigator-details { - background-color: @white; - overflow: auto; - - &.loading { - background: @white url("../../../images/loading.gif") no-repeat 4px 2px; - } -} - -// Status -.navigator-actions { - padding: 0 @navigatorPadding 0 0; - - border-right: 1px solid @navigatorBorderLightColor; - border-bottom: 1px solid @navigatorBorderLightColor; - background-color: @navigatorBarBackground; - font-size: @smallFontSize; - - strong { - font-weight: bold; - } -} - -.navigator-actions-order { - float: left; - padding: 0 @navigatorPadding; - line-height: @navigatorStatusHeight; - cursor: pointer; - transition: all 0.2s ease; - - &:hover { - background-color: @navigatorHover; - } -} - -.navigator-actions-order-choices { - position: absolute; - top: 100%; - left: -1px; - min-width: @navigatorResultsWidth / 2; - background-color: #fff; - border: 1px solid @navigatorBorderLightColor; - box-shadow: @defaultShadow; - overflow: hidden; - display: none; - - & > li { - height: @navigatorStatusHeight; - line-height: @navigatorStatusHeight; - padding: 0 10px; - cursor: pointer; - transition: all 0.2s ease; - - &:hover { - background-color: @navigatorBarBackground; - } - } - - &.open { - display: block; - } -} - -.navigator-actions-total { - float: right; - height: @navigatorStatusHeight; - line-height: @navigatorStatusHeight; -} - -.navigator-actions-bulk { - position: relative; - top: -1px; - margin-left: 8px; - font-size: 16px; - text-decoration: none; -} - -// Footer -.navigator-page #footer { - margin: 0; - border-top: 1px solid @navigatorBorderLightColor; -} - -.navigator-page #ftlinks { - margin-top: 0; -} diff --git a/server/sonar-web/src/main/less/components/navigator/config.less b/server/sonar-web/src/main/less/components/navigator/config.less deleted file mode 100644 index 96268a7d1a9..00000000000 --- a/server/sonar-web/src/main/less/components/navigator/config.less +++ /dev/null @@ -1,49 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2017 SonarSource SA - * mailto:info 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) "../../variables"; - -// Layout -@navigatorTopOffset: 80px; -@navigatorBottomOffset: 35px; - -@navigatorHeaderHeight: 40px; -@navigatorHeaderLineHeight: @navigatorHeaderHeight - 3px; -@navigatorFiltersHeight: 40px; -@navigatorFiltersLineHeight: @navigatorFiltersHeight - 3px; -@navigatorFacetsHeight: 90px; -@navigatorStatusHeight: 30px; -@navigatorNotesHeight: 20px; - -@navigatorResultsWidth: 320px; - -@navigatorPadding: 10px; - -// Colors -@navigatorBarBackground: @barBackgroundColor; -@navigatorBorderColor: @barBorderColor; -@navigatorBorderLightColor: @barBorderColor; - -@navigatorHeaderColor: @baseFontColor; - -@navigatorFacetStatColor: @secondFontColor; -@navigatorFacetInactiveBackground: lighten(@barBackgroundColor, 4%); - -@navigatorHover: darken(@navigatorBarBackground, 5%); -@navigatorFilterPadding: @navigatorPadding; diff --git a/server/sonar-web/src/main/less/components/navigator/filters.less b/server/sonar-web/src/main/less/components/navigator/filters.less deleted file mode 100644 index 3fc042bb698..00000000000 --- a/server/sonar-web/src/main/less/components/navigator/filters.less +++ /dev/null @@ -1,346 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2017 SonarSource SA - * mailto:info 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) "../../variables"; -@import (reference) "../../mixins"; -@import (reference) "config"; - -.navigator-filters { - padding-right: 85px; - background-color: @navigatorBarBackground; - font-size: 0; -} - -.navigator-filters-list { - display: inline-block; - vertical-align: middle; - font-size: 0; - margin-bottom: -1px; -} - -.navigator-filter-submit, -.navigator-filter-new-search { - vertical-align: middle; - margin-left: 15px; - font-size: @baseFontSize; -} - -.navigator-filter-submit { - position: absolute; - bottom: 0; - right: 0; - width: 85px; - height: @navigatorFiltersHeight; - margin: -1px -1px -1px 0; - padding: 0; - border: 1px solid darken(@blue, 10%); - background: @blue; - color: #fff; - font-weight: normal; - transition: all 0.2s ease; - - &::-moz-focus-inner { - border: 0; - } - - &:hover, - &:focus { - border-color: @blue; - background-color: lighten(@blue, 10%); - } -} - -.navigator-filter-list-favorite { - position: relative; - padding-left: 36px; - overflow: hidden; -} - -.navigator-filters-actions { - display: inline-block; - vertical-align: middle; - margin-left: 20px; - font-size: @baseFontSize; -} - -.navigator-filter { - position: relative; - z-index: @normal-z-index; - display: inline-block; - vertical-align: top; - height: @navigatorFiltersHeight; - line-height: @navigatorFiltersLineHeight; - margin: -1px 0 0 -1px; - padding: 0 1.5 * @navigatorFilterPadding; - border: 1px solid @navigatorBorderLightColor; - box-sizing: border-box; - white-space: nowrap; - cursor: pointer; - transition: all 0.2s ease; - - &:hover { - z-index: @above-normal-z-index; - border-color: @navigatorBorderColor; - background-color: @navigatorHover; - } - - &.active { - border-color: @darkGrey; - background: #fff; - } -} - -.navigator-filter-disabled { - display: none; -} - -.navigator-filter-optional { - padding-right: 0; -} - -.navigator-filter-inline, -.navigator-filter-read-only, -.navigator-filter-inactive { - cursor: default; - - &:hover, - &.active { - border-color: transparent; - background: transparent; - } -} - -.navigator-filter-inline .navigator-filter-label:after { - content: ""; -} - -.navigator-filter-inactive { - opacity: 0.5; -} - -.navigator-filter-context { - z-index: @navigator-filter-context-z-index; - background-color: @contextBackground; - border-color: @contextBorder; -} - -.navigator-filter-label { - display: inline-block; - vertical-align: middle; - margin-right: 5px; - color: #333; - font-size: @baseFontSize; - - &:after { - content: ":"; - } -} - -.navigator-filter-value { - display: inline-block; - vertical-align: middle; - max-width: 120px; - color: #333; - font-size: @baseFontSize; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - - &.default { - color: #666; - } -} - -.navigator-filter-disable { - display: inline-block; - vertical-align: middle; - width: 20px; - height: 20px; - line-height: 20px; - margin: 0 0 0 5px; - font-size: 18px; - text-align: center; - transition: background 0.3s ease; - - &:hover { - background-color: darken(@navigatorHover, 7%); - } -} - -.navigator-filter-range-input { - width: 120px; -} - -.navigator-filter-details { - display: none; - position: absolute; - z-index: @dropdown-menu-z-index; - min-width: 100px; - border: 1px solid @darkGrey; - background: #fff; - box-shadow: @defaultShadow; - font-size: @baseFontSize; - transition: opacity 0.3s ease; - - &.active { - display: block; - } -} - -@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { - /* IE10+ specific styles go here */ - .navigator-filter-details { - width: 250px; - } -} - -.navigator-filter-details-inner { - max-width: 300px; - padding: 5px @navigatorFilterPadding; - - .select2-container, - input { - margin: 5px 0; - vertical-align: middle; - } -} - -.navigator-filter-select-list { - min-width: 150px; - max-width: 300px; - max-height: 182px; - padding: 5px 0; - overflow-y: auto; - -ms-overflow-style: scrollbar; - - label { - display: block; - padding: 5px @navigatorFilterPadding; - cursor: pointer; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - transition: background 0.2s ease; - - &:hover, - &.current { - background-color: darken(#fff, 7%); - } - - & > input[type=checkbox] { - vertical-align: baseline; - cursor: pointer; - } - - & > img { - vertical-align: text-bottom; - } - - &.special { - font-style: italic; - - & > span { - text-decoration: underline; - } - } - - &.inactive { - cursor: default; - opacity: 0.5; - - &:hover { - background-color: transparent; - } - } - } - - .single { - padding: 5px @navigatorFilterPadding; - } - - .line { - height: 1px; - margin: 5px 0; - background: @darkGrey; - } -} - -.navigator-filter-select-list:not(.hidden) + .navigator-filter-select-list { - margin-top: 5px; - border-top: 1px solid @darkGrey; -} - -.navigator-filter-search { - position: relative; - margin: @navigatorFilterPadding 26px @navigatorFilterPadding @navigatorFilterPadding; - - input { - width: 100%; - height: 26px; - padding: 0 7px; - border: 1px solid @darkGrey; - box-sizing: border-box; - } - - .fetching &:after { - content: ' '; - position: absolute; - top: 6px; - right: -21px; - display: block; - width: 16px; - height: 16px; - background: #fff url(../../../images/loading.gif) no-repeat center center; - } - - &.fetching-error { - input { - border: 2px solid @red; - } - } -} - -.navigator-filter-load-more { - display: none; - height: 26px; - line-height: 26px; - background-color: @grey; - text-align: center; - cursor: pointer; - transition: background 0.3s ease; - - &:hover { - background-color: darken(@grey, 7%); - } -} - -.navigator-filter-favorite { - position: relative; -} - -.navigator-filter-favorite-toggle { - width: 16px; - height: @navigatorFiltersHeight; - background: url(../../../images/navigator/favorite-filters@2x.png) no-repeat center center; - background-size: 16px 14px; -} - -.navigator-filter-more-criteria { - font-size: @baseFontSize; -} diff --git a/server/sonar-web/src/main/less/init/icons.less b/server/sonar-web/src/main/less/init/icons.less index 3c8c61dcecf..8a702fafd96 100644 --- a/server/sonar-web/src/main/less/init/icons.less +++ b/server/sonar-web/src/main/less/init/icons.less @@ -248,6 +248,9 @@ a[class*=" icon-"] { .icon-qualifier-dev { background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20stroke-linejoin%3D%22round%22%20stroke-miterlimit%3D%221.414%22%3E%3Cpath%20d%3D%22M7.974%208.02c-.938%200-1.82-.36-2.482-1.017-.663-.655-1.028-1.527-1.028-2.455%200-.927.365-1.8%201.028-2.455.663-.656%201.544-1.017%202.482-1.017.937%200%201.82.36%202.482%201.017.662.656%201.027%201.528%201.027%202.455%200%20.928-.365%201.8-1.027%202.455C9.793%207.66%208.91%208.02%207.974%208.02zm0-5.778c-1.286%200-2.332%201.034-2.332%202.306s1.046%202.307%202.332%202.307c1.285%200%202.332-1.035%202.332-2.307S9.258%202.242%207.974%202.242zm3.534%206.418c.127.016.243.045.348.086.17.066.302.146.406.246.132.124.253.282.36.47.126.218.226.442.3.668.08.253.15.535.206.838.056.313.095.604.113.867.02.28.03.57.03.862%200%20.532-.174.758-.306.882-.142.132-.397.31-.973.31H3.948c-.233%200-.437-.03-.606-.09-.14-.05-.26-.123-.366-.222-.13-.123-.306-.35-.306-.88%200-.294.01-.584.03-.863.018-.263.056-.554.112-.867.055-.303.125-.585.207-.838.073-.226.173-.45.298-.667.108-.19.23-.347.36-.47.106-.1.238-.18.407-.247.105-.04.22-.07.348-.086.202.13.432.277.683.435.342.217.756.4%201.265.564.523.166%201.06.25%201.59.25.534%200%201.07-.084%201.592-.25.51-.164.923-.348%201.266-.565.25-.158.48-.304.682-.435zm-.244-1.18c-.055%200-.184.066-.387.196-.202.13-.43.276-.685.437-.255.16-.586.307-.994.437-.408.13-.818.196-1.23.196-.41%200-.82-.065-1.228-.196-.408-.13-.74-.276-.993-.437-.255-.16-.484-.306-.686-.437-.202-.13-.33-.196-.386-.196-.374%200-.716.06-1.026.183-.31.12-.572.283-.787.487-.213.203-.404.45-.57.737-.165.288-.297.584-.395.888-.098.303-.18.633-.244.988-.063.355-.106.685-.128.992-.02.306-.032.62-.032.942%200%20.73.224%201.304.672%201.726.448.42%201.043.632%201.785.632h8.044c.743%200%201.34-.21%201.787-.633.447-.42.67-.996.67-1.725%200-.32-.01-.635-.03-.942-.022-.307-.065-.637-.13-.992-.064-.355-.146-.685-.244-.988-.098-.304-.23-.6-.395-.888-.166-.288-.356-.534-.57-.737-.216-.204-.478-.366-.788-.487-.31-.122-.652-.183-1.026-.183z%22%20fill%3D%22%232D88C0%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E'); } +.icon-qualifier-app { + background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016%2016%22%20width%3D%2216%22%20height%3D%2216%22%3E%0A%20%20%3Cstyle%3E%0A%20%20%20%20.st0%7Bfill%3Anone%3Bstroke%3A%234A9ED5%3Bstroke-miterlimit%3A10%3B%7D%0A%20%20%3C%2Fstyle%3E%0A%20%20%3Ccircle%20cx%3D%223%22%20cy%3D%223%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%228%22%20cy%3D%223%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%2213%22%20cy%3D%223%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%223%22%20cy%3D%228%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%228%22%20cy%3D%228%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%2213%22%20cy%3D%228%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%223%22%20cy%3D%2213%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%228%22%20cy%3D%2213%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%20%20%3Ccircle%20cx%3D%2213%22%20cy%3D%2213%22%20r%3D%221.5%22%20class%3D%22st0%22%2F%3E%0A%3C%2Fsvg%3E%0A'); +} /* * Checkbox diff --git a/server/sonar-web/src/main/less/sonar.less b/server/sonar-web/src/main/less/sonar.less index f13e4cd339a..6b87cd450f4 100644 --- a/server/sonar-web/src/main/less/sonar.less +++ b/server/sonar-web/src/main/less/sonar.less @@ -45,7 +45,6 @@ @import "components/dropdowns"; @import "components/menu"; @import "components/page"; -@import "components/navigator"; @import "components/component-name"; @import "components/select-list"; @import "components/graphics"; diff --git a/sonar-core/src/main/resources/org/sonar/l10n/core.properties b/sonar-core/src/main/resources/org/sonar/l10n/core.properties index f7bdd5b9997..42d69209f39 100644 --- a/sonar-core/src/main/resources/org/sonar/l10n/core.properties +++ b/sonar-core/src/main/resources/org/sonar/l10n/core.properties @@ -438,6 +438,9 @@ qualifiers.update.VW=Update Portfolio qualifiers.update.DEV=Update Developer qualifiers.update.APP=Update Application +qualifier.description.VW=Potentially multi-level, management-oriented overview aggregation. +qualifier.description.APP=Single-level aggregation with a technical focus and a project-like homepage. + #------------------------------------------------------------------------------ # # PROJECT LINKS