oxidized-web 0.17.1 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of oxidized-web might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.github/workflows/codeql.yml +4 -4
- data/.github/workflows/ruby.yml +1 -1
- data/.github/workflows/stale.yml +1 -1
- data/CHANGELOG.md +17 -0
- data/docs/development.md +14 -12
- data/lib/oxidized/web/public/css/oxidized.css +22 -11
- data/lib/oxidized/web/public/scripts/theme-toggle.js +55 -0
- data/lib/oxidized/web/public/weblibs/bootstrap.bundle.js +2 -5
- data/lib/oxidized/web/public/weblibs/bootstrap.bundle.js.map +1 -1
- data/lib/oxidized/web/public/weblibs/bootstrap.css +6 -1
- data/lib/oxidized/web/public/weblibs/bootstrap.css.map +1 -1
- data/lib/oxidized/web/public/weblibs/bootstrap.js +2 -5
- data/lib/oxidized/web/public/weblibs/bootstrap.js.map +1 -1
- data/lib/oxidized/web/public/weblibs/buttons.bootstrap5.css +56 -39
- data/lib/oxidized/web/public/weblibs/buttons.bootstrap5.js +14 -6
- data/lib/oxidized/web/public/weblibs/dataTables.bootstrap5.css +7 -8
- data/lib/oxidized/web/public/weblibs/dataTables.buttons.js +15 -8
- data/lib/oxidized/web/public/weblibs/dataTables.js +331 -277
- data/lib/oxidized/web/version.rb +1 -1
- data/lib/oxidized/web/views/head.haml +2 -0
- data/lib/oxidized/web/views/layout.haml +2 -0
- data/lib/oxidized/web/views/node.haml +3 -3
- data/lib/oxidized/web/views/nodes.haml +3 -3
- data/lib/oxidized/web/views/versions.haml +2 -2
- data/lib/oxidized/web/webapp.rb +6 -1
- data/oxidized-web.gemspec +12 -10
- data/package-lock.json +20 -20
- data/spec/web/nodes_spec.rb +7 -0
- metadata +41 -39
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* Bootstrap v5.3.
|
|
3
|
+
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
4
4
|
* Copyright 2011-2025 The Bootstrap Authors
|
|
5
5
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
|
6
6
|
*/
|
|
@@ -547,6 +547,10 @@ legend + * {
|
|
|
547
547
|
-webkit-appearance: textfield;
|
|
548
548
|
outline-offset: -2px;
|
|
549
549
|
}
|
|
550
|
+
[type=search]::-webkit-search-cancel-button {
|
|
551
|
+
cursor: pointer;
|
|
552
|
+
filter: grayscale(1);
|
|
553
|
+
}
|
|
550
554
|
|
|
551
555
|
/* rtl:raw:
|
|
552
556
|
[type="tel"],
|
|
@@ -6208,6 +6212,7 @@ textarea.form-control-lg {
|
|
|
6208
6212
|
.spinner-grow,
|
|
6209
6213
|
.spinner-border {
|
|
6210
6214
|
display: inline-block;
|
|
6215
|
+
flex-shrink: 0;
|
|
6211
6216
|
width: var(--bs-spinner-width);
|
|
6212
6217
|
height: var(--bs-spinner-height);
|
|
6213
6218
|
vertical-align: var(--bs-spinner-vertical-align);
|