#9963 closed defect (fixed)
Format error in web admin Plugins listing
Reported by: | Owned by: | Jun Omae | |
---|---|---|---|
Priority: | normal | Milestone: | 0.12.2 |
Component: | admin/web | Version: | 0.12.1 |
Severity: | normal | Keywords: | bitesized |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
The web admin listing of plugins has a formatting error: The triangle character that points to the side or down (depending on whether the plugin listing is collapsed or not) is overlaid on top of the first character of the plugin name when using IE 8 as of version 0.12.1. See attachment.
This was not a problem when using IE 8 with Trac-0.12dev_r9810, nor is it a problem when using Firefox 3.0.19 with Trac-0.12.1.
Dennis
Attachments (4)
Change History (12)
by , 14 years ago
Attachment: | TracWebAdminPlugins.doc added |
---|
comment:1 by , 14 years ago
Keywords: | bitesized added |
---|---|
Milestone: | → next-minor-0.12.x |
This probably requires a bit of CSS tweaking.
comment:2 by , 14 years ago
I just tested - this seems to be a browser cache issue. In IE8, try CTRL+R (to be really sure, go in developer panel <F12> then Cache / Clear browser cache).
by , 14 years ago
Attachment: | admin-plugins-IE8-mode.png added |
---|
checking with current trunk, using IE9 in IE8 mode
comment:3 by , 14 years ago
Grrr! I hate these browser problems. Well, I tried what you suggested, Christian, including F12, etc, but it made no difference. I then closed all IE windows and tried again (also clearing the cache again), but no joy.
I am running Windows XP SP 3, FWIW.
Dennis
comment:4 by , 14 years ago
The problem happens with IE7 and IE7 compatibility view for IE8. This seems A negative margin in admin.css
doesn't work with the browsers.
.plugin > h3 a { margin-left: -16px; }
The following patch has tested with IE7, IE7 compatibility view IE8, Firefox 3.6, Firefox 4.0 beta and Chrome 8.0 on Windows XP. Could you test the patch with the other browsers?
-
trac/htdocs/css/admin.css
49 49 padding: 2px .5em; 50 50 text-align: left; 51 51 } 52 .plugin > h3 { margin: .5em 0; padding-left: 16px; color: #bb0000; } 53 .plugin > h3 a { margin-left: -16px; } 52 .plugin > .foldable { margin: .5em 0; color: #bb0000; } 54 53 .plugin .buttons { margin-top: 0; text-align: right; } 55 54 .plugin .uninstall { margin-top: -2.6em; padding: 0; } 56 55 .plugin .summary, .plugin .info { padding-left: 16px; color: #999; font-size: 80%; } … … 60 59 .plugin .info dd { padding: 0; margin: 0; } 61 60 .plugin .listing { width: 100%; } 62 61 .plugin .listing td { background: #fff; } 63 .plugin .listing .foldable :link,64 .plugin .listing .foldable :visited { margin-left: -16px; }65 62 .trac-heading { margin: 0; } 66 63 .trac-name { font-family: monospace; } 67 64 .trac-toggler { color: #000; font-weight: normal; } 68 65 .trac-toggler :link, .trac-toggler :visited, 69 66 .trac-toggler :link:hover, .trac-toggler :visited:hover { border: none; padding: 0; } 70 67 .trac-module .trac-heading { padding-left: 16px; color: #888; } 68 .trac-module .trac-heading.foldable { text-indent: -16px } 71 69 .trac-module > div { margin-left: 1em; } 72 .trac-component .trac-heading { margin-left: 2em; padding-left: 16px; } 70 .trac-component .trac-heading { margin-left: 2em; padding-left: 16px } 71 .trac-component .trac-heading.foldable { text-indent: -16px } 73 72 .trac-component > div { margin-left: 3em; } 74 73 .trac-summary { color: #888; } 75 74 table.trac-pluglist td { padding-left: 1em; }
comment:5 by , 14 years ago
Works perfect on every browser I could lay a hand on (Firefox 3.6, Opera 11.0, Chromium 6.0.470.0 on Linux, IE8 and IE8 in IE7 mode on Windows 7). Please apply.
comment:6 by , 14 years ago
Milestone: | next-minor-0.12.x → 0.12.2 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Thanks for the testing, Remy! Applied in [10453].
follow-up: 8 comment:7 by , 14 years ago
Owner: | set to |
---|
Views of web admin Plugins listing using IE and Firefox