1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 19:47:14 +00:00

Update Code Highlighting Help font and font size to match the new default theme (#41321).

git-svn-id: https://svn.redmine.org/redmine/trunk@23115 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2024-10-11 07:50:09 +00:00
parent 30ce29456f
commit 38fe152976
2 changed files with 6 additions and 5 deletions

View File

@ -33,6 +33,7 @@ a.new { color: #b73535; }
table.sample { border-collapse: collapse; border-spacing: 0; margin: 4px; margin-left: 30px;}
table.sample th, table.sample td { border: solid 1px #bbb; padding: 4px; height: 1em; }
table.list td { background-color: #f5f5f5; vertical-align: middle; padding: 0.3em;}
.syntaxhl .c1 { color: #888888 }
.syntaxhl .k { color: #008800; font-weight: bold }

View File

@ -1,22 +1,22 @@
<!doctype html
<!doctype html>
<html lang="en">
<head>
<title>List of languages supported by Redmine code highlighter</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<%= stylesheet_link_tag "wiki_syntax.css" %>
<meta charset="UTF-8">
<%= stylesheet_link_tag "wiki_syntax_detailed.css" %>
</head>
<body>
<h1>List of languages supported by Redmine code highlighter</h1>
<table>
<table class="list">
<tr>
<th>Language</th>
<th>Description</th>
</tr>
<% @available_lexers.each do |lexer| %>
<tr>
<td><%= lexer.tag %></td>
<td><code><%= lexer.tag %></code></td>
<td>
<%= lexer.desc %>
<%= " [aliases: #{lexer.aliases.uniq.join(', ')}]" if lexer.aliases.any? %>