1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
/*
* SonarQube
* Copyright (C) 2009-2023 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.
*/
.code-components .page-actions {
margin-top: -35px;
}
.code-components .boxed-group.search-results {
padding-top: 16px;
}
.code-components .boxed-group.search-results .page-actions {
margin-top: -50px;
}
.code-components .table-wrapper {
margin: 0 20px;
}
.code-components table.data {
table-layout: fixed;
}
.code-components table.data td {
padding: 8px 6px;
vertical-align: middle;
}
.code-components table.data th {
padding-top: 24px;
}
.code-components table.data th,
.code-components table.data td:not(.thin) {
width: 84px;
}
.code-components table.data td.code-name-cell,
.code-components table.data th.code-name-cell {
width: auto;
}
.code-components table.data th.thin,
.code-components table.data td.thin {
width: 10px !important;
}
.code-components table.data tr.current-folder {
border-bottom: 1px solid var(--barBorderColor);
}
.code-components table.data tr.current-folder td {
padding-bottom: 16px !important;
padding-top: 10px !important;
}
.code-breadcrumbs {
display: flex;
flex-wrap: wrap;
}
.code-breadcrumbs > li {
padding: 5px 5px 3px;
display: flex;
}
.code-breadcrumbs > li:first-child {
padding-left: 0;
}
.code-breadcrumbs > li::after {
position: relative;
top: 1px;
padding-left: 10px;
color: var(--secondFontColor);
font-size: 11px;
content: '>';
}
.code-breadcrumbs > li:last-child::after {
display: none;
}
@media (max-width: 1200px) {
.code-name-cell .badge {
display: none;
}
}
.code-search {
margin-bottom: 10px;
display: flex;
}
.code-components-header {
position: sticky;
top: 105px;
background-color: rgba(255, 255, 255, 0.9);
z-index: 1;
}
table > thead > tr.code-components-header > th {
vertical-align: middle;
}
.code-child-component-icon {
display: inline-block;
border-left: 1px solid var(--secondFontColor);
border-bottom: 1px solid var(--secondFontColor);
margin-left: 8px;
margin-bottom: 8px;
margin-right: 4px;
height: 8px;
width: 4px;
}
.code-components .no-file .h1 {
position: fixed;
top: 50%;
}
|