source: main/waeup.plonetheme.ngren3/trunk/waeup/plonetheme/ngren3/skins/plonetheme_bootstrap_custom/IEFixes.css @ 10222

Last change on this file since 10222 was 10084, checked in by Henrik Bettermann, 12 years ago

Fill trunk.

File size: 1.1 KB
Line 
1/* fix shift on content views list under ie6 */
2*html ul#content-views{
3    margin: -2px -3px 0px -3px;
4}
5
6/* removes extra space above logo */
7#portal-logo {
8    margin-top: 0;
9}
10
11/* ensures hidden elements don't take up space */
12.hiddenStructure {
13    position: absolute;
14}
15
16/* IE8: keeps livesearch from falling behind content area,
17   and display menu from falling behind footer
18   Keeping float for IE7, so the portlets don't fall */
19div.cell {
20    float: none;
21    *float: left;
22}
23
24/* IE8: prevent ghost top-margin in folder summary listing */
25h2.tileHeadline {
26    display: block;
27    *display: inline;
28}
29
30/* IE7: fixes super-wide div for JavaScript Tag selector */
31div.optionsBox {
32    !width: 50%;
33}
34.optionsBox input {
35    !margin: 0px;
36}
37/* IE7: Display menu falls under footer (see Events page) (IE7) #10872 */
38#portal-columns {
39    z-index: 1;
40}
41/* IE7: Live search appears under content action menu (IE7/IE8) #10872 */
42#portal-top {
43    z-index: 2;
44}
45/* IE7: set z-indexes on content menus for narrow browsers #10872 */
46#contentActionMenus #plone-contentmenu-workflow {
47    z-index: 6;
48}
Note: See TracBrowser for help on using the repository browser.