Skip to:
Content

bbPress.org

Changeset 6603


Ignore:
Timestamp:
06/24/2017 02:29:12 PM (7 years ago)
Author:
johnjamesjacoby
Message:

Admin: buzz & swoop.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bbpress.php

    r6601 r6603  
    204204        /** Versions **********************************************************/
    205205
    206         $this->version    = '2.6-rc-6601';
     206        $this->version    = '2.6-rc-6602';
    207207        $this->db_version = '262';
    208208
  • trunk/src/includes/admin/assets/css/admin.css

    r6601 r6603  
    1414    color: #000;
    1515    display: inline-block;
     16    transform-origin: center center;
    1617}
    1718
    1819.bbp-badge:before {
    1920    content: "\f451";
     21}
     22
     23@keyframes buzz {
     24    0%   { right: -2px; top: -1px; }
     25    25%  { right:  1px; top:  2px; }
     26    50%  { right: -3px; top: -1px; }
     27    75%  { right:  2px; top:  1px; }
     28    0%   { right: -2px; top: -1px; }
     29}
     30
     31@keyframes swoop {
     32  0%   { transform: rotate( -9deg ); }
     33  25%  { transform: rotate( 3deg  ); }
     34  50%  { transform: rotate( -3deg ); }
     35  75%  { transform: rotate( 9deg  ); }
     36  100% { transform: rotate( -9deg ); }
    2037}
    2138
     
    2441    top: 0;
    2542    right: 0;
     43    -webkit-animation: buzz 0.3s infinite ease-in, swoop 5s infinite ease-in-out;
     44    animation: buzz 0.3s infinite ease-in, swoop 5s infinite ease-in-out;
    2645}
    2746
Note: See TracChangeset for help on using the changeset viewer.