]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-21656 Remove boxed group css and account css
authorJeremy Davis <jeremy.davis@sonarsource.com>
Mon, 4 Mar 2024 17:10:12 +0000 (18:10 +0100)
committersonartech <sonartech@sonarsource.com>
Wed, 6 Mar 2024 20:02:33 +0000 (20:02 +0000)
server/sonar-web/src/main/js/app/styles/components/boxed-group.css [deleted file]
server/sonar-web/src/main/js/app/styles/sonar.ts
server/sonar-web/src/main/js/apps/account/Account.tsx
server/sonar-web/src/main/js/apps/account/account.css [deleted file]
server/sonar-web/src/main/js/components/tutorials/components/Step.tsx

diff --git a/server/sonar-web/src/main/js/app/styles/components/boxed-group.css b/server/sonar-web/src/main/js/app/styles/components/boxed-group.css
deleted file mode 100644 (file)
index 02b5cb0..0000000
+++ /dev/null
@@ -1,105 +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.
- */
-.boxed-group {
-  margin-bottom: calc(2.5 * var(--gridSize));
-  border: 1px solid var(--barBorderColor);
-  border-radius: 2px;
-  background-color: #fff;
-}
-
-.boxed-group.no-border {
-  border-color: transparent;
-}
-
-.boxed-group-centered {
-  margin-left: auto;
-  margin-right: auto;
-  max-width: 500px;
-}
-
-.boxed-group > h2 {
-  line-height: var(--controlHeight);
-  padding: calc(2 * var(--gridSize)) 20px 0;
-}
-
-.boxed-group > h2.boxed-title {
-  padding: 0 0 8px;
-  margin: 0;
-  font-weight: 600;
-}
-
-.boxed-group hr {
-  height: 0;
-  border-top: 1px solid var(--gray94);
-  margin: calc(2 * var(--gridSize)) -20px;
-}
-
-.boxed-group-inner {
-  padding: calc(2 * var(--gridSize)) 20px;
-}
-
-.boxed-group-inner:empty {
-  padding-top: 0;
-}
-
-.boxed-group-list {
-  margin-top: -var(--gridSize);
-  margin-bottom: -var(--gridSize);
-}
-
-.boxed-group-list > li {
-  margin-left: -20px;
-  margin-right: -20px;
-  padding: var(--gridSize) 20px;
-}
-
-.boxed-group-accordion {
-  border-color: var(--neutral200);
-  margin-bottom: var(--gridSize);
-  transition: border-color 0.3s ease;
-}
-
-.boxed-group-accordion:hover,
-.boxed-group-accordion.open {
-  border-color: var(--info400);
-}
-
-.boxed-group-accordion.not-clickable .boxed-group-accordion-title > svg {
-  display: none;
-}
-
-.boxed-group-accordion-alert.boxed-group-accordion-alert {
-  vertical-align: middle;
-  margin-bottom: -6px;
-  margin-top: -6px;
-}
-
-.boxed-group-accordion .boxed-group-inner {
-  padding-top: 0;
-}
-
-.boxed-group-accordion-title {
-  display: inline-flex;
-  align-items: center;
-  vertical-align: middle;
-  font-weight: bold;
-  transition: color 0.3s ease;
-  text-align: left;
-}
index aa6fdccd8703ab95db689edae18412e3ab19e9e6..cf4ba700eb54a66d2f549bf6e8b3ac95eb63f03b 100644 (file)
@@ -23,7 +23,6 @@
 import '../../../../../public/fonts/Inter/inter.css';
 import '../../../../../public/fonts/Ubuntu/Ubuntu.css';
 
-import './components/boxed-group.css';
 import './components/global-loading.css';
 import './components/page.css';
 import './init/base.css';
index 9af6a4ec10ff7054d345f0faf572902de5912f0f..bab248526d638ab583a4dadb34b86fdd5e59f1f9 100644 (file)
@@ -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 (file)
index 0578071..0000000
+++ /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);
-}
index e1734842320ea93c5a88aea274c9d2db01119caf..d521c8625bcdd20d7bda7a1db803ee7375489103 100644 (file)
@@ -60,7 +60,7 @@ export default function Step(props: Props) {
       >
         <TutorialStepList className="sw-flex-1">
           <TutorialStep title={stepTitle} stepNumber={stepNumber}>
-            {open ? <div>{props.renderForm()}</div> : <div className="boxed-group-inner" />}
+            {open ? <div>{props.renderForm()}</div> : <div className="sw-px-5 sw-pb-4" />}
           </TutorialStep>
         </TutorialStepList>
         {!open && props.renderResult && props.renderResult()}