Series view displays the "Revision" select element not in line with the general patchwork style/design when viewed using Firefox or Internet Explorer browsers due to a known incompatibility of this browsers with Boostrap library (for example, an arrow head inside a button is displayed next to the "Revision" select element when using FF).
This change hides the out-of-style items by using browser-specific css properties "moz-appearance" and "ms-expand". [YOCTO #11886] Signed-off-by: Jose Lamego <[email protected]> --- htdocs/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/htdocs/css/style.css b/htdocs/css/style.css index 52e2422..633f13e 100644 --- a/htdocs/css/style.css +++ b/htdocs/css/style.css @@ -549,3 +549,12 @@ pre.test-result { margin: 0px; border: 0px; } + +#revs-list{ + -moz-appearance: none; + text-indent: 0.01px; + text-overflow: '' +} +#revs-list::-ms-expand{ + display: none; +} -- 2.7.4 -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
