Make WordPress Core

Changeset 18286


Ignore:
Timestamp:
06/12/2011 03:34:15 AM (15 years ago)
Author:
dd32
Message:

Add Opera variants of linear-gradient & transition alongside moz and webkit variants. Se #17748

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyeleven/style.css

    r18285 r18286  
    541541    background: #222; /* Show a solid color for older browsers */
    542542    background: -moz-linear-gradient(#252525, #0a0a0a);
     543    background: -o-linear-gradient(#252525, #0a0a0a);
    543544    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */
    544545    background: -webkit-linear-gradient(#252525, #0a0a0a);
     
    606607    background: #f9f9f9; /* Show a solid color for older browsers */
    607608    background: -moz-linear-gradient(#f9f9f9, #e5e5e5);
     609    background: -o-linear-gradient(#f9f9f9, #e5e5e5);
    608610    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */
    609611    background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);
     
    636638    -moz-transition-property: width, background;
    637639    -moz-transition-timing-function: ease;
     640    -o-transition-duration: 400ms;
     641    -o-transition-property: width, background;
     642    -o-transition-timing-function: ease;
    638643    width: 45px;
    639644}
Note: See TracChangeset for help on using the changeset viewer.