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 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * SonarQube
  3. * Copyright (C) 2009-2024 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. .issues-main-header .component-name {
  21. line-height: var(--controlHeight);
  22. }
  23. .issues-main-header-spinner {
  24. margin-right: 2px;
  25. }
  26. .not-all-issue-warning.open-issue-list {
  27. background-color: var(--barBackgroundColor);
  28. box-sizing: border-box;
  29. display: inline-block;
  30. padding: 16px 16px 0;
  31. position: sticky;
  32. top: 0;
  33. z-index: 1000;
  34. }
  35. .issues .issue-list {
  36. /* no math, just a good guess */
  37. min-width: 640px;
  38. width: 800px;
  39. }
  40. .issues .issue a:focus,
  41. .issues .issue button:focus {
  42. box-shadow: none;
  43. }
  44. @media (max-width: 1320px) {
  45. .issues .issue-list {
  46. width: calc(60vw - 40px);
  47. }
  48. }
  49. .issue-location {
  50. display: inline-block;
  51. vertical-align: top;
  52. line-height: 18px;
  53. box-sizing: border-box;
  54. background-color: var(--issueBgColor);
  55. transition: background-color 0.3s ease;
  56. }
  57. .issues-workspace-list-component {
  58. padding: 15px 0 6px;
  59. }
  60. .issues-workspace-list-item + .issues-workspace-list-item {
  61. margin-top: 5px;
  62. }
  63. li:first-child .issues-workspace-list-component {
  64. padding-top: 0;
  65. }
  66. .issues-predefined-periods {
  67. display: flex;
  68. }
  69. .issues-predefined-periods .search-navigator-facet {
  70. width: auto;
  71. margin-right: calc(var(--gridSize) / 2);
  72. }
  73. .bulk-change-radio-button {
  74. margin: 0 calc(-1 * var(--gridSize) / 2);
  75. padding: 0 calc(var(--gridSize) / 2);
  76. }
  77. .bulk-change-radio-button:hover {
  78. background-color: var(--barBackgroundColor);
  79. }
  80. .layout-page-main.open-issue {
  81. padding-top: 0;
  82. }