소스 검색

Change submit button color on focus

Gaël Métais 10 년 전
부모
커밋
ba977d6b49
2개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      front/src/css/index.css
  2. 3 0
      front/src/less/index.less

+ 3 - 0
front/src/css/index.css

@@ -22,6 +22,9 @@
 .launchBtn.disabled {
   background: #deaca6;
 }
+.launchBtn.disabled:focus {
+  color: #ddd;
+}
 .features {
   display: table;
   width: 50%;

+ 3 - 0
front/src/less/index.less

@@ -23,6 +23,9 @@
     }
     &.disabled {
         background: #deaca6;
+        &:focus {
+            color: #ddd;
+        }
     }
     
 }