Make WordPress Core

Changeset 27790


Ignore:
Timestamp:
03/27/2014 07:16:35 PM (12 years ago)
Author:
ocean90
Message:

Add some missing CSS prefixes. props grunt autoprefixer:core.

Location:
trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/common.css

    r27765 r27790  
    18391839        font-size: 14px;
    18401840        text-decoration: none;
     1841        -webkit-transition: none;
    18411842        transition: none;
    18421843}
  • trunk/src/wp-admin/css/customize-controls.css

    r27722 r27790  
    470470#customize-control-header_image .current .container {
    471471        overflow: hidden;
     472        -webkit-border-radius: 2px;
    472473        border-radius: 2px;
    473474}
     
    527528#customize-control-header_image .random.placeholder {
    528529        cursor: pointer;
     530        -webkit-border-radius: 2px;
    529531        border-radius: 2px;
    530532        height: 40px;
     
    537539#customize-control-header_image .placeholder:hover .dice {
    538540        -webkit-animation: dice-color-change 3s infinite;
    539         -moz-animation: dice-color-change 3s infinite;
    540541        -ms-animation: dice-color-change 3s infinite;
    541542        animation: dice-color-change 3s infinite;
     
    549550}
    550551
    551 @-moz-keyframes dice-color-change {
    552         0% { color: #d4b146; }
    553         50% { color: #ef54b0; }
    554         75% { color: #7190d3; }
    555         100% { color: #d4b146; }
    556 }
    557 
    558552@-ms-keyframes dice-color-change {
    559553        0% { color: #d4b146; }
     
    599593#customize-control-header_image img {
    600594        width: 100%;
     595        -webkit-border-radius: 2px;
    601596        border-radius: 2px;
    602597}
  • trunk/src/wp-admin/css/customize-widgets.css

    r27702 r27790  
    315315        -ms-user-select: none;
    316316        user-select: none;
    317         -moz-outline: none;
    318317        outline: none;
    319318}
  • trunk/src/wp-admin/css/themes.css

    r27774 r27790  
    10681068.theme-navigation {
    10691069        background: #fff;
     1070        -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    10701071        box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
     1072        -webkit-box-sizing: border-box;
    10711073        -moz-box-sizing: border-box;
    10721074        box-sizing: border-box;
     
    10911093}
    10921094.upload-theme {
     1095        -webkit-box-sizing: border-box;
    10931096        -moz-box-sizing: border-box;
    10941097        box-sizing: border-box;
     
    11391142        margin: 0 10px;
    11401143        padding: 15px 0;
    1141         -moz-transition: border-color .1s ease-in;
    11421144        -webkit-transition: border-color .1s ease-in;
     1145        transition: border-color .1s ease-in;
    11431146}
    11441147.theme-section.current,
     
    11561159        margin: 0 10px;
    11571160        padding: 4px 6px;
    1158         -moz-transition: color .1s ease-in, background .1s ease-in;
    11591161        -webkit-transition: color .1s ease-in, background .1s ease-in;
    11601162        transition: color .1s ease-in, background .1s ease-in;
     
    11631165body.more-filters-opened .more-filters:before {
    11641166        background: rgb(46, 162, 204);
     1167        -webkit-border-radius: 2px;
    11651168        border-radius: 2px;
    11661169        border: none;
     
    11921195        font-style: normal;
    11931196        vertical-align: top;
    1194         -moz-transition: color .1s ease-in 0;
    11951197        -webkit-transition: color .1s ease-in 0;
    11961198        transition: color .1s ease-in 0;
     
    12111213}
    12121214.more-filters-container .filters-group {
     1215        -webkit-box-sizing: border-box;
    12131216        -moz-box-sizing: border-box;
    12141217        box-sizing: border-box;
  • trunk/src/wp-includes/css/editor.css

    r27778 r27790  
    198198        background-image: -webkit-gradient(linear, left bottom, left top, from(#f6f6f6), to(#e3e3e3));
    199199        background-image: -webkit-linear-gradient(bottom, #f6f6f6, #e3e3e3);
    200         background-image:    -moz-linear-gradient(bottom, #f6f6f6, #e3e3e3);
    201         background-image:      -o-linear-gradient(bottom, #f6f6f6, #e3e3e3);
    202200        background-image: linear-gradient(to top, #f6f6f6, #e3e3e3);
    203201}
     
    934932        left: 50%;
    935933        z-index: 100105;
     934        -webkit-transition: height 0.2s, margin-top 0.2s;
    936935        transition: height 0.2s, margin-top 0.2s;
    937936}
     
    11541153        display: inline-block;
    11551154        width: 80%;
     1155        width: -webkit-calc(100% - 68px);
    11561156        width: calc(100% - 68px);
    11571157}
     
    12441244@media screen and ( max-height: 520px ) {
    12451245        #wp-link-wrap {
     1246                -webkit-transition: none;
    12461247                transition: none;
    12471248        }
     
    12731274        #link-selector {
    12741275                overflow: auto;
     1276                height: -webkit-calc(100% - 92px);
    12751277                height: calc(100% - 92px);
    12761278                padding-bottom: 2px;
Note: See TracChangeset for help on using the changeset viewer.