]> source.dussan.org Git - redmine.git/commitdiff
Update Code Highlighting Help font and font size to match the new default theme ...
authorGo MAEDA <maeda@farend.jp>
Fri, 11 Oct 2024 07:50:09 +0000 (07:50 +0000)
committerGo MAEDA <maeda@farend.jp>
Fri, 11 Oct 2024 07:50:09 +0000 (07:50 +0000)
git-svn-id: https://svn.redmine.org/redmine/trunk@23115 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/assets/stylesheets/wiki_syntax_detailed.css
app/views/help/wiki_syntax/code_highlighting_languages.html.erb

index 11e3cd624d1480354f4f52547fba08c3b687c946..ff234ae25b796f944ce880b2cc6a2651daaab6d5 100644 (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 }
index 8e15e1051566d7c8b6ad210b2f3926388aceeb75..befa388a4ef3995e83ebc730af41d36a0baf1c97 100644 (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? %>