Skip to content

Commit cb3872e

Browse files
authored
Upgrade bulma CSS to version 1.0.2 (#1268)
Signed-off-by: tdruez <[email protected]>
1 parent c470334 commit cb3872e

35 files changed

+581
-164
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ v34.9.6 (unreleased)
1717
* Add a new chapter dedicated to Webhooks management in the documentation
1818
* Add support for custom payload dedicated to Slack webhooks
1919

20+
- Upgrade Bulma CSS library to version 1.0.2
21+
https://github.com/aboutcode-org/scancode.io/pull/1268
22+
2023
v34.9.5 (2025-02-19)
2124
--------------------
2225

scancodeio/static/bulma-0.9.4.min.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

scancodeio/static/bulma-0.9.4.min.css.ABOUT

Lines changed: 0 additions & 15 deletions
This file was deleted.

scancodeio/static/bulma-1.0.2.min.css

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
about_resource: bulma-1.0.2.min.css
2+
name: bulma
3+
version: 1.0.2
4+
download_url: https://github.com/jgthms/bulma/releases/download/1.0.2/bulma-1.0.2.zip
5+
description: Modern CSS framework based on Flexbox
6+
homepage_url: https://bulma.io
7+
package_url: pkg:github/jgthms/[email protected]?download_url=https://github.com/jgthms/bulma/releases/download/1.0.2/bulma-1.0.2.zip
8+
license_expression: mit
9+
copyright: Copyright Jeremy Thomas
10+
attribute: yes
11+
licenses:
12+
- key: mit
13+
name: MIT License
14+
file: mit.LICENSE

scancodeio/static/main.css

Lines changed: 357 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,357 @@
1+
/*
2+
# SPDX-License-Identifier: Apache-2.0
3+
#
4+
# http://nexb.com and https://github.com/aboutcode-org/scancode.io
5+
# The ScanCode.io software is licensed under the Apache License version 2.0.
6+
# Data generated with ScanCode.io is provided as-is without warranties.
7+
# ScanCode is a trademark of nexB Inc.
8+
#
9+
# You may not use this software except in compliance with the License.
10+
# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0
11+
# Unless required by applicable law or agreed to in writing, software distributed
12+
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
13+
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
14+
# specific language governing permissions and limitations under the License.
15+
#
16+
# Data Generated with ScanCode.io is provided on an "AS IS" BASIS, WITHOUT WARRANTIES
17+
# OR CONDITIONS OF ANY KIND, either express or implied. No content created from
18+
# ScanCode.io should be considered or used as legal advice. Consult an Attorney
19+
# for any legal advice.
20+
#
21+
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
22+
# Visit https://github.com/aboutcode-org/scancode.io for support and download.
23+
*/
24+
25+
:root {
26+
--bulma-link-h: 229deg;
27+
--bulma-link-s: 53%;
28+
--bulma-link-l: 53%;
29+
--bulma-sun-rgb: 255, 183, 15;
30+
--bulma-moon-rgb: 129, 86, 245;
31+
--bulma-system-rgb: 72, 199, 142;
32+
--nexb-orange: #f7bf3c;
33+
}
34+
.theme-dark,
35+
[data-theme="dark"] {
36+
.has-background-light {
37+
background-color: var(--bulma-scheme-main-ter) !important;
38+
}
39+
.is-light {
40+
background-color: var(--bulma-scheme-main-ter) !important;
41+
}
42+
.hljs {
43+
background: transparent !important;
44+
}
45+
.ace-tm,
46+
.ace-tm .ace_gutter {
47+
background-color: var(--bulma-pre-background);
48+
color: var(--bulma-pre);
49+
}
50+
.has-text-dark {
51+
color: hsl(
52+
var(--bulma-light-h),
53+
var(--bulma-light-s),
54+
var(--bulma-light-l)
55+
) !important;
56+
}
57+
}
58+
.modal {
59+
--bulma-modal-card-head-padding: 1.25rem;
60+
--bulma-modal-card-body-padding: 1.25rem;
61+
--bulma-modal-card-head-radius: var(--bulma-radius-medium);
62+
}
63+
.panel {
64+
--bulma-panel-radius: var(--bulma-radius-medium);
65+
}
66+
.button[disabled] {
67+
background-color: transparent !important;
68+
}
69+
.modal-card-head {
70+
background-color: var(--bulma-scheme-main-bis);
71+
}
72+
.title {
73+
--bulma-title-weight: var(--bulma-weight-semibold);
74+
}
75+
.heading {
76+
display: block;
77+
font-size: 0.75rem;
78+
letter-spacing: 1px;
79+
margin-bottom: 5px;
80+
text-transform: uppercase;
81+
}
82+
.is-black-link {
83+
color: var(--bulma-text-strong);
84+
}
85+
.width-100,
86+
.select,
87+
.select select {
88+
width: 100%;
89+
}
90+
.width-1 {
91+
width: 1rem !important;
92+
}
93+
.height-1 {
94+
height: 1rem !important;
95+
}
96+
.has-border-radius {
97+
border-radius: 6px;
98+
}
99+
.is-help-text {
100+
cursor: help;
101+
border-bottom: dotted 1px;
102+
}
103+
.modal.is-desktop-size .modal-card {
104+
width: 960px;
105+
}
106+
.breadcrumb {
107+
user-select: text !important;
108+
}
109+
.breadcrumb .is-active {
110+
font-weight: 600 !important;
111+
}
112+
.tag-header {
113+
border-radius: 4px 4px 0 0 !important;
114+
}
115+
.border-bottom-radius {
116+
border-bottom-left-radius: 6px;
117+
border-bottom-right-radius: 6px;
118+
}
119+
.tabs .border-left-radius {
120+
border-bottom-left-radius: 4px;
121+
border-top-left-radius: 4px;
122+
}
123+
.tab-content pre {
124+
border-radius: 4px;
125+
}
126+
.tabs a.is-disabled {
127+
pointer-events: none;
128+
cursor: not-allowed;
129+
color: var(--bulma-text-weak);
130+
}
131+
.border-no-top-left-radius {
132+
border-bottom-left-radius: 6px;
133+
border-bottom-right-radius: 6px;
134+
border-top-right-radius: 6px;
135+
}
136+
.border-dashed {
137+
border-width: 2px;
138+
border-style: dashed;
139+
border-color: var(--bulma-grey-lighter);
140+
}
141+
.is-height-auto {
142+
height: auto;
143+
}
144+
pre.log {
145+
color: #f1f1f1;
146+
background-color: #222;
147+
font-family: monospace;
148+
}
149+
pre.wrap {
150+
white-space: pre-wrap;
151+
}
152+
pre.is-small {
153+
padding: 0.75rem 1rem;
154+
}
155+
.nexb-orange {
156+
color: var(--nexb-orange);
157+
}
158+
.bb-legend-item-hidden {
159+
text-decoration: line-through;
160+
opacity: 0.7 !important;
161+
}
162+
.bb-chart .bb-chart-arcs .bb-chart-arcs-title {
163+
font-size: 15px !important;
164+
fill: #4a4a4a !important;
165+
text-transform: uppercase;
166+
}
167+
svg {
168+
overflow: visible !important;
169+
}
170+
.highlight {
171+
width: 100%;
172+
}
173+
.log pre {
174+
background-color: #1c1d21;
175+
}
176+
.is-cursor-help {
177+
cursor: help;
178+
}
179+
.is-grey-link {
180+
color: #7a7a7a;
181+
}
182+
.is-black-link:hover,
183+
.is-grey-link:hover {
184+
color: #3273dc;
185+
text-decoration: underline;
186+
}
187+
.navbar button.navbar-item {
188+
font-size: 1em;
189+
}
190+
.navbar-item {
191+
gap: 0;
192+
}
193+
.is-sticky {
194+
position: sticky;
195+
}
196+
thead.is-sticky {
197+
top: -1px;
198+
z-index: 19;
199+
background-color: var(--bulma-scheme-main);
200+
}
201+
#inputs-panel .panel-block.dropdown:hover {
202+
background-color: #f5f5f5;
203+
}
204+
#inputs-panel .dropdown-menu {
205+
width: 85%;
206+
}
207+
a.panel-block {
208+
word-break: break-all;
209+
}
210+
a[target="_blank"] .fa-up-right-from-square {
211+
vertical-align: text-top;
212+
font-size: 0.65rem;
213+
}
214+
.is-wider .dropdown-menu {
215+
min-width: 18rem;
216+
}
217+
.is-wider-x2 .dropdown-menu {
218+
min-width: 24rem;
219+
}
220+
.is-tooltip .dropdown-content {
221+
background-color: #363636;
222+
}
223+
.is-tooltip .dropdown-item {
224+
font-weight: normal;
225+
color: #fff;
226+
}
227+
.dropdown.is-hoverable.is-disabled:hover .dropdown-menu {
228+
display: none;
229+
}
230+
.ace-marker {
231+
position: absolute;
232+
z-index: 3;
233+
background: #ffe9b3;
234+
}
235+
.break-all {
236+
word-break: break-all !important;
237+
}
238+
.break-word {
239+
word-break: break-word !important;
240+
}
241+
.break-normal {
242+
word-break: normal !important;
243+
}
244+
.nowrap {
245+
white-space: nowrap;
246+
}
247+
#content-header input[name="search"] {
248+
width: 225px;
249+
}
250+
button.as-link {
251+
height: auto;
252+
line-height: initial;
253+
font-size: inherit;
254+
}
255+
.button.is-smaller,
256+
.input.is-smaller {
257+
font-size: 0.9rem;
258+
}
259+
.file.is-boxed.has-name .file-cta {
260+
border-width: medium;
261+
border-style: dashed;
262+
}
263+
progress.file-upload::before {
264+
content: "Files upload: " attr(value) "%";
265+
position: absolute;
266+
top: -14%;
267+
left: 43%;
268+
color: black;
269+
font-weight: 400;
270+
}
271+
.is-clipped-list ul {
272+
--snippet-spacing: 0.95rem;
273+
max-height: calc(8 * var(--snippet-spacing));
274+
overflow: hidden;
275+
}
276+
.tab-content {
277+
display: none;
278+
}
279+
.tab-content.is-active {
280+
display: revert !important;
281+
}
282+
.breadcrumb a {
283+
padding: 0 0.25em;
284+
}
285+
.breadcrumb li a:hover {
286+
color: #363636 !important;
287+
}
288+
#resource-list th#column-status {
289+
min-width: 90px;
290+
}
291+
#message-list th#column-severity {
292+
min-width: 110px;
293+
}
294+
.menu.is-info .is-active {
295+
background-color: #3e8ed0;
296+
}
297+
.menu-list a {
298+
border-radius: 4px;
299+
}
300+
.top-0 {
301+
top: 0;
302+
}
303+
.is-line-height-normal {
304+
line-height: normal;
305+
}
306+
.has-background-ter {
307+
background-color: var(--bulma-scheme-main-ter);
308+
}
309+
.is-sun .icon {
310+
color: rgb(var(--bulma-sun-rgb));
311+
}
312+
.is-moon .icon {
313+
color: rgb(var(--bulma-moon-rgb));
314+
}
315+
.is-system .icon {
316+
color: rgb(var(--bulma-system-rgb));
317+
}
318+
textarea.is-dynamic {
319+
min-height: 70px;
320+
}
321+
#project-extra-data figure.highlight {
322+
overflow-y: scroll;
323+
}
324+
#project-extra-data .is-more-clipped figure.highlight {
325+
max-height: 250px;
326+
}
327+
#project-extra-data .is-more {
328+
position: relative;
329+
}
330+
#project-extra-data .is-more-show {
331+
bottom: -1.25em;
332+
height: 2.5em;
333+
left: calc(50% - 4.5em);
334+
padding: 0;
335+
position: absolute;
336+
width: 9em;
337+
z-index: 1;
338+
background-color: #ff9970;
339+
border: none;
340+
border-radius: 0.5em !important;
341+
}
342+
#project-extra-data pre {
343+
background-color: initial;
344+
color: initial;
345+
padding: initial;
346+
white-space: pre-wrap;
347+
word-break: break-all;
348+
}
349+
#codebase-relation-list table {
350+
table-layout: fixed;
351+
}
352+
#codebase-relation-list th#column-status {
353+
width: 110px;
354+
}
355+
#codebase-relation-list th#column-map_type {
356+
width: 145px;
357+
}

0 commit comments

Comments
 (0)