소스 검색

Adds 1px border to form page input fields on mobile touch #139

Edd Baldry 7 년 전
부모
커밋
a4f8d887ea
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      bakerydemo/static/css/main.css

+ 8 - 0
bakerydemo/static/css/main.css

@@ -749,6 +749,14 @@ span.outline {
   display: block;
   min-width: 450px;
   max-width: 450px;
+  padding: 5px;
+}
+@media (max-width: 766px) {
+  .form-page input, textarea, select {
+    border: 1px solid #ccc;
+    max-width: 100%;
+    min-width: 100%;
+  }
 }
 
 .form-page li input[type=checkbox], input[type=radio] {