diff options
author | Sergio Villar Senin <svillar@igalia.com> | 2011-03-30 15:36:08 +0800 |
---|---|---|
committer | Sergio Villar Senin <svillar@igalia.com> | 2011-06-01 22:00:59 +0800 |
commit | 89cd6749b82686ca78e8d44c5b3fb18fead02363 (patch) | |
tree | 0156a79859ec3a08a5e985d5d538c486980f1b47 /data | |
parent | 813993d057e19bf9f7b1c091d165026c6dad8a41 (diff) | |
download | gsoc2013-epiphany-89cd6749b82686ca78e8d44c5b3fb18fead02363.tar.gz gsoc2013-epiphany-89cd6749b82686ca78e8d44c5b3fb18fead02363.tar.zst gsoc2013-epiphany-89cd6749b82686ca78e8d44c5b3fb18fead02363.zip |
Added about:plugins support.
We are now able to show a page with the list of installed plugins.
Bug #575498
Diffstat (limited to 'data')
-rw-r--r-- | data/pages/Makefile.am | 6 | ||||
-rw-r--r-- | data/pages/about.css | 31 |
2 files changed, 36 insertions, 1 deletions
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 |