Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNina Vyedin <nina.vyedin@gmail.com>2013-03-05 07:27:34 +0400
committerNina Vyedin <nina.vyedin@gmail.com>2013-03-05 07:58:46 +0400
commit679e21f35ed596d3918ffa3a8402427545425444 (patch)
treec2b16bc5bdb268d70846adf5401237c9c1b485d2
parent7ce580462aa51a8c89b5aaa5695aa433b14a3fa1 (diff)
[webdoc] fix the favicon image path, add the icon, and fix some more webdoc css
-rw-r--r--webdoc/api.master2
-rw-r--r--webdoc/monodoc.ashx5
-rw-r--r--webdoc/views/images/favicon.icobin0 -> 1406 bytes
3 files changed, 4 insertions, 3 deletions
diff --git a/webdoc/api.master b/webdoc/api.master
index bf25924b..be2750c5 100644
--- a/webdoc/api.master
+++ b/webdoc/api.master
@@ -11,7 +11,7 @@
<head runat="server" >
<title><% = WebConfigurationManager.AppSettings["Title"] %></title>
- <link href="favicon.ico" type="image/png" rel="icon">
+ <link href="views/images/favicon.ico" type="image/png" rel="icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<link type="text/css" rel="stylesheet" href="/views/reset.css"/>
<link type="text/css" rel="stylesheet" href="/views/common.css"/>
diff --git a/webdoc/monodoc.ashx b/webdoc/monodoc.ashx
index 8fdf59ce..3cc33460 100644
--- a/webdoc/monodoc.ashx
+++ b/webdoc/monodoc.ashx
@@ -320,13 +320,14 @@ namespace Mono.Website.Handlers
ctx.Response.Write (@"
<html>
<head>
- <link type='text/css' rel='stylesheet' href='monodoc.css' media='all' title='Default style' />
+ <link type='text/css' rel='stylesheet' href='views/monodoc.css' media='all' title='Default style' />
<meta name='TreePath' value='");
ctx.Response.Write (tree_path);
ctx.Response.Write (@"' />
<style type='text/css'>
body, h1, h2, h3, h4, h5, h6, .named-header {
- font-family: 'Myriad Pro', 'myriad pro', Helvetica, Verdana, Arial !important;
+ word-wrap: break-word !important;
+ font-family: 'Myriad Pro', 'myriad pro', Helvetica, Verdana, Arial !important;
}
p, li, span, table, pre, .Content {
font-family: Helvetica, Verdana, Arial !important;
diff --git a/webdoc/views/images/favicon.ico b/webdoc/views/images/favicon.ico
new file mode 100644
index 00000000..d18044a6
--- /dev/null
+++ b/webdoc/views/images/favicon.ico
Binary files differ