Procházet zdrojové kódy

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

Nathan Schneider před 4 roky
rodič
revize
b9ff86b70a
1 změnil soubory, kde provedl 7 přidání a 0 odebrání
  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;