Anyway to get this to work with Development Seed's Rubik Admin Theme?

CommentFileSizeAuthor
#3 Screen shot 2011-02-02 at 12.36.36 PM.png75.96 KBR-H
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

j2b’s picture

Should be something else, as Rubik Admin theme works great. No problems, except glitch for screen jumping on scroll.

R-H’s picture

Are you saying that you don't have any issues using the Module Filter with the Rubik Theme? I just don't see the vertical tabs on the modules page.

R-H’s picture

I see the filters at the bottom of the page.

R-H’s picture

Ok, did a test on a fresh install and you're right. Rubik isn't the conflict. Something else is. I will have to play around to figure out what is conflicting.

scubaguy’s picture

I have the same issue. Not sure what the conflict is yet though.

j2b’s picture

R-H. According to your picture, I'd guess, that this deffect is connected with form layout of Modules list. I didn't have any problems with this, except scroll glitching, as I've mentioned before. Here is an issue, still without any comments, http://drupal.org/node/902654, which mainly focuses on JS realated modules problem. I can not reccomend you any easier validation tests, except swithching off module by module, to get info o one, that messes things up. Probably the first would be some jQ update, UI and Ajax based modules. If you use your own custom modules, probably there could be any errors. May be somebody can suggest easyer testing method? And the problem with scroll glitching ir really annoying, due to what I switched tabs off, leaving only quick search. This is mainly due to jq update, I guess. But as I am satisfied with quick search only, I have not managed to test it.

greenSkin’s picture

Also try flushing the cache and/or running update.php.

greenSkin’s picture

Status: Active » Closed (works as designed)
jienckebd’s picture

For me, the problem was in core.css. There was a clear:both tag on the table selector:

table {
    background-color: #FFFFFF;
    border-collapse: collapse;
    border-color: #DDDDDD;
    border-style: solid;
    border-width: 1px;
    clear: both;
    margin: 0 0 10px;
    width: 100%;
}

Add the following CSS below this table CSS:

#module-filter-wrapper table {
    clear: none;
}