Always show version badge, not just for edge [ci skip]

Now that we have a CSS based version banner since 1c5d9a89a724c898b71efb91437db3253a08883c
we can also show the banner for non edge versions.
This commit is contained in:
Petrik 2020-10-17 13:00:09 +02:00
parent d7c7a570b9
commit a24fc7ac1d
3 changed files with 7 additions and 7 deletions

@ -768,10 +768,10 @@ code.highlight.console span.w, code.highlight.irb span.w {
display: table-cell;
}
/* Edge Badge
/* Version Badge
--------------------------------------- */
#edge-badge {
#version-badge {
position: fixed;
right: 0;
top: 0;

@ -764,13 +764,13 @@ div.important p, div.caution p, div.warning p, div.note p, div.info p {
margin-bottom: 1em;
}
/* Edge Badge
/* Version Badge
--------------------------------------- */
#edge-badge {
#version-badge {
position: fixed;
right: 0px;
top: 0px;
z-index: 100;
border: none;
}
}

@ -20,9 +20,9 @@
<meta property="og:type" content="website" />
</head>
<body class="guide">
<% if @edge %>
<% if badge_version = @edge ? "edge" : @version %>
<div>
<div id="edge-badge">edge</div>
<div id="version-badge"><%= badge_version %></div>
</div>
<% end %>
<div id="topNav">