You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.css 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2023 SonarSource SA
  4. * mailto:info AT sonarsource DOT com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. .quality-profiles-table {
  21. padding-top: 7px;
  22. }
  23. .quality-profiles-table-name {
  24. }
  25. .quality-profiles-table-inheritance {
  26. width: 280px;
  27. }
  28. .quality-profiles-table-projects,
  29. .quality-profiles-table-rules,
  30. .quality-profiles-table-date {
  31. min-width: 80px;
  32. }
  33. .quality-profiles-list-header {
  34. line-height: var(--controlHeight);
  35. margin-bottom: 20px;
  36. padding: 5px 10px;
  37. border-bottom: 1px solid var(--barBorderColor);
  38. }
  39. .quality-profile-grid {
  40. display: flex;
  41. justify-content: space-between;
  42. align-items: flex-start;
  43. }
  44. .quality-profile-grid-left {
  45. width: 340px;
  46. flex-shrink: 0;
  47. }
  48. .quality-profile-grid-right {
  49. flex-grow: 1;
  50. margin-left: 20px;
  51. }
  52. .quality-profile-rules-distribution {
  53. margin-bottom: 15px;
  54. padding: 7px 20px 0;
  55. }
  56. .quality-profile-rules-deprecated {
  57. margin-top: 20px;
  58. padding: 15px 20px;
  59. background-color: var(--alertBackgroundError);
  60. }
  61. .quality-profile-rules-sonarway-missing {
  62. margin-top: 20px;
  63. padding: 15px 20px;
  64. background-color: var(--alertBackgroundWarning);
  65. }
  66. .quality-profile-not-found {
  67. padding-top: 100px;
  68. text-align: center;
  69. }
  70. .quality-profiles-evolution {
  71. padding-top: 55px;
  72. }
  73. .quality-profiles-evolution-deprecated {
  74. border-color: var(--alertBorderError);
  75. background-color: var(--alertBackgroundError);
  76. }
  77. .quality-profiles-evolution-stagnant {
  78. border-color: var(--alertBorderWarning);
  79. background-color: var(--alertBackgroundWarning);
  80. }
  81. .quality-profile-comparison-table {
  82. table-layout: fixed;
  83. }
  84. .quality-profile-changelog-rule-cell {
  85. line-height: 1.5;
  86. }
  87. .quality-profile-changelog-parameter {
  88. max-width: 270px;
  89. word-break: break-word;
  90. }
  91. #create-profile-form .radio-card {
  92. width: 245px;
  93. background-color: var(--neutral50);
  94. border: 1px solid var(--neutral200);
  95. }
  96. #create-profile-form .radio-card.selected {
  97. background-color: var(--info50);
  98. border: 1px solid var(--info500);
  99. }
  100. #create-profile-form .radio-card:hover:not(.selected) {
  101. border: 1px solid var(--info500);
  102. }
  103. #create-profile-form fieldset > div {
  104. justify-content: space-between;
  105. }
  106. #create-profile-form .radio-card-header {
  107. justify-content: space-around;
  108. }
  109. #create-profile-form .radio-card-body {
  110. justify-content: flex-start;
  111. }