Changeset 6603
- Timestamp:
- 06/24/2017 02:29:12 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bbpress.php
r6601 r6603 204 204 /** Versions **********************************************************/ 205 205 206 $this->version = '2.6-rc-660 1';206 $this->version = '2.6-rc-6602'; 207 207 $this->db_version = '262'; 208 208 -
trunk/src/includes/admin/assets/css/admin.css
r6601 r6603 14 14 color: #000; 15 15 display: inline-block; 16 transform-origin: center center; 16 17 } 17 18 18 19 .bbp-badge:before { 19 20 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 ); } 20 37 } 21 38 … … 24 41 top: 0; 25 42 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; 26 45 } 27 46
Note: See TracChangeset
for help on using the changeset viewer.