diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/README b/Artworks/Webenv/Mantis/1.1.8-5.el5/README index a5f22b4..a72aef9 100644 --- a/Artworks/Webenv/Mantis/1.1.8-5.el5/README +++ b/Artworks/Webenv/Mantis/1.1.8-5.el5/README @@ -1,48 +1,46 @@ -This file describes The CentOS Project customized version of mantisBT -(v1.1.8-5.el5) default visual style. - -Theme Files ------------ -. -|-- centos-bottom.html --> The page footer. -|-- centos-header.html --> The page header. -|-- css -| `-- default-centos.css --> The CentOS Project visual style customization. -`-- images - |-- centos-bugs-logo.png --> The logo used by The CentOS Bugs website. - |-- centos-favicon.png --> The favicon used by The CentOS Bugs website. - |-- h2-background.png --> The background image used on titles - `-- header-background.png --> the background image used on header and footer. +Customization +============= +The mantis' customization provided here is part of the monolithic +visual style The CentOS Project is attached to. Once you install the +mantis' customization provided here, the visual transition between the +mantis website and other CentOS web sites already customized will be +nice and easy to recognize because of the common visual patterns +(e.g., background, header, logo, favicon and footer). How To Install -------------- -1. yum install mantis +1. yum install mantis-1.1.8-5.el5 - NOTE: This require you to have epel repository installed in your - CentOS distribution. To know how to install the epel repository + NOTE: This require you to have EPEL repository installed in your + CentOS distribution. To know how to install the EPEL repository read http://wiki.centos.org/AdditionalResources/Repositories 2. Configure mantisBT application and be sure it works as you expect. - -2. svn export https://projects.centos.org/svn/artwork/trunk/Identity/Webenv/Themes/Default/Mantis/1.1.8-5.el5 ~/Desktop/ - -3. Copy theme files into your system's mantisBT tree, as root user. -The source-target relation between files is shown in the following -table: - ----------------------------------------------------+----------------------------------------------- -SOURCE | TARGET ----------------------------------------------------+----------------------------------------------- -~/Desktop/1.1.8-5.el5/centos-bottom.html | /usr/share/mantis/centos-bottom.html -~/Desktop/1.1.8-5.el5/centos-header.html | /usr/share/mantis/centos-header.html -~/Desktop/1.1.8-5.el5/css/default-centos.css | /usr/share/mantis/css/default-centos.css -~/Desktop/1.1.8-5.el5/images/centos-bugs-logo.png | /usr/share/mantis/images/centos-bugs-logo.png -~/Desktop/1.1.8-5.el5/images/centos-favicon.png | /usr/share/mantis/images/centos-favicon.png -~/Desktop/1.1.8-5.el5/images/h2-background.png | /usr/share/mantis/images/h2-background.png -~/Desktop/1.1.8-5.el5/images/header-background.png | /usr/share/mantis/images/header-background.png ----------------------------------------------------+----------------------------------------------- +In this step you create the database you'll use to store data, connect +the mantis application with it and install the tables using the web +interface. + +3. Copy the theme files provided in this customization into your +system's mantisBT tree, as root user. The source-target relation +between files is shown in the following table: + +------------------+----------------------------------------------- +SOURCE | TARGET +------------------+----------------------------------------------- +bottom.html | /usr/share/mantis/themes/centos/bottom.html +top.html | /usr/share/mantis/themes/centos/top.html +stylesheet.css | /usr/share/mantis/themes/centos/stylesheet.css +images/logo.png | /usr/share/mantis/themes/centos/images/logo.png +images/favicon.ico| /usr/share/mantis/themes/centos/images/favicon.png +images/h2.png | /usr/share/mantis/themes/centos/images/h2.png +images/header.png | /usr/share/mantis/themes/centosimages/header.png +------------------+----------------------------------------------- + +This theme also provides a customized version of mantis_offline.php +file that you can copy into /etc/mantis/ directory when you want to +get mantis' site off-line for maintenance. 4. Check file permissions. Be sure these files are readable by apache web server. For example, if both user and group for these files are @@ -54,10 +52,10 @@ information: # --- html variables -------------- $g_window_title = "The CentOS Bugs"; - $g_top_include_page = "centos-header.html"; - $g_bottom_include_page = "centos-bottom.html"; - $g_css_include_file = "css/default-centos.css"; - $g_favicon_image = "images/centos-favicon.png"; + $g_top_include_page = "themes/centos/top.html"; + $g_bottom_include_page = "themes/centos/bottom.html"; + $g_css_include_file = "themes/centos/stylesheet.css"; + $g_favicon_image = "themes/centos/images/favicon.ico"; 6. Point your browser to mantisBT install and reload it to see the changes. @@ -68,8 +66,13 @@ An important characteristic of this theme is that all modifications take place in the configuration file and CSS files. No PHP files inside the mantis package needs to be modified (except the configuration file, of course.). This way you can update the mantis -package installed in your system without loosing the visual style -you already set for it. +package without loosing the visual style you already set for it. + +The only problem is the $g_favicon_image variable, it doesn't work. +So, if you want to have a favicon different to Mantis's default, you +need to overwrite the images/favicon.ico file with the one you want to +use. This is something you need to do the next time you update the +matnis package (unless the $g_favicon_image variable gets alive). Feedback -------- @@ -80,6 +83,6 @@ https://projects.centos.org/trac/artwork/newticket page. Authors ------- -The following people have contributed their efforts to this theme: +The following people have contributed efforts to this theme: * Alain Reguera Delgado , 2013 diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/bottom.html b/Artworks/Webenv/Mantis/1.1.8-5.el5/bottom.html new file mode 100644 index 0000000..c42e998 --- /dev/null +++ b/Artworks/Webenv/Mantis/1.1.8-5.el5/bottom.html @@ -0,0 +1,9 @@ + diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/centos-bottom.html b/Artworks/Webenv/Mantis/1.1.8-5.el5/centos-bottom.html deleted file mode 100644 index e2aa10e..0000000 --- a/Artworks/Webenv/Mantis/1.1.8-5.el5/centos-bottom.html +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/centos-header.html b/Artworks/Webenv/Mantis/1.1.8-5.el5/centos-header.html deleted file mode 100644 index 2606c7c..0000000 --- a/Artworks/Webenv/Mantis/1.1.8-5.el5/centos-header.html +++ /dev/null @@ -1,6 +0,0 @@ - diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/css/default-centos.css b/Artworks/Webenv/Mantis/1.1.8-5.el5/css/default-centos.css deleted file mode 100644 index c1e5ca8..0000000 --- a/Artworks/Webenv/Mantis/1.1.8-5.el5/css/default-centos.css +++ /dev/null @@ -1,361 +0,0 @@ -/* - * default-centos.css -- The mantisBT (v1.1.8) default visual style - * customized by The CentOS Project. - * - * Copyright (C) 2013 The CentOS Project - * - * This CSS is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This CSS is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - * - */ - -/* Reset browsers default margins and paddings */ -* { - margin: 0; - padding: 0; - } - -/* Define html */ - -html { - background-image:url(../images/html-background.png); - background-color: #FFF; - font-family: "DejaVu Sans", "Liberation Sans", sans-serif; - font-size: 0.85em; - line-height: 1.25em; - /* margin: 0; /* <- full screen */ - margin: 0 30px 0 30px; /* <- with 30px of left and right margin */ - } - -body { - background-color: #ffffff; - color: #000000; - padding: 0 10px; - min-width: 728px; - } - -/* Links */ - -a:link { text-decoration: none; color: #1865A6; cursor: pointer; } -a:link:hover { text-decoration: underline; color: green; } -a:link:active { text-decoration: underline; color: green; } -a:visited { text-decoration: none; color: #1865A6; } -a:visited:hover { text-decoration: underline; color: green; } - -#header { - background-color: #1865A6; - background-image: url("../images/header-background.png"); - margin-bottom: 5px; - } - -#logo { - float:left; - /* For text only logo */ - font-size: 1.4em; - font-weight: bold; - } - -#logo img { - margin-left: 10px; - vertical-align: middle; - border: 0; - } - -#logo a { - color: white; - text-decoration: none; - border: 0; - } - -.pageline { - clear: both; - width: 100%; - /* sync these values, line-height is needed for IE */ - height: 5px; - line-height: 5px; - border: none; - } - -.pageline.blue { - background: #5FA1D8; - } - -/* Information about Login */ - -form[name=login_form] table, -form[name=signup_form] table, -form[name=lost_password_form] table { - margin-top: 2em; - } - -/* Form Elements */ - -input[type=text], -input[type=password], -textarea { - padding: 2px; - } - -input, -select { - vertical-align: middle; - } - -form { - display: inline; - margin: 0; - } - -/* Paragraphs (inside tables, only) */ - -table tr td p { - margin: 1em 0 1.5em 0; - line-height: 1.5em; - } - -/* Lists (outside tables, only) */ -ul { margin: 1.5em; } - -/* Lists (inside tables, only) */ - -table tr td ul, -table tr td ol, -table tr td dl { - margin: 1.5em 0 1.5em 4.5em; - } - -table tr td ul { - list-style: disc; - } - -table tr td ol { - list-style-image: none !important; - } - -table tr td ul li, -table tr td ol li { - line-height: 1.5em; - } - -table tr td ul ul, -table tr td ul ol, -table tr td ol ul, -table tr td ol ol { - margin-top: 0.3em; - margin-bottom: 0.3em; - margin-left: 2.5em; - } - -table tr td ul li p, -table tr td ol li p { - margin-bottom: 0.3em; - } - -table tr td dl dd { - margin: 0.5em 0 1em 2.5em; - } - -table tr td dl ol, -table tr td dl ul { - margin-left: 3.5em; - } - -/* Pre-formatted Texts (inside tables, only) */ - -table tr td pre { - background: none repeat scroll 0 0 #FFFFFF; - border-color: #99B3C4; - -moz-border-radius: 5px 5px 5px 5px; - border-style: solid; - border-width: 1px 1px 1px 5px; - color: #333333; - line-height: 1.5em; - margin: 1em 0 1.5em; - overflow: auto; - padding: 10px; -} - -/* Tables */ - -table { clear: both; } -table.border_black { border: 1px solid #000; } -table.hide { font-size: x-small; width: 100%; } -table.hide table.width100 { font-size: 1.25em; width: 100%; } -table.width100 { width: 100%; border: solid 1px #CCC; margin: 5px 0; } -table.width75 { width: 75%; border: solid 1px #CCC; margin: 5px 0; } -table.width60 { width: 60%; border: solid 1px #CCC; margin: 5px 0; } -table.width50 { width: 50%; border: solid 1px #CCC; margin: 5px 0; } - -table div { margin: 5px 0 5px 0; } - -td { padding: 0.5em; text-align: left; line-height: 1.5em; }; -td img.icon_sort { float:right; padding-right: 3px; padding-left: 3px; } - -td.center { text-align: center; } -td.left { text-align: left; } -td.right { text-align: right; } -td.category { background-color: #EAE1EE; color: #000000; font-weight: bold; vertical-align : top; } - -td.col-1 { background-color: #EAF3F9; color: #000000; } -td.col-2 { background-color: #EAF3F9; color: #000000; } -td.form-title { font-weight: bold; text-align: left; background-color: #FFFFFF; background-image: url(../images/h2-background.png); } -td.nopad { padding: 0px; } -td.spacer { display: none; } -td.small-caption { white-space: nowrap; } -td.print { text-align: left; padding: 2px; } -td.print-category { color: #000000; font-weight: bold; text-align: right; padding: 2px; } -td.print-bottom { border-bottom: 1px solid #000000; } -td.print-spacer { background-color: #ffffff; color: #000000; font-size: 1pt; line-height: 0.1; padding: 0px;} - -tr {} -tr.title { background-color: #FFF; background-image: url("../images/h2-background.png");} -tr.row-1 { background-color: #EAF3F9; color: #000000; } -tr.row-2 { background-color: #D8E9F4; color: #000000; } -tr.row-category { background-color: #EAE1EE; color: #000000; font-weight: bold;} -tr.row-category td { text-align:center; } -tr.row-category2 { background-color: #EAE1EE; color: #000000; } -tr.row-category-history { background-color: #EAE1EE; color: #000000; font-weight: bold;} -tr.row-category-history td { text-align: left; } -tr.vcenter { vertical-align: middle; } -tr.print { vertical-align: top; } -tr.print-category { color: #000000; font-weight: bold; } -tr.spacer { display: none; } - -#buglist tr { text-align: center; } -#buglist tr:last-child { font-size: x-small; } - -tr.bugnote { vertical-align: top; } -td.bugnote-public { background-color: #EAE1EE; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; } -td.bugnote-private { background-color: #EAF3F9; color: #000000; font-weight: bold; width: 25%; line-height: 1.4; } -td.bugnote-note-public { background-color: #EAF3F9; color: #000000; width: 75%; } -td.bugnote-note-private { background-color: #EAF3F9; color: #000000; width: 75%; } - -td.login-info-left { width: 40%; padding: 0px; text-align: left; padding-left: 10px; } -td.login-info-middle { width: 20%; padding: 0px; text-align: center; } -td.login-info-right { width: 40%; padding: 0px; text-align: right; white-space: nowrap; } - -td.menu { background-color: #EAF3F9; color: #000000; padding: 3px; padding-left: 10px; font-size: small; } -td.menu a { white-space: nowrap; } - -td.news-heading-public { background-image: url(../images/h2-background.png); color: #000000; text-align: left; border-bottom: 1px solid #ccc; padding: 5px; } -td.news-heading-private { background-image: url(../images/h2-background.png); color: #000000; text-align: left; border-bottom: 1px solid #ccc; } - -td.news-body { background-color: #ffffff; color: #000000; padding: 1.3em; line-height: 1.5em; } - -/* Quick summary. Element displayed near titles - * with the amount of opened and assigned issues. */ - -/* Miscellaneous */ - -.center { text-align: center; } -.left { text-align: left; } -.right { text-align: right; } -.small { } -.small-normal { } -.small-subprojects { } -.bold { font-weight: bold; } -.bold-small { font-weight: bold; font-size: small; } -.italic { font-style: italic; } -.italic-small { font-style: italic; font-weight: normal; } -.underline { text-decoration: underline; } -.underline-small { text-decoration: underline; font-size: small; } -.strike { text-decoration: line-through; } -.strike-small { text-decoration: line-through; font-size: small; } -.quick-summary-left { float: left; margin: 0 10px 20px; font-size: x-small; } -.quick-summary-right { float: right; margin: 0 10px 20px; font-size: x-small; } -.border-center { text-align: center; } - -span.print { } -span.required { color: #bb0000; } -span.small { font-weight: normal; } -span.pagetitle { display: block; font-size: 1.5em; line-height: 1.5em; font-weight: bold; } -span.bracket-link { white-space: nowrap; font-size: small; } - -/* Set nested tables bottom margin. */ -table.width100 table.width100 { margin-bottom: 10px; } - -/* Hide br and hr tags. They consume too much space. */ -br, hr { display: none;} -/* Show br and hr tags only when it is absolutely needed. */ -div.center > br, -div[align="center"] > br, -div[align="center"] > p > br, -td > br, -tt > br, -hr.pageline { display: block;} - -/* Footer */ - -body > table:last-child { - /* ------------------------------------------------------*/ - /* Here you can hide the table that mantis uses for its */ - /* copyright and supported link information. */ - /* ------------------------------------------------------*/ - /* display: none; */ - font-size: x-small; - line-height: 1.5em; - color: #333; - } - -body > table:last-child div { - padding: 0; - margin: 0; - } - -body > table:last-child td { - padding: 10px 0 10px 0; - } - -/* Issue History table customziation */ - -div#history_open td { - /* Consume the smallest amount of horizontal space in the first - * columns which are not wrapped. */ - width: 1%; - } - -div#history_open td:last-child { - /* Consume the largest amount of horizontal space in the last - * column which is wrapped. */ - width: 97%; - white-space: normal; - } - -/* Images beside links customization */ -a img { vertical-align: middle; } - -/* Footer */ - -#footer { - clear: both; - background: #204C8D url("../images/header-background.png") 0 0 repeat; - margin-top: 1em; - } - -#credits { - text-align: left; - font-size: x-small; - color: #EEE; - padding: 1em; - } - -#credits a { - color: #EEE; - } - -#credits p { padding: 0; margin: 0; } - -#credits a:hover { - text-decoration: underline; - } diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/centos-bugs-logo.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/centos-bugs-logo.png deleted file mode 100644 index 33b54f4..0000000 Binary files a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/centos-bugs-logo.png and /dev/null differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/centos-favicon.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/centos-favicon.png deleted file mode 100755 index 46a727e..0000000 Binary files a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/centos-favicon.png and /dev/null differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/favicon.ico b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/favicon.ico new file mode 100644 index 0000000..babbccd Binary files /dev/null and b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/favicon.ico differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/h2-background.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/h2-background.png deleted file mode 100755 index 7966dc0..0000000 Binary files a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/h2-background.png and /dev/null differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/h2.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/h2.png new file mode 100644 index 0000000..7966dc0 Binary files /dev/null and b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/h2.png differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/header-background.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/header-background.png deleted file mode 100755 index db54c7e..0000000 Binary files a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/header-background.png and /dev/null differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/header.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/header.png new file mode 100644 index 0000000..db54c7e Binary files /dev/null and b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/header.png differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/html.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/html.png new file mode 100644 index 0000000..ccfa402 Binary files /dev/null and b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/html.png differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/images/logo.png b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/logo.png new file mode 100644 index 0000000..e98b1a2 Binary files /dev/null and b/Artworks/Webenv/Mantis/1.1.8-5.el5/images/logo.png differ diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/mantis_offline.php b/Artworks/Webenv/Mantis/1.1.8-5.el5/mantis_offline.php new file mode 100644 index 0000000..c732e98 --- /dev/null +++ b/Artworks/Webenv/Mantis/1.1.8-5.el5/mantis_offline.php @@ -0,0 +1,50 @@ + + + + + Mantis + + + + + + + + + + +
+ +

Off-line for maintenance!

+ +

+ The CentOS Bugs' tracker is currently off-line for maintenance. + Please check back later to see if it is online again or + contact your administrator for details. +

+ +

+ Use your browser's refresh or reload function to try again + in a few minutes. +

+ +
+ + + + + diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/stylesheet.css b/Artworks/Webenv/Mantis/1.1.8-5.el5/stylesheet.css new file mode 100644 index 0000000..8a6deac --- /dev/null +++ b/Artworks/Webenv/Mantis/1.1.8-5.el5/stylesheet.css @@ -0,0 +1,676 @@ +/* + * stylesheet.css -- This file customizes presentation for mantisBT + * (v1.1.8-5), using The CentOS Project corporate visual style. + * + * Copyright (C) 2013 The CentOS Project + * + * This CSS is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This CSS is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +/* Reset browsers default margins and paddings +----------------------------------------------*/ +* { + margin: 0; + padding: 0; + } + +/* Preamble +----------------------------------------------*/ + +html { + background-image:url(images/html.png); + background-color: #FFF; + font-family: "DejaVu Sans", "Liberation Sans", sans-serif; + font-size: 0.85em; + line-height: 1.25em; + margin: 0 30px 0 30px; + } + +body { + background-color: #FFF; + color: #000; + padding: 0 10px; + min-width: 728px; + } + +/* Links +----------------------------------------------*/ + +a:link { text-decoration: none; color: #1865A6; cursor: pointer; } +a:link:hover { text-decoration: underline; color: green; } +a:link:active { text-decoration: underline; color: green; } +a:visited { text-decoration: none; color: #1865A6; } +a:visited:hover { text-decoration: underline; color: green; } + +/* Main +----------------------------------------------*/ + +#header { + background-color: #1865A6; + background-image: url("images/header.png"); + margin-bottom: 5px; + } + +#logo { + float:left; + /* For text only logo */ + font-size: 1.4em; + font-weight: bold; + } + +#logo img { + margin-left: 10px; + vertical-align: middle; + border: 0; + } + +#logo a { + color: white; + text-decoration: none; + border: 0; + } + +.pageline { + clear: both; + width: 100%; + /* sync these values, line-height is needed for IE */ + height: 5px; + line-height: 5px; + border: none; + } + +.pageline.blue { + background: #5FA1D8; + } + +/* Information about Login +----------------------------------------------*/ + +form[name=login_form] table, +form[name=signup_form] table, +form[name=lost_password_form] table { + margin-top: 2em; + } + +/* Form Elements +----------------------------------------------*/ + +input[type=text], +input[type=password], +textarea { + padding: 2px; + } + +input, +select { + vertical-align: middle; + } + +form { + display: inline; + margin: 0; + } + +/* Paragraphs (inside tables, only) +----------------------------------------------*/ + +table tr td p { + margin: 1em 0 1.5em 0; + line-height: 1.5em; + } + +/* Lists outside tables, only +----------------------------------------------*/ +ul { margin: 1.5em; } + +/* Lists inside tables, only +----------------------------------------------*/ + +table tr td ul, +table tr td ol, +table tr td dl { + margin: 1.5em 0 1.5em 4.5em; + } + +table tr td ul { + list-style: disc; + } + +table tr td ol { + list-style-image: none !important; + } + +table tr td ul li, +table tr td ol li { + line-height: 1.5em; + } + +table tr td ul ul, +table tr td ul ol, +table tr td ol ul, +table tr td ol ol { + margin-top: 0.3em; + margin-bottom: 0.3em; + margin-left: 2.5em; + } + +table tr td ul li p, +table tr td ol li p { + margin-bottom: 0.3em; + } + +table tr td dl dd { + margin: 0.5em 0 1em 2.5em; + } + +table tr td dl ol, +table tr td dl ul { + margin-left: 3.5em; + } + +/* Pre-formatted Texts inside tables, only +----------------------------------------------*/ + +table tr td pre { + background: none repeat scroll 0 0 #FFFFFF; + border-color: #99B3C4; + -moz-border-radius: 5px 5px 5px 5px; + border-style: solid; + border-width: 1px 1px 1px 5px; + color: #333333; + line-height: 1.5em; + margin: 1em 0 1.5em; + overflow: auto; + padding: 10px; +} + +/* Tables +----------------------------------------------*/ + +table { + clear: both; + } + +table.border_black { + border: 1px solid #000; + } + +table.hide { + font-size: x-small; + width: 100%; + } + +table.hide table.width100 { + font-size: 1.25em; + width: 100%; + } + +table.width100 { + width: 100%; + border: solid 1px #CCC; + margin: 5px 0; + } + +table.width75 { + width: 75%; + border: solid 1px #CCC; + margin: 5px 0; + } + +table.width60 { + width: 60%; + border: solid 1px #CCC; + margin: 5px 0; + } + +table.width50 { + width: 50%; + border: solid 1px #CCC; + margin: 5px 0; + } + +table div { + margin: 5px 0 5px 0; + } + +td { + padding: 0.5em; + text-align: left; + line-height: 1.5em; + } + +td img.icon_sort { + float:right; + padding-right: 3px; + padding-left: 3px; + } + +td.center { + text-align: center; + } + +td.left { + text-align: left; + } + +td.right { + text-align: right; + } + +td.category { + background-color: #EAE1EE; + color: #000; + font-weight: bold; + vertical-align: top; + } + +td.col-1 { + background-color: #EAF3F9; + color: #000; + } + +td.col-2 { + background-color: #EAF3F9; + color: #000; + } + +td.form-title { + font-weight: bold; + text-align: left; + background-color: #FFFFFF; + background-image: url(images/h2.png); + } + +td.nopad { + padding: 0px; + } + +td.spacer { + display: none; + } + +td.small-caption { + white-space: nowrap; + } + +td.print { + text-align: left; padding: 2px; + } + +td.print-category { + color: #000; + font-weight: bold; + text-align: right; + padding: 2px; + } + +td.print-bottom { + border-bottom: 1px solid #000; + } + +td.print-spacer { + background-color: #FFF; + color: #000; + font-size: 1pt; + line-height: 0.1; + padding: 0px; + } + +tr {} + +tr.title { + background-color: #FFF; + background-image: url("images/h2.png"); + } + +tr.row-1 { + background-color: #EAF3F9; + color: #000; + } + +tr.row-2 { + background-color: #D8E9F4; + color: #000; + } + +tr.row-category { + background-color: #EAE1EE; + color: #000; + font-weight: bold; + } + +tr.row-category td { + text-align:center; + } + +tr.row-category2 { + background-color: #EAE1EE; + color: #000; + } +tr.row-category-history { + background-color: #EAE1EE; + color: #000; + font-weight: bold; + } + +tr.row-category-history td { + text-align: left; + } + +tr.vcenter { + vertical-align: middle; + } + +tr.print { + vertical-align: top; + } + +tr.print-category { + color: #000; + font-weight: bold; + } + +tr.spacer { + display: none; + } + +#buglist tr { + text-align: center; + } + +#buglist tr:last-child { + font-size: x-small; + } + +tr.bugnote { + vertical-align: top; + } + +td.bugnote-public { + background-color: #EAE1EE; + color: #000; + font-weight: bold; + width: 25%; + line-height: 1.4; + } + +td.bugnote-private { + background-color: #EAF3F9; + color: #000; + font-weight: bold; + width: 25%; + line-height: 1.4; + } + +td.bugnote-note-public { + background-color: #EAF3F9; + color: #000; width: 75%; + } + +td.bugnote-note-private { + background-color: #EAF3F9; + color: #000; + width: 75%; + } + +td.login-info-left { + width: 40%; + padding: 0px; + text-align: left; + padding-left: 10px; + } + +td.login-info-middle { + width: 20%; + padding: 0px; + text-align: center; + } + +td.login-info-right { + width: 40%; + padding: 0px; + text-align: right; + white-space: nowrap; + } + +td.menu { + background-color: #EAF3F9; + color: #000; + padding: 3px; + padding-left: 10px; + font-size: small; + } + +td.menu a { + white-space: nowrap; + } + +td.news-heading-public { + background-image: url(images/h2.png); + color: #000; + text-align: left; + border-bottom: 1px solid #ccc; + padding: 5px; } + +td.news-heading-private { + background-image: url(images/h2.png); + color: #000; + text-align: left; + border-bottom: 1px solid #ccc; + } + +td.news-body { + background-color: #FFF; + color: #000; + padding: 1.3em; + line-height: 1.5em; + } + +body > table:last-child { + /* ------------------------------------------------------*/ + /* Here you can hide the table that mantis uses for its */ + /* copyright and supported link information. */ + /* display: none; */ + /* ------------------------------------------------------*/ + font-size: x-small; + line-height: 1.5em; + color: #333; + } + +body > table:last-child div { + padding: 0; + margin: 0; + } + +body > table:last-child td { + padding: 10px 0 10px 0; + } + +/* Miscellaneous +----------------------------------------------*/ + +.center { + text-align: center; + } + +.left { + text-align: left; + } + +.right { + text-align: right; + } + +.small { + } + +.small-normal { + } + +.small-subprojects { + } + +.bold { + font-weight: bold; + } + +.bold-small { + font-weight: bold; + font-size: small; + } + +.italic { + font-style: italic; + } + +.italic-small { + font-style: italic; + font-weight: normal; + } + +.underline { + text-decoration: underline; + } + +.underline-small { + text-decoration: underline; + font-size: small; + } + +.strike { + text-decoration: line-through; + } + +.strike-small { + text-decoration: line-through; + font-size: small; + } + +.quick-summary-left { + float: left; + margin: 0 10px 20px; + font-size: x-small; + } + +.quick-summary-right { + float: right; + margin: 0 10px 20px; + font-size: x-small; + } + +.border-center { + text-align: center; + } + +span.print { + } + +span.required { + color: #bb0000; + } + +span.small { + font-weight: normal; + } + +span.pagetitle { + display: block; + font-size: 1.5em; + line-height: 1.5em; + font-weight: bold; + } + +span.bracket-link { + white-space: nowrap; + font-size: small; + } + +/* Set nested tables bottom margin. +----------------------------------------------*/ + +table.width100 table.width100 { margin-bottom: 10px; } + +/* Hide br and hr tags. They consume too much space. +----------------------------------------------------*/ + +br, hr { + display: none; + } + +/* Show br and hr tags only when it is absolutely needed. +--------------------------------------------------------*/ + +div.center > br, +div[align="center"] > br, +div[align="center"] > p > br, +td > br, +tt > br, +hr.pageline { display: block;} + +/* Issue History table customziation +----------------------------------------------------*/ + +div#history_open td { + /* Consume the smallest amount of horizontal space in the first + * columns which are not wrapped. */ + width: 1%; + } + +div#history_open td:last-child { + /* Consume the largest amount of horizontal space in the last + * column which is wrapped. */ + width: 97%; + white-space: normal; + } + +/* Images beside links customization +----------------------------------------------------*/ + +a img { vertical-align: middle; } + +/* Maintenance page. +----------------------------------------------------*/ + +div#box { padding: 10px 30px; } +div#box h1 { line-height: 1.5em;} +div#box p { line-height: 1.5em; padding-top: 0.5em; padding-bottom: 1em;} + + +/* Footer +----------------------------------------------------*/ + +#footer { + clear: both; + background: #204C8D url("images/header.png") 0 0 repeat; + margin-top: 1em; + } + +#credits { + text-align: left; + font-size: x-small; + color: #EEE; + padding: 1em; + } + +#credits a { + color: #EEE; + } + +#credits p { padding: 0; margin: 0; } + +#credits a:hover { + text-decoration: underline; + } diff --git a/Artworks/Webenv/Mantis/1.1.8-5.el5/top.html b/Artworks/Webenv/Mantis/1.1.8-5.el5/top.html new file mode 100644 index 0000000..8e82885 --- /dev/null +++ b/Artworks/Webenv/Mantis/1.1.8-5.el5/top.html @@ -0,0 +1,6 @@ +