summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2007-03-02 09:40:27 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2007-03-02 09:40:27 +0000
commitba0ff1a9b7805cde4521d07ca0f039506173bb6b (patch)
treeb3ff25104d6edfb2eff698e22fecc51c47386b5a /themes
parent7cfde27e31c0eb238c0fe51598105c59cd2cab84 (diff)
downloadbrdo-ba0ff1a9b7805cde4521d07ca0f039506173bb6b.tar.gz
brdo-ba0ff1a9b7805cde4521d07ca0f039506173bb6b.tar.bz2
#117018: Use Garland theme for installer/maintenance pages, and add task list in the sidebar.
- Refactor partial-page handling for the maintenance page. It's an exotic quirk for update.php and belongs there.
Diffstat (limited to 'themes')
-rw-r--r--themes/garland/images/task-list.pngbin0 -> 128 bytes
-rw-r--r--themes/garland/style.css33
2 files changed, 31 insertions, 2 deletions
diff --git a/themes/garland/images/task-list.png b/themes/garland/images/task-list.png
new file mode 100644
index 000000000..3f9b74f2b
--- /dev/null
+++ b/themes/garland/images/task-list.png
Binary files differ
diff --git a/themes/garland/style.css b/themes/garland/style.css
index e4e73e059..717e1ffff 100644
--- a/themes/garland/style.css
+++ b/themes/garland/style.css
@@ -96,7 +96,12 @@ ul {
padding: 0;
}
-ul li {
+ol {
+ margin: 0.75em 0 1.25em;
+ padding: 0;
+}
+
+ol li, ul li {
margin: 0.4em 0 0.4em .5em;
}
@@ -109,7 +114,7 @@ ul.menu ul, .item-list ul ul {
margin-left: 0em;
}
-ul li, ul.menu li, .item-list ul li, li.leaf {
+ol li, ul li, ul.menu li, .item-list ul li, li.leaf {
margin: 0.15em 0 0.15em .5em;
}
@@ -120,6 +125,11 @@ ul li, ul.menu li, .item-list ul li, li.leaf {
background: transparent url(images/menu-leaf.gif) no-repeat 1px .35em;
}
+ol li {
+ padding: 0 0 .3em;
+ margin-left: 2em;
+}
+
ul li.expanded {
background: transparent url(images/menu-expanded.gif) no-repeat 1px .35em;
}
@@ -138,6 +148,25 @@ ul.inline li {
padding: 0 1em 0 0;
}
+ol.task-list {
+ margin-left: 0;
+ list-style-type: none;
+ list-style-image: none;
+}
+ol.task-list li {
+ padding: 0.5em 1em 0.5em 2em;
+}
+ol.task-list li.active {
+ background: transparent url(images/task-list.png) no-repeat 3px 50%;
+}
+ol.task-list li.done {
+ color: #393;
+ background: transparent url(../../misc/watchdog-ok.png) no-repeat 0px 50%;
+}
+ol.task-list li.active {
+ margin-right: 1em;
+}
+
fieldset ul.clear-block li {
margin: 0;
padding: 0;