? sites/default/files
? sites/default/private
? sites/default/settings.php
Index: themes/seven/html-elements.css
===================================================================
RCS file: themes/seven/html-elements.css
diff -N themes/seven/html-elements.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ themes/seven/html-elements.css	23 Nov 2009 20:46:28 -0000
@@ -0,0 +1,299 @@
+/* $Id: html-elements.css,v 1.1.2.2 2009/02/13 19:42:10 johnalbin Exp $ */
+
+/**
+ * Fonts.
+ */
+body {
+  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
+}
+
+#page {
+  /* Use a 14px base font size with a 18px line height */
+  font-size: 0.875em; /* 16px x .875 = 14px */
+  line-height: 1.286em; /* 14px x 1.286 = 18px */
+}
+
+body,
+caption,
+th,
+td,
+input,
+legend,
+fieldset {
+  font-family: Lucida Grande, Lucida Sans Unicode, sans-serif;
+}
+
+pre, code
+{
+  font-size: 1.1em; /* Monospace fonts can be hard to read */
+  font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
+}
+
+/**
+ * Headings.
+ */
+h1 {
+  font-size: 2em;
+  line-height: 1.3em;
+  margin-top: 0;
+  margin-bottom: 0.5em;
+}
+
+h2 {
+  font-size: 1.5em;
+  line-height: 1.3em;
+  margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
+  margin-bottom: 0.667em;
+}
+
+h3 {
+  font-size: 1.3em;
+  line-height: 1.3em;
+  margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
+  margin-bottom: 0.769em;
+}
+
+h4,
+h5,
+h6 {
+  font-size: 1.1em;
+  line-height: 1.3em;
+  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
+  margin-bottom: 0.909em;
+}
+
+/**
+ * Block-level elements.
+ */
+p, ul, ol, dl, pre, table, fieldset, blockquote {
+  margin: 1em 0;
+}
+
+/**
+ * Lists.
+ */
+ul, ol
+{
+  margin-left: 0;
+  padding-left: 2em;
+}
+
+.block ul, /* Drupal overrides */
+.item-list ul
+{
+  margin: 1em 0;
+  padding: 0 0 0 2em;
+}
+
+ul ul, ul ol,
+ol ol, ol ul,
+.block ul ul, .block ul ol,
+.block ol ol, .block ol ul,
+.item-list ul ul, .item-list ul ol,
+.item-list ol ol, .item-list ol ul
+{
+  margin: 0;
+}
+
+li
+{
+  margin: 0;
+  padding: 0;
+}
+
+.item-list ul li /* Drupal override */
+{
+  margin: 0;
+  padding: 0;
+  list-style: inherit;
+}
+
+ul.menu li, /* Drupal override */
+li.expanded,
+li.collapsed,
+li.leaf
+{
+  margin: 0;
+  padding: 0;
+}
+
+ul          { list-style-type: disc; }
+ul ul       { list-style-type: circle; }
+ul ul ul    { list-style-type: square; }
+ul ul ul ul { list-style-type: circle; }
+ol          { list-style-type: decimal; }
+ol ol       { list-style-type: lower-alpha; }
+ol ol ol    { list-style-type: decimal; }
+
+dt
+{
+  margin: 0;
+  padding: 0;
+}
+
+dd
+{
+  margin: 0 0 0 2em;
+  padding: 0;
+}
+
+/**
+ * Links.
+ */
+a:link {
+  color: #0074BD;
+  text-decoration: none;
+}
+
+a:visited {
+  color: #0074BD;
+  text-decoration: none;
+}
+
+a:hover,
+a:focus {
+  text-decoration: underline;
+}
+
+a:active {
+}
+
+/**
+ * Tables.
+ */
+table {
+  border-collapse: collapse;
+  /* width: 100%; */ /* Prevent cramped-looking tables */
+}
+
+th,
+thead th,
+tbody th {
+  text-align: left;
+  padding-right: 0;
+  border-bottom: none;
+}
+
+tbody {
+  border-top: none;
+}
+
+/**
+ * Abbreviations.
+ */
+abbr
+{
+  border-bottom: 1px dotted #666;
+  cursor: help;
+  white-space: nowrap;
+}
+
+/* Date-based "abbreviations" show computer-friendly timestamps which are not
+   human-friendly. */
+abbr.created
+{
+  border: none;
+  cursor: auto;
+  white-space: normal;
+}
+
+/**
+ * Images.
+ */
+img
+  {
+    border: 0;
+  }
+
+/**
+ * Forms.
+ */
+form {
+  margin: 0;
+  padding: 0;
+}
+
+textarea,
+select,
+option,
+fieldset {
+  font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif !important;
+}
+
+fieldset {
+  border: 1px solid #ccc;
+  padding: 30px 13px 13px 14px;
+  margin: 0 0 10px;
+}
+
+fieldset legend span,
+fieldset legend a {
+  position: absolute;
+  margin-top: 9px;
+}
+
+fieldset legend a span {
+  position: relative;
+  margin-top: 0;
+}
+
+fieldset.collapsed {
+  background: transparent;
+}
+
+html.js fieldset.collapsed legend,
+html.js fieldset.collapsed legend * {
+  display: block;
+}
+html.js fieldset.collapsed {
+  border-width: 1px;
+  margin-bottom: 10px;
+  padding: 13px;
+}
+
+fieldset fieldset {
+  background: #fff;
+}
+
+fieldset fieldset fieldset {
+  background: #f8f8f8;
+}
+
+html.js fieldset.collapsible .fieldset-wrapper {
+  overflow: visible;
+}
+
+div.form-item {
+  padding: 9px 0;
+  margin: 0 0 10px;
+}
+
+.filter-wrapper div.form-item,
+div.teaser-checkbox div.form-item,
+div.form-item div.form-item,
+fieldset div.form-item {
+  padding: 5px 0;
+  margin: 0;
+  border: 0;
+}
+
+.text-format-wrapper .form-item {
+  padding-bottom: 0;
+}
+
+div.form-item label {
+  margin: 0;
+  padding: 0;
+}
+
+fieldset legend {
+  text-transform: uppercase;
+}
+
+div.form-item label.option {
+  text-transform: none;
+}
+
+div.form-item label.option input {
+  vertical-align: middle;
+}
Index: themes/seven/seven.info
===================================================================
RCS file: /cvs/drupal/drupal/themes/seven/seven.info,v
retrieving revision 1.3
diff -p -u -r1.3 seven.info
--- themes/seven/seven.info	19 Nov 2009 03:11:53 -0000	1.3
+++ themes/seven/seven.info	23 Nov 2009 20:46:28 -0000
@@ -6,6 +6,7 @@ version = VERSION
 core = 7.x
 engine = phptemplate
 stylesheets[screen][] = reset.css
