diff --git a/html/themes/breezy/form.css b/html/themes/breezy/form.css
index 8c9c143da268f2d6f88fd41513f173da468eb70b..b5971827135e77f570154e8737b2928fe370cfa8 100644
--- a/html/themes/breezy/form.css
+++ b/html/themes/breezy/form.css
@@ -5,8 +5,17 @@ textarea,
 textarea:focus {
   font-size: 12px;
 }
-input[type=text],
+input[type=color],
+input[type=date],
+input[type=datetime-local],
+input[type=email],
+input[type=number],
 input[type=password],
+input[type=search],
+input[type=tel],
+input[type=text],
+input[type=time],
+input[type=url],
 select {
   padding: 2px;
 }
@@ -15,8 +24,17 @@ input[type=number] {
 }
 /* On small screens */
 @media (max-width: 640px) {
-  input[type=text],
+  input[type=color],
+  input[type=date],
+  input[type=datetime-local],
+  input[type=email],
+  input[type=number],
   input[type=password],
+  input[type=search],
+  input[type=tel],
+  input[type=text],
+  input[type=time],
+  input[type=url],
   input[type=file],
   textarea,
   select {
diff --git a/html/themes/breezy/less/form.less b/html/themes/breezy/less/form.less
index a9b0043221ba0cb97159f338143ae4df08e23389..912f98f41415aacb80a9352be7bfd62db6ea0f38 100644
--- a/html/themes/breezy/less/form.less
+++ b/html/themes/breezy/less/form.less
@@ -4,7 +4,8 @@ input, input:focus, select, textarea, textarea:focus {
   font-size: @text-font-size;
 }
 
-input[type=text], input[type=password], select {
+
+input[type=color], input[type=date], input[type=datetime-local], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], select {
   padding: 2px;
 }
 
@@ -14,7 +15,8 @@ input[type=number] {
 
 /* On small screens */
 @media (max-width: 640px) {
-  input[type=text], input[type=password], input[type=file], textarea, select {
+  input[type=color], input[type=date], input[type=datetime-local], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url],
+  input[type=file], textarea, select {
     max-width: 100%;
   }
   input.base-selector {