[yocto] [patchwork][PATCH] htdocs/css/style.css: fix select style in FF and IE

Jose Lamego jose.a.lamego at linux.intel.com
Wed Sep 6 08:49:19 PDT 2017


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 <jose.a.lamego at linux.intel.com>
---
 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




More information about the yocto mailing list