Index: update.php
===================================================================
RCS file: /cvs/drupal/drupal/update.php,v
retrieving revision 1.197
diff -u -F^f -r1.197 update.php
--- update.php	14 Aug 2006 05:47:36 -0000	1.197
+++ update.php	14 Aug 2006 17:35:43 -0000
@@ -402,6 +402,7 @@ function update_progress_page() {
   // Prevent browser from using cached drupal.js or update.js
   drupal_add_js('misc/progress.js', TRUE);
   drupal_add_js('misc/update.js', TRUE);
+  drupal_add_css(drupal_get_path('module', 'system') .'/admin.css', 'core');
 
   drupal_set_title('Updating');
   $output = '<div id="progress"></div>';
Index: modules/system/admin.css
===================================================================
RCS file: modules/system/admin.css
diff -N modules/system/admin.css
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ modules/system/admin.css	14 Aug 2006 17:35:43 -0000
@@ -0,0 +1,73 @@
+/*
+** Progressbar styles
+*/
+.progress {
+  font-weight: bold;
+}
+.progress .bar {
+  background: #fff url(progress.gif);
+  border: 1px solid #00375a;
+  height: 1.5em;
+  margin-top: 0.2em;
+}
+.progress .filled {
+  background: #0072b9;
+  height: 1em;
+  border-bottom: 0.5em solid #004a73;
+  width: 0%;
+}
+.progress .percentage {
+  float: right;
+}
+
+/*
+** Formatting for administration page
+*/
+div.admin-panel {
+  margin: 0px 0px 0px 0px;
+  padding: 5px 5px 15px 5px;
+}
+
+div.admin-panel .description {
+  margin: 0px 0px 3px;
+  padding: 2px 0 3px 0;
+  font-weight: normal;
+  text-align: left;
+  color: #999;
+}
+
+div.admin-panel .body {
+  padding: 0 4px 2px 8px;
+  background-color: #f4f4f4;
+  line-height: 1.2em;
+}
+
+div.admin-panel .head {
+  background-color: #6699CC;
+  color: #FFFFFF;
+  font-weight: bold;
+  font-size: 14px;
+  margin: 0px 0px 0px 0px;
+  padding: 4px 4px 4px 8px;
+}
+
+div.admin {
+  padding-top: 15px;
+}
+
+div.admin .left {
+  float: left;
+  width: 47%;
+  margin-left: 1em;
+}
+div.admin .right {
+  float: right;
+  width: 47%;
+  margin-right: 1em;
+}
+
+div.admin .expert-link {
+  text-align: right;
+  margin-right: 1em;
+  padding-right: 4px;
+}
Index: modules/system/system.css
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.css,v
retrieving revision 1.1
diff -u -F^f -r1.1 system.css
--- modules/system/system.css	14 Aug 2006 07:14:49 -0000	1.1
+++ modules/system/system.css	14 Aug 2006 17:35:43 -0000
@@ -124,3 +124,88 @@
   height: 1.75em;
   margin: 0;
 }
+
+/*
+** Autocomplete styles
+*/
+/* Suggestion list */
+#autocomplete {
+  position: absolute;
+  border: 1px solid;
+  overflow: hidden;
+}
+#autocomplete ul {
+  margin: 0;
+  padding: 0;
+  list-style: none;
+}
+#autocomplete li {
+  background: #fff;
+  color: #000;
+  white-space: pre;
+  cursor: default;
+}
+#autocomplete li.selected {
+  background: #0072b9;
+  color: #fff;
+}
+/* Animated throbber */
+html.js input.form-autocomplete {
+  background-image: url(throbber.gif);
+  background-repeat: no-repeat;
+  background-position: 100% 2px;
+}
+html.js input.throbbing {
+  background-position: 100% -18px;
+}
+
+/*
+** Collapsing fieldsets
+*/
+html.js fieldset.collapsed {
+  border-bottom-width: 0;
+  border-left-width: 0;
+  border-right-width: 0;
+  margin-bottom: 0;
+}
+html.js fieldset.collapsed * {
+  display: none;
+}
+html.js fieldset.collapsed table *,
+html.js fieldset.collapsed legend,
+html.js fieldset.collapsed legend * {
+  display: inline;
+}
+html.js fieldset.collapsible legend a {
+  padding-left: 15px;
+  background: url(menu-expanded.png) 5px 50% no-repeat;
+}
+html.js fieldset.collapsed legend a {
+  background-image: url(menu-collapsed.png);
+}
+/* Note: IE-only fix due to '* html' (breaks Konqueror otherwise). */
+* html.js fieldset.collapsible legend a {
+  display: block;
+}
+
+/*
+** Resizable text areas
+*/
+.resizable-textarea {
+  width: 95%;
+}
+.resizable-textarea .grippie {
+  height: 14px;
+  background: #eee url(grippie.png) no-repeat 100% 100%;
+  border: 1px solid #ddd;
+  border-top-width: 0;
+  cursor: s-resize;
+}
+
+/*
+** Formatting for welcome page
+*/
+#first-time strong {
+  display: block;
+  padding: 1.5em 0 .5em;
+}
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.344
diff -u -F^f -r1.344 system.module
--- modules/system/system.module	14 Aug 2006 07:17:37 -0000	1.344
+++ modules/system/system.module	14 Aug 2006 17:35:44 -0000
@@ -250,6 +250,11 @@ function system_menu($may_cache) {
     // added once per request.
     drupal_add_css(drupal_get_path('module', 'system') .'/defaults.css', 'core');
     drupal_add_css(drupal_get_path('module', 'system') .'/system.css', 'core');
+    
+    // We only need this when on admin pages
+    if (arg(0) == 'admin') {
+      drupal_add_css(drupal_get_path('module', 'system') .'/admin.css', 'core');
+    }
   }
 
   return $items;