+stylesheets[screen][] = html-elements.css
 stylesheets[screen][] = style.css
 stylesheets[all][] = vertical-tabs.css
 regions[content] = Content
Index: themes/seven/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/seven/style.css,v
retrieving revision 1.27
diff -p -u -r1.27 style.css
--- themes/seven/style.css	23 Nov 2009 01:41:43 -0000	1.27
+++ themes/seven/style.css	23 Nov 2009 20:46:33 -0000
@@ -1,41 +1,11 @@
 /* $Id: style.css,v 1.27 2009/11/23 01:41:43 webchick Exp $ */
 
-/**
- * Generic elements
- */
-body {
-  color: #000;
-  background: #fff;
-  font-style: normal;
-  line-height: 20px;
-  font-size: 0.8em;
-  font-family: Lucida Grande, Lucida Sans Unicode, sans-serif;
-}
-
-a {
-  color: #0074BD;
-  text-decoration: none;
-}
-
-a:hover {
-  text-decoration: underline;
-}
-
-hr {
-  display: none;
-}
-
-legend {
-  font-weight: bold;
-}
-
 #block-system-main h1,
 #block-system-main h2,
 #block-system-main h3,
 #block-system-main h4,
 #block-system-main h5,
 #block-system-main h6 {
-  font-size: 15px;
   font-weight: bold;
   margin:  10px 0;
 }
@@ -67,7 +37,7 @@ legend {
  border-radius: 10px;
  background: #d5d5ce;
  color: #444;
- font-size: 0.94em;
+ font-size: 0.75em;
  padding: 1px 10px 2px;
 }
 
@@ -181,6 +151,8 @@ div.status {
   font-size: 18px;
   font-weight: normal;
   float: left;
+  line-height: 20px;
+  margin: 0px;
 }
 
 /**
@@ -339,6 +311,13 @@ ul.secondary li.active a.active {
   background: #333;
 }
 
+#block-system-main ul.node-type-list,
+#block-system-main ul.admin-list,
+#block-system-main ul.vertical-tabs-list {
+  margin: 0px;
+  padding: 0px;
+}
+
 #block-system-main ul.node-type-list li,
 #block-system-main ul.admin-list li {
   position: relative;
@@ -470,92 +449,6 @@ table tr.selected td {
   border-color: #eeb;
 }
 
-/**
- * Forms.
- */
-
-/* Fieldsets & Form items */
-fieldset {
-  border: 1px solid #ccc;
-  padding: 30px 13px 13px 14px;
-  margin: 0 0 10px;
-}
-
-fieldset legend span,
-fieldset legend a {
-  position: absolute;
-  margin-top: 9px;
-}
-
-fieldset legend a span {
-  position: relative;
-  margin-top: 0;
-}
-
-fieldset.collapsed {
-  background: transparent;
-}
-
-html.js fieldset.collapsed legend,
-html.js fieldset.collapsed legend * {
-  display: block;
-}
-html.js fieldset.collapsed {
-  border-width: 1px;
-  margin-bottom: 10px;
-  padding: 13px;
-}
-
-fieldset fieldset {
-  background: #fff;
-}
-
-fieldset fieldset fieldset {
-  background: #f8f8f8;
-}
-
-html.js fieldset.collapsible .fieldset-wrapper {
-  overflow: visible;
-}
-
-div.form-item {
-  padding: 9px 0;
-  margin: 0 0 10px;
-}
-
-.filter-wrapper div.form-item,
-div.teaser-checkbox div.form-item,
-div.form-item div.form-item,
-fieldset div.form-item {
-  padding: 5px 0;
-  margin: 0;
-  border: 0;
-}
-
-.text-format-wrapper .form-item {
-  padding-bottom: 0;
-}
-
-div.form-item label {
-  margin: 0;
-  padding: 0;
-}
-
-fieldset legend {
-  text-transform: uppercase;
-}
-
-div.form-item label.option {
-  text-transform: none;
-}
-
-div.form-item label.option {
-  font-size: 12px;
-}
-div.form-item label.option input {
-  vertical-align: middle;
-}
-
 /* Filter */
 .filter-wrapper {
   border-top: 0;
@@ -664,6 +557,7 @@ html.js input.throbbing {
 ul.action-links {
   margin: 1em 0;
   overflow: hidden;
+  list-style-type: none;
 }
 
 ul.action-links li {
