Kaynağa Gözat

Enhanced/Minimized Themes: Hide number input spinners.

Nate Jones 10 yıl önce
ebeveyn
işleme
8ec3b1a41a
2 değiştirilmiş dosya ile 11 ekleme ve 1 silme
  1. 5 0
      themes/enhanced/template.php
  2. 6 1
      themes/minimized/template.php

+ 5 - 0
themes/enhanced/template.php

@@ -292,6 +292,11 @@ input.txt:focus, .formfld:focus {
 	box-shadow: 0 0 5px #cddaf0;
 	}
 
+/* removes spinners (increment/decrement controls) inside input fields */
+input[type=number] { -moz-appearance: textfield; }
+::-webkit-inner-spin-button { -webkit-appearance: none; }
+::-webkit-outer-spin-button { -webkit-appearance: none; }
+
 select.formfld {
 	height: 27px;
 	padding: 4px;

+ 6 - 1
themes/minimized/template.php

@@ -284,7 +284,7 @@ input.txt, .formfld {
 	-moz-transition: width 0.25s;
 	-webkit-transition: width 0.25s;
 	max-width: 500px;
-}
+	}
 
 input.txt:focus, .formfld:focus {
 	-webkit-box-shadow: 0 0 5px #cddaf0;
@@ -292,6 +292,11 @@ input.txt:focus, .formfld:focus {
 	box-shadow: 0 0 5px #cddaf0;
 	}
 
+/* removes spinners (increment/decrement controls) inside input fields */
+input[type=number] { -moz-appearance: textfield; }
+::-webkit-inner-spin-button { -webkit-appearance: none; }
+::-webkit-outer-spin-button { -webkit-appearance: none; }
+
 select.formfld {
 	height: 27px;
 	padding: 4px;