diff options
author | vdigital <vdigital@piwigo.org> | 2007-01-12 22:36:56 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2007-01-12 22:36:56 +0000 |
commit | ed6d397aa1a82d6a8f0794b46a381fe746a0ae70 (patch) | |
tree | f4785d68f727ecdc2f0e801a47f7823cf7c3210c /plugins/admin_advices/default-layout.css | |
parent | c75d7186d7a9b1d6f2e44d5deea3447c0fba11b4 (diff) |
Admin Advices includes :
- Tags relation check.
- PhpWebGallery link buttons.
- Its own default-layout.css (as a sample for other plugins as well).
No more functions would be included in 1.7
Please process to correct all wording errors in any advice.
git-svn-id: http://piwigo.org/svn/trunk@1718 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | plugins/admin_advices/default-layout.css | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/plugins/admin_advices/default-layout.css b/plugins/admin_advices/default-layout.css new file mode 100644 index 000000000..dfc4e7fb8 --- /dev/null +++ b/plugins/admin_advices/default-layout.css @@ -0,0 +1,58 @@ +/* $Id$ */
+.content {
+ list-style-type:none;
+ margin: 0 1em 0 14.5em;
+ border: 1px solid;
+ padding: 0;
+}
+.content h2 {
+ font-weight: bold;
+ padding-left: 2em;
+}
+.content h3 {
+ text-align: left;
+ padding-left: 3em;
+ font-size: 120%;
+}
+.content table tr td {
+ text-align: left;
+ padding-left: 2em;
+}
+.pwgmenu {
+ display: table;
+ list-style-type: none;
+ list-style-image: none; /* for firefox */
+ white-space: nowrap;
+ position: relative;
+ text-decoration : none;
+ font-family: verdana, arial, helvetica, sans-serif;
+ font-size: 70%;
+ line-height: 1.1em;
+ width: 66em;
+ margin: 1px 8px;
+ padding: 3px;
+ background: transparent;
+}
+.pwgmenu li {
+ float: left;
+ width: 10em !important;
+ text-align: center;
+ margin: 0 6px;
+ padding: 0;
+
+}
+.pwgmenu a {
+ width: 9em !important;
+ display: block;
+ padding: 4px 8px;
+ background: #69c; /* PWG Graphic charts */
+ color: white;
+ text-align: center;
+ text-decoration: none;
+ font-weight: bold;
+ border: 1px solid #fff; /* Why bordered? in case of #69c background */
+}
+.pwgmenu a:hover {
+ background: #f92;
+ color: white;
+} /* PWG Graphic charts */
|