foreman_theme_satellite 14.3.2 → 15.0.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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/foreman_theme_satellite/patternfly_and_overrides.scss +1 -1
- data/app/assets/stylesheets/foreman_theme_satellite/theme.scss +2 -2
- data/app/assets/stylesheets/foreman_theme_satellite/topbar.scss +3 -3
- data/app/overrides/layouts/base/eol_banner.html.erb.deface +1 -1
- data/lib/foreman_theme_satellite/documentation.rb +1 -1
- data/lib/foreman_theme_satellite/engine.rb +1 -1
- data/lib/foreman_theme_satellite/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9f15d950faeb1b119eba3545649743830c49c8e870cfad92ff1cd7cc35293e6
|
4
|
+
data.tar.gz: c5e6221b5abcc09dae18010aee6c8e8b1c494f8582640afc77c6829b3da78a89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aeaf8356f66d417f340fe9341a998c7fa484ca35867e50b17fa434549291e81c2644c66146fe897f6fe8cc197ff8efaf3cfc385401baf3fafa78aeac5edf18e8
|
7
|
+
data.tar.gz: de85171cb44107fa70b0cafba61a776d07703f80d8345b91ae2a157a85135f5eee593299a67ce84a6780dd92b7f76f9e04ad0263e050a500ca364aa1ba134e37
|
@@ -24,8 +24,8 @@
|
|
24
24
|
|
25
25
|
&.eol-banner {
|
26
26
|
--banner-height: calc(
|
27
|
-
2 * var(--pf-global--spacer--xs) +
|
28
|
-
2 * (var(--pf-global--LineHeight--md) * var(--pf-global--FontSize--sm))
|
27
|
+
2 * var(--pf-v5-global--spacer--xs) +
|
28
|
+
2 * (var(--pf-v5-global--LineHeight--md) * var(--pf-v5-global--FontSize--sm))
|
29
29
|
); // banner height is line height and a small padding
|
30
30
|
top: calc(
|
31
31
|
var(--header-height) + var(--banner-height)
|
@@ -1,13 +1,13 @@
|
|
1
1
|
.satellite-theme {
|
2
|
-
.pf-c-page .pf-c-masthead {
|
3
|
-
.pf-c-masthead__brand {
|
2
|
+
.pf-v5-c-page .pf-v5-c-masthead {
|
3
|
+
.pf-v5-c-masthead__brand {
|
4
4
|
height: inherit;
|
5
5
|
}
|
6
6
|
|
7
7
|
.navbar-brand-txt {
|
8
8
|
display: none !important;
|
9
9
|
}
|
10
|
-
background: var(--pf-c-page__header--BackgroundColor);
|
10
|
+
background: var(--pf-v5-c-page__header--BackgroundColor);
|
11
11
|
background-size: cover;
|
12
12
|
}
|
13
13
|
}
|
@@ -12,7 +12,7 @@ elsif data[:end_of_life] < 6.months.after
|
|
12
12
|
end %>
|
13
13
|
|
14
14
|
<% if text %>
|
15
|
-
<div class="pf-c-banner pf-m-<%= icon %>" id="satellite-eol-banner">
|
15
|
+
<div class="pf-v5-c-banner pf-m-<%= icon %>" id="satellite-eol-banner">
|
16
16
|
<div>
|
17
17
|
<% if icon == 'warning' %>
|
18
18
|
<%= text % { month: _(data[:end_of_life].strftime('%B')), year: data[:end_of_life].strftime('%Y'), version: data[:short_version] } %>
|
@@ -51,7 +51,7 @@ module ForemanThemeSatellite
|
|
51
51
|
'CreatingSCAPcontent' => "#{ForemanThemeSatellite.documentation_root}/managing_security_compliance/configuring_scap_contents_security-compliance",
|
52
52
|
|
53
53
|
# Planning
|
54
|
-
'SmartProxies' => "#{ForemanThemeSatellite.documentation_root}/overview_concepts_and_deployment_considerations/major-satellite-components_planning#
|
54
|
+
'SmartProxies' => "#{ForemanThemeSatellite.documentation_root}/overview_concepts_and_deployment_considerations/major-satellite-components_planning#capsule-Overview_planning",
|
55
55
|
'Auditing' => "#{ForemanThemeSatellite.documentation_root}/overview_concepts_and_deployment_considerations/glossary-of-terms-used-in-satellite_planning#Audits",
|
56
56
|
|
57
57
|
# Install
|
@@ -11,7 +11,7 @@ module ForemanThemeSatellite
|
|
11
11
|
initializer 'foreman_theme_satellite.register_plugin', :before=> :finisher_hook do |app|
|
12
12
|
app.reloader.to_prepare do
|
13
13
|
Foreman::Plugin.register :foreman_theme_satellite do
|
14
|
-
requires_foreman '>= 3.
|
14
|
+
requires_foreman '>= 3.15.0'
|
15
15
|
register_gettext
|
16
16
|
|
17
17
|
settings do
|
data/package.json
CHANGED