select styling in lx-office-erp.css
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 2 May 2016 14:25:58 +0000 (16:25 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Mon, 2 May 2016 14:25:58 +0000 (16:25 +0200)
Irgendwer bei Firefox 46 scheint was geraucht zu haben. Das Stylesheet
hatte alle anderen windowmanager decorations überschrieben, aber FF
hat seit 32 select appearance ignoriert. Angeblich aus
Sicherheitsgründen.  Das haben sie glücklicherweise gerade rechzeitig
gefixt, weil sie nun das unity7 Theme nochmal kaputter gemacht haben.
Ansonsten wäre das unbenutzbar.

css/lx-office-erp/main.css
image/select-down.png [new file with mode: 0644]

index f6b1f16..a2c0e68 100644 (file)
@@ -24,7 +24,10 @@ input, textarea, select {
 }
 
 select {
-  padding: 0px;
+  -moz-appearance: none;
+  appearance : none;
+  background: white url('../../image/select-down.png') no-repeat scroll right center;
+  padding: 0 14px 0 0;
 }
 
 input:focus, textarea:focus, select:focus {
diff --git a/image/select-down.png b/image/select-down.png
new file mode 100644 (file)
index 0000000..33454f3
Binary files /dev/null and b/image/select-down.png differ