aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/menubar.css
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2006-06-22 18:17:47 +0000
committernikrou <nikrou@piwigo.org>2006-06-22 18:17:47 +0000
commitad45eccd3349d44af4a251ab0f12eb3233cd08b8 (patch)
tree2924a4d6832bdd18658f15326f40de2ae4ee9105 /template/yoga/menubar.css
parent84536f02755a328ab689106719ba17c79f09f85d (diff)
issue 426 step 1 reverted:
svn merge -r1466:1465 . svn merge -r1463:1462 . git-svn-id: http://piwigo.org/svn/trunk@1376 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/menubar.css')
-rw-r--r--template/yoga/menubar.css108
1 files changed, 108 insertions, 0 deletions
diff --git a/template/yoga/menubar.css b/template/yoga/menubar.css
new file mode 100644
index 000000000..f8fbdf914
--- /dev/null
+++ b/template/yoga/menubar.css
@@ -0,0 +1,108 @@
+#menubar {
+ float: left;
+ margin: 0 0 10px 1em;
+ padding: 0;
+ /* Fix against the "double margin of a floated item" IE bug */
+ /* Damned: that screws up top_navbar in opera 7.54/Linux! */
+ display: inline;
+ text-align: left; /* follow-up of the "be nice to IE5" rule */
+}
+
+#menubar DL, #menubar DT, #menubar DD {
+ margin: 0; padding: 0; display: block;
+}
+
+/* H2 properties copied here */
+#menubar DT {
+ font-weight: bold; /* default for h2 */
+ margin: 0;
+ padding: 5px 5px 5px 5px;
+ font-size: 120%;
+ text-align: center;
+}
+
+#menubar UL,
+#menubar HR,
+#menubar FORM,
+#menubar P, /* ooh, careful... */
+#menubar .totalImages {
+ font-size: 92%;
+ margin: 10px 0 10px 10px;
+}
+#menubar UL {
+ list-style-type: square;
+ list-style-position: inside;
+ padding: 0 0 0 2px;
+}
+#menubar UL UL {
+ font-size: 100%;
+ margin-top: 0;
+}
+
+#menubar LI.selected A {
+ font-weight: bold;
+}
+
+#menubar LI.selected LI A {
+ font-weight: normal;
+}
+
+#menubar HR {
+ display: block;
+ margin: 10px auto;
+ width: 90%;
+}
+#menubar FORM P {
+ margin: 5px;
+ font-size: 100%;
+}
+#menubar INPUT {
+ text-indent: 2px;
+}
+
+/* quickconnect form */
+FORM#quickconnect {
+ margin: 0;
+ padding: 5px;
+}
+
+FORM#quickconnect FIELDSET {
+ margin: 0;
+ padding: 0 0 0.5em 0;
+ overflow: hidden; /* Correct float issue with Opera 7.5 */
+ width: 100%; /* // */
+}
+
+FORM#quickconnect P {
+ float: left;
+ clear: left;
+}
+
+FORM#quickconnect P INPUT {
+ margin: 0;
+}
+
+FORM#quickconnect UL.actions {
+ display: inline;
+ float: right;
+ padding: 0;
+ text-align: right; /* Opera 7.5 */
+ width: 40%; /* Opera 7.5 cannot find why width:auto fails :-( */
+}
+
+FORM#quickconnect UL.actions,
+FORM#quickconnect P,
+FORM#quickconnect LABEL {
+ margin: 0 0.5em 0 0.5em;
+}
+
+#menubar #menuTagCloud {
+ text-align: center;
+ margin: 5px 0;
+}
+
+#menubar #menuTagCloud LI
+{
+ display: inline;
+ white-space: nowrap;
+}