From mboxrd@z Thu Jan 1 00:00:00 1970 From: rmccabe@sourceware.org Date: 15 Sep 2006 21:26:41 -0000 Subject: [Cluster-devel] conga/luci/plone-custom base.css.dtml base.css Message-ID: <20060915212641.29593.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: rmccabe at sourceware.org 2006-09-15 21:26:41 Added files: luci/plone-custom: base.css.dtml Removed files: luci/plone-custom: base.css Log message: make this work when issuing 'make import' Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/base.css.dtml.diff?cvsroot=cluster&r1=NONE&r2=1.1 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/base.css.diff?cvsroot=cluster&r1=1.2&r2=NONE /cvs/cluster/conga/luci/plone-custom/base.css.dtml,v --> standard output revision 1.1 --- conga/luci/plone-custom/base.css.dtml +++ - 2006-09-15 21:26:41.800512000 +0000 @@ -0,0 +1,271 @@ +/* +** Plone style sheet - Base Elements +** +** Style sheet documentation can be found at http://plone.org/documentation +** +** You should preferrably use ploneCustom.css to add your own CSS classes and to +** customize your portal, as these are the base fundaments of Plone, and will +** change and be refined in newer versions. Keeping your changes in +** ploneCustom.css will make it easier to upgrade. +** +** Feel free to use whole or parts of this for your own designs, but give credit +** where credit is due. +** +*/ + +/* (do not remove this :) */ +/* (not this either :) */ + + +body { + font: &dtml-fontBaseSize; ; + background-color: &dtml-backgroundColor;; + color: &dtml-fontColor;; + margin: 0; + padding: 0; +} + +table { + font-size: 100%; +} + +a { + color: &dtml-linkColor;; + background-color: transparent; +} +img { + border: none; + vertical-align: middle; +} +p { + margin: 0 0 0.75em 0; + line-height: 1.5em; +} + +p img { + border: none; + margin: 0; +} + +hr { + border: 0; + height: &dtml-borderWidth;; + color: &dtml-globalBorderColor;; + background-color: &dtml-globalBorderColor;; + margin: 0.5em 0 1em 0; +} + + +h1, h2, h3, h4, h5, h6 { + color: &dtml-fontColor;; + background-color: transparent; + font-family: ; + font-weight: normal; + margin: 0 0 0.25em 0; + border-bottom: &dtml-borderWidth; &dtml-borderStyle; &dtml-globalBorderColor;; +} + +h1 a, +h2 a, +h3 a, +h4 a, +h5 a, +h6 a { + color: &dtml-fontColor; ! important; + text-decoration: none; +} + +h1 { + font-size: 160%; +} + +h2 { + font-size: 150%; +} + +h3 { + font-size: 125%; + border-bottom: none; + font-weight: bold; +} + +h4 { + font-size: 110%; + border-bottom: none; + font-weight: bold; +} + +h5 { + font-size: 100%; + border-bottom: none; + font-weight: bold; +} + +h6 { + font-size: &dtml-fontSmallSize;; + border-bottom: none; + font-weight: bold; +} + +ul { + line-height: 1.5em; + margin: 0.5em 0 0 1.5em; + padding: 0; + list-style-image: url(&dtml-portal_url;/bullet.gif); + list-style-type: square; +} + +ol { + line-height: 1.5em; + margin: 0.5em 0 0 2.5em; + padding: 0; + list-style-image: none; +} + +li { + margin-bottom: 0.5em; +} + +dt { + font-weight: bold; +} + +dd { + line-height: 1.5em; + margin-bottom: 1em; +} + +fieldset { + border: &dtml-borderWidth; &dtml-borderStyle; &dtml-globalBorderColor;; + margin: 1em 0em 1em 0em; + padding: 0em 1em 1em 1em; + line-height: 1.5em; + width: auto; +} +legend { + background: &dtml-backgroundColor;; + padding: 0.5em; + font-size: 90%; +} + +form { + border: none; + margin: 0; +} + +label { + font-weight: bold; +} + +textarea { + font: 100% Monaco, "Courier New", Courier, monospace; + border: &dtml-borderWidth; solid &dtml-globalBorderColor;; + color: &dtml-inputFontColor;; + background: White url(&dtml-portal_url;/input_background.gif) repeat-x; + width: 100%; +} + +input { + font-family: ; + border: &dtml-borderWidth; solid &dtml-globalBorderColor;; + color: &dtml-inputFontColor;; + vertical-align: middle; + background: White url(&dtml-portal_url;/input_background.gif) repeat-x; +} +select { + border: &dtml-borderWidth; solid &dtml-globalBorderColor;; + color: &dtml-inputFontColor;; + background-color: White; + vertical-align: top; +} +abbr, acronym, .explain { + border-bottom: &dtml-borderWidth; dotted &dtml-fontColor;; + color: &dtml-fontColor;; + background-color: transparent; + cursor: help; +} +q { + font-family: Baskerville, Georgia, serif; + font-style: italic; + font-size: 120%; +} +blockquote { + padding-left: 0.5em; + margin-left: 0; + border-left: 4px solid &dtml-globalBorderColor;; + color: &dtml-discreetColor;; +} +code { + font-family: Monaco, "Courier New", Courier, monospace; + font-size: 120%; + color: &dtml-fontColor;; + background-color: &dtml-globalBackgroundColor;; + padding: 0 0.1em; +} +pre { + font-family: Monaco, "Courier New", Courier, monospace; + font-size: 100%; + padding: 1em; + border: &dtml-borderWidth; &dtml-borderStyle; &dtml-globalBorderColor;; + color: &dtml-fontColor;; + background-color: &dtml-globalBackgroundColor;; + overflow: auto; +} + +ins { + color: green; + text-decoration: none; +} + +del { + color: red; + text-decoration: line-through; +} + +/* Helper element to work with CSS floats */ + +.visualClear { + display: block; + clear: both; +} + +/* Hiding helper elements for old browsers */ + +.netscape4 { + display: none; +} + +/* Accessibility and visual enhancement elements */ + +.hiddenStructure { + display: block; + background: transparent; + background-image: none; /* safari bug */ + border: none; + height: 1px; + overflow: hidden; + padding: 0; + margin: -1px 0 0 -1px; + width: 1px; +} + +.contentViews .hiddenStructure, +.contentActions .hiddenStructure { + position: absolute; + top: -200px; + left: -200px; +} + +.hiddenLabel { + display: block; + background: transparent; + background-image: none; /* safari bug */ + border: none; + height: 1px; + overflow: hidden; + padding: 0; + margin: -1px 0 0 -1px; + width: 1px; +} + +/* */