From: rmccabe@sourceware.org <rmccabe@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] conga/luci/plone-custom base.css.dtml base.css
Date: 15 Sep 2006 21:26:41 -0000 [thread overview]
Message-ID: <20060915212641.29593.qmail@sourceware.org> (raw)
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.
+**
+*/
+
+/* <dtml-with base_properties> (do not remove this :) */
+/* <dtml-call "REQUEST.set('portal_url', portal_url())"> (not this either :) */
+
+
+body {
+ font: &dtml-fontBaseSize; <dtml-var fontFamily>;
+ 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: <dtml-var headingFontFamily>;
+ 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: <dtml-var fontFamily>;
+ 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;
+}
+
+/* </dtml-with> */
reply other threads:[~2006-09-15 21:26 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060915212641.29593.qmail@sourceware.org \
--to=rmccabe@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.