Page MenuHomePhabricator

Bugzilla unusable with mouse when using Konqueror as browser
Closed, ResolvedPublic

Description

Bugzilla is nearly unusable with the mouse when using Konqueror (from KDE 4.4.4) as browser.

The reason for this is that the search field covers the whole size of the window. It's transparent (as in "you still see everything"), but it catches all mouse clicks. This happens on all bugzilla pages (for example search results, single bug view) that have the search box on the top-right corner.

I tracked down the problem to vector.css (line 145):

#simpleSearch > button#searchButton {
    height:100%;
}

I could fix the problem by adding the following line to my user CSS:

#simpleSearch > button#searchButton { 
    height: 1.5em !important;
}

Please change the height in vector.css to something like 1.5em so that bugzilla works in Konqueror. (The "!important" is to make sure it really overrides the online CSS, it won't be needed in vector.css.)


Version: unspecified
Severity: trivial

Details

Reference
bz25727

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 11:20 PM
bzimport set Reference to bz25727.
  • Bug 22277 has been marked as a duplicate of this bug. ***

Priyanka, could you make the CSS

#simpleSearch > button#searchButton { 
    height: 12px;
}

I tried it that way for my user.css in Konqueror since that is the height of the search icon.

Why is bit in the CSS anyway? It isn't in the regular vector.css.

This seems to have been fixed now.