소스 검색

Used CSS animation to highlight custom-field-container when created or changed

Nathan Schneider 4 년 전
부모
커밋
b9ff86b70a
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      _sass/communityrule.scss

+ 7 - 0
_sass/communityrule.scss

@@ -123,6 +123,13 @@
     padding-bottom: .5em;
 }
 
+#custom-field-container {
+    animation: blinker 1s linear 1;
+}
+@keyframes blinker {
+    from {background-color: lightgray;}
+    to {background-color: white;}
+}
 .field-controls {
     float: right;
     font-size: .7em;