From 89cd6749b82686ca78e8d44c5b3fb18fead02363 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Wed, 30 Mar 2011 09:36:08 +0200 Subject: Added about:plugins support. We are now able to show a page with the list of installed plugins. Bug #575498 --- data/pages/Makefile.am | 6 +++++- data/pages/about.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 data/pages/about.css (limited to 'data') diff --git a/data/pages/Makefile.am b/data/pages/Makefile.am index f2b879a5f..5062f0989 100644 --- a/data/pages/Makefile.am +++ b/data/pages/Makefile.am @@ -3,4 +3,8 @@ errorpages_DATA = \ recovery.html \ error.html -EXTRA_DIST = $(errorpages_DATA) +stylepagesdir = $(pkgdatadir)/pages +stylepages_DATA = \ + about.css + +EXTRA_DIST = $(errorpages_DATA) $(stylepages_DATA) diff --git a/data/pages/about.css b/data/pages/about.css new file mode 100644 index 000000000..2937047eb --- /dev/null +++ b/data/pages/about.css @@ -0,0 +1,31 @@ +#plugin-table +{ + margin: 14px; + width: 80%; + text-align: left; + border-collapse: collapse; +} + +#plugin-table th +{ + padding: 8px; + background:#b9c9ff; + border-top: 4px solid #aabcff; + border-bottom: 1px solid #fff; + color: #039; +} + +#plugin-table td +{ + padding: 8px; + background: #e8edff; + border-bottom: 1px solid #fff; + color: #669; + border-top: 1px solidtransparent; +} + +#plugin-table tr:hover td +{ + background: #d0dafd; + color:#339; +} \ No newline at end of file -- cgit v1.2.3