diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2024-03-04 18:10:12 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-03-06 20:02:33 +0000 |
commit | 8b8a4c777ec1c680c5018f4d8324d38a7d3fb11a (patch) | |
tree | c9cb59cb5a90578040fabfe96bb3eb1c10e87968 /server/sonar-web/src/main/js/apps | |
parent | 645082de0eba5c5a043328b2d55f3682f95a785d (diff) | |
download | sonarqube-8b8a4c777ec1c680c5018f4d8324d38a7d3fb11a.tar.gz sonarqube-8b8a4c777ec1c680c5018f4d8324d38a7d3fb11a.zip |
SONAR-21656 Remove boxed group css and account css
Diffstat (limited to 'server/sonar-web/src/main/js/apps')
-rw-r--r-- | server/sonar-web/src/main/js/apps/account/Account.tsx | 1 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/apps/account/account.css | 82 |
2 files changed, 0 insertions, 83 deletions
diff --git a/server/sonar-web/src/main/js/apps/account/Account.tsx b/server/sonar-web/src/main/js/apps/account/Account.tsx index 9af6a4ec10f..bab248526d6 100644 --- a/server/sonar-web/src/main/js/apps/account/Account.tsx +++ b/server/sonar-web/src/main/js/apps/account/Account.tsx @@ -27,7 +27,6 @@ import { useCurrentLoginUser } from '../../app/components/current-user/CurrentUs import A11ySkipTarget from '../../components/a11y/A11ySkipTarget'; import Suggestions from '../../components/embed-docs-modal/Suggestions'; import { translate, translateWithParameters } from '../../helpers/l10n'; -import './account.css'; import Nav from './components/Nav'; import UserCard from './components/UserCard'; diff --git a/server/sonar-web/src/main/js/apps/account/account.css b/server/sonar-web/src/main/js/apps/account/account.css deleted file mode 100644 index 0578071bf8f..00000000000 --- a/server/sonar-web/src/main/js/apps/account/account.css +++ /dev/null @@ -1,82 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2024 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. - */ -.account-container { - width: 1000px; - margin-left: auto; - margin-right: auto; -} - -.account-header { - padding-top: 20px; - padding-bottom: 20px; - border-bottom: 1px solid var(--barBorderColor); - background-color: #fff; -} - -.account-nav { - float: right; - padding-top: 11px; -} - -.account-user { - float: left; -} - -.account-user h1 { - line-height: 60px; -} - -.account-user-avatar { - margin-right: 20px; -} - -.account-user-avatar > img { - border-radius: 60px; -} - -.account-user-avatar:empty { - display: none; -} - -.account-body { - padding: 40px 0; -} - -.account-profile .boxed-group-inner:not(:first-child) { - border-top: 1px solid var(--barBorderColor); -} - -.notifications-table { - margin-top: calc(-2 * var(--gridSize)); -} - -.notifications-add-project-no-search-results { - padding: var(--gridSize); -} - -.notifications-add-project-search-results li { - padding: var(--gridSize); - cursor: pointer; -} - -.notifications-add-project-search-results li:hover, -.notifications-add-project-search-results li.active { - background-color: var(--barBackgroundColor); -} |