Make WordPress Core

Ticket #24290: 24290.3.diff

File 24290.3.diff, 21.1 KB (added by aaroncampbell, 12 years ago)

Cleaned up to treat pngs as binary

  • wp-admin/css/colors-fresh.css

     
    13541354
    13551355/* end screen icons */
    13561356
     1357/* Post format icons */
     1358
     1359a.post-state-format {
     1360        background-image: url(../images/post-formats.png);
     1361}
     1362
     1363/* 16px */
     1364
     1365.post-format-change span.icon.wp-format-standard,
     1366.post-format-change span.icon.wp-format-image,
     1367.post-format-change span.icon.wp-format-gallery,
     1368.post-format-change span.icon.wp-format-audio,
     1369.post-format-change span.icon.wp-format-video,
     1370.post-format-change span.icon.wp-format-chat,
     1371.post-format-change span.icon.wp-format-status,
     1372.post-format-change span.icon.wp-format-aside,
     1373.post-format-change span.icon.wp-format-quote,
     1374.post-format-change span.icon.wp-format-link {
     1375        background: url(../images/post-formats.png) no-repeat;
     1376}
     1377
     1378.post-format-change span.icon.wp-format-standard {
     1379        background-position: -8px -8px;
     1380}
     1381
     1382.post-format-change span.icon.wp-format-image {
     1383        background-position: -40px -8px;
     1384}
     1385
     1386.post-format-change span.icon.wp-format-gallery {
     1387        background-position: -72px -8px;
     1388}
     1389
     1390.post-format-change span.icon.wp-format-audio {
     1391        background-position: -104px -8px;
     1392}
     1393
     1394.post-format-change span.icon.wp-format-video {
     1395        background-position: -136px -8px;
     1396}
     1397
     1398.post-format-change span.icon.wp-format-chat {
     1399        background-position: -168px -8px;
     1400}
     1401
     1402.post-format-change span.icon.wp-format-status {
     1403        background-position: -200px -8px;
     1404}
     1405
     1406.post-format-change span.icon.wp-format-aside {
     1407        background-position: -232px -8px;
     1408}
     1409
     1410.post-format-change span.icon.wp-format-quote {
     1411        background-position: -264px -8px;
     1412}
     1413
     1414.post-format-change span.icon.wp-format-link {
     1415        background-position: -296px -8px;
     1416}
     1417
     1418/* 32px */
     1419
     1420#icon-edit.wp-format-standard,
     1421.post-format-options .standard,
     1422#icon-edit.wp-format-image,
     1423.post-format-options .image,
     1424#icon-edit.wp-format-gallery,
     1425.post-format-options .gallery,
     1426#icon-edit.wp-format-audio,
     1427.post-format-options .audio,
     1428#icon-edit.wp-format-video,
     1429.post-format-options .video,
     1430#icon-edit.wp-format-chat,
     1431.post-format-options .chat,
     1432#icon-edit.wp-format-status,
     1433.post-format-options .status,
     1434#icon-edit.wp-format-aside,
     1435.post-format-options .aside,
     1436#icon-edit.wp-format-quote,
     1437.post-format-options .quote,
     1438#icon-edit.wp-format-link,
     1439.post-format-options .link {
     1440        background: url(../images/post-formats32.png) no-repeat;
     1441}
     1442
     1443
     1444#icon-edit.wp-format-standard,
     1445.post-format-options .standard {
     1446        background-position: -16px -18px;
     1447}
     1448
     1449#icon-edit.wp-format-image,
     1450.post-format-options .image {
     1451        background-position: -80px -16px;
     1452}
     1453
     1454#icon-edit.wp-format-gallery,
     1455.post-format-options .gallery {
     1456        background-position: -144px -16px;
     1457}
     1458
     1459#icon-edit.wp-format-audio,
     1460.post-format-options .audio {
     1461        background-position: -208px -16px;
     1462}
     1463
     1464#icon-edit.wp-format-video,
     1465.post-format-options .video {
     1466        background-position: -272px -16px;
     1467}
     1468
     1469#icon-edit.wp-format-chat,
     1470.post-format-options .chat {
     1471        background-position: -336px -17px;
     1472}
     1473
     1474#icon-edit.wp-format-status,
     1475.post-format-options .status {
     1476        background-position: -402px -16px;
     1477}
     1478
     1479#icon-edit.wp-format-aside,
     1480.post-format-options .aside {
     1481        background-position: -466px -16px;
     1482}
     1483
     1484#icon-edit.wp-format-quote,
     1485.post-format-options .quote {
     1486        background-position: -527px -17px;
     1487}
     1488
     1489#icon-edit.wp-format-link,
     1490.post-format-options .link {
     1491        background-position: -592px -16px;
     1492}
     1493
     1494/* Responsive post formats */
     1495
     1496@media only screen and (max-width: 782px) {
     1497
     1498        .post-format-options .standard,
     1499        .post-format-options .image,
     1500        .post-format-options .gallery,
     1501        .post-format-options .audio,
     1502        .post-format-options .video,
     1503        .post-format-options .chat,
     1504        .post-format-options .status,
     1505        .post-format-options .aside,
     1506        .post-format-options .quote,
     1507        .post-format-options .link {
     1508                background: url(../images/post-formats.png) no-repeat;
     1509        }
     1510
     1511        .post-format-options .standard {
     1512                background-position: -8px -8px;
     1513        }
     1514
     1515        .post-format-options .image {
     1516                background-position: -40px -8px;
     1517        }
     1518
     1519        .post-format-options .gallery {
     1520                background-position: -72px -8px;
     1521        }
     1522
     1523        .post-format-options .audio {
     1524                background-position: -104px -8px;
     1525        }
     1526
     1527        .post-format-options .video {
     1528                background-position: -136px -8px;
     1529        }
     1530
     1531        .post-format-options .chat {
     1532                background-position: -168px -8px;
     1533        }
     1534
     1535        .post-format-options .status {
     1536                background-position: -200px -8px;
     1537        }
     1538
     1539        .post-format-options .aside {
     1540                background-position: -232px -8px;
     1541        }
     1542
     1543        .post-format-options .quote {
     1544                background-position: -264px -8px;
     1545        }
     1546
     1547        .post-format-options .link {
     1548                background-position: -296px -8px;
     1549        }
     1550}
     1551
    13571552/* Diff */
    13581553table.diff .diff-deletedline {
    13591554        background-color: #fdd;
     
    21682363                background-image: url('../images/wp-logo-2x.png?ver=20120916');
    21692364                background-size: 16px auto;
    21702365        }
     2366       
     2367        .post-format-change span.icon.wp-format-standard,
     2368        .post-format-change span.icon.wp-format-image,
     2369        .post-format-change span.icon.wp-format-gallery,
     2370        .post-format-change span.icon.wp-format-audio,
     2371        .post-format-change span.icon.wp-format-video,
     2372        .post-format-change span.icon.wp-format-chat,
     2373        .post-format-change span.icon.wp-format-status,
     2374        .post-format-change span.icon.wp-format-aside,
     2375        .post-format-change span.icon.wp-format-quote,
     2376        .post-format-change span.icon.wp-format-link,
     2377        a.post-state-format {
     2378                background-image: url(../images/post-formats32.png);
     2379                background-size: 640px 64px;
     2380        }
     2381       
     2382        #icon-edit.wp-format-standard,
     2383        .post-format-options .standard,
     2384        #icon-edit.wp-format-image,
     2385        .post-format-options .image,
     2386        #icon-edit.wp-format-gallery,
     2387        .post-format-options .gallery,
     2388        #icon-edit.wp-format-audio,
     2389        .post-format-options .audio,
     2390        #icon-edit.wp-format-video,
     2391        .post-format-options .video,
     2392        #icon-edit.wp-format-chat,
     2393        .post-format-options .chat,
     2394        #icon-edit.wp-format-status,
     2395        .post-format-options .status,
     2396        #icon-edit.wp-format-aside,
     2397        .post-format-options .aside,
     2398        #icon-edit.wp-format-quote,
     2399        .post-format-options .quote,
     2400        #icon-edit.wp-format-link,
     2401        .post-format-options .link {
     2402                background: url(../images/post-formats64.png) no-repeat;
     2403                background-size: 872px 96px;
     2404        }
    21712405
    21722406}
     2407
     2408@media
     2409  (-o-min-device-pixel-ratio: 5/4) and (max-width: 782px),
     2410  (-webkit-min-device-pixel-ratio: 1.25) and (max-width: 782px),
     2411  (min-resolution: 120dpi) and (max-width: 782px) {
     2412        .post-format-options .standard,
     2413        .post-format-options .image,
     2414        .post-format-options .gallery,
     2415        .post-format-options .audio,
     2416        .post-format-options .video,
     2417        .post-format-options .chat,
     2418        .post-format-options .status,
     2419        .post-format-options .aside,
     2420        .post-format-options .quote,
     2421        .post-format-options .link {
     2422                background: url(../images/post-formats32.png) no-repeat;
     2423                background-size: 640px 64px;
     2424        }
     2425}
  • wp-admin/css/wp-admin.css

     
    26982698        height: 16px;
    26992699        width: 16px;
    27002700        margin-right: 5px;
    2701         background-image: url(../images/post-formats.png);
    27022701        background-repeat: no-repeat;
    27032702        text-indent: -999em;
    27042703}
     
    41644163        min-height: 97px;
    41654164}
    41664165
    4167 body.wp-format-standard #icon-edit,
    4168 .post-format-options .standard {
    4169         background: url(../images/post-formats32.png) no-repeat -3px -4px;
    4170 }
    4171 
    4172 body.wp-format-image #icon-edit,
    4173 .post-format-options .image {
    4174         background: url(../images/post-formats32.png) no-repeat  -43px -4px;
    4175 }
    4176 
    4177 body.wp-format-gallery #icon-edit,
    4178 .post-format-options .gallery {
    4179         background: url(../images/post-formats32.png) no-repeat -83px -4px;
    4180 }
    4181 
    4182 body.wp-format-audio #icon-edit,
    4183 .post-format-options .audio {
    4184         background: url(../images/post-formats32.png) no-repeat -123px -4px;
    4185 }
    4186 
    4187 body.wp-format-video #icon-edit,
    4188 .post-format-options .video {
    4189         background: url(../images/post-formats32.png) no-repeat -163px -4px;
    4190 }
    4191 
    4192 body.wp-format-chat #icon-edit,
    4193 .post-format-options .chat {
    4194         background: url(../images/post-formats32.png) no-repeat -202px -4px;
    4195 }
    4196 
    4197 body.wp-format-status #icon-edit,
    4198 .post-format-options .status {
    4199         background: url(../images/post-formats32.png) no-repeat -242px -4px;
    4200 }
    4201 
    4202 body.wp-format-aside #icon-edit,
    4203 .post-format-options .aside {
    4204         background: url(../images/post-formats32.png) no-repeat -282px -4px;
    4205 }
    4206 
    4207 body.wp-format-quote #icon-edit,
    4208 .post-format-options .quote {
    4209         background: url(../images/post-formats32.png) no-repeat -322px -4px;
    4210 }
    4211 
    4212 body.wp-format-link #icon-edit,
    4213 .post-format-options .link {
    4214         background: url(../images/post-formats32.png) no-repeat -362px -4px;
    4215 }
    4216 
    42174166.post-format-description {
    42184167        color: #666;
    42194168        font-size: 12px;
     
    42804229        width: 16px;
    42814230}
    42824231
    4283 .post-format-change span.icon.wp-format-standard {
    4284         background: url(../images/post-formats.png) no-repeat -8px -8px;
    4285 }
    4286 
    4287 .post-format-change span.icon.wp-format-image {
    4288         background: url(../images/post-formats.png) no-repeat -40px -8px;
    4289 }
    4290 
    4291 .post-format-change span.icon.wp-format-gallery {
    4292         background: url(../images/post-formats.png) no-repeat -72px -8px;
    4293 }
    4294 
    4295 .post-format-change span.icon.wp-format-audio {
    4296         background: url(../images/post-formats.png) no-repeat -104px -8px;
    4297 }
    4298 
    4299 .post-format-change span.icon.wp-format-video {
    4300         background: url(../images/post-formats.png) no-repeat -136px -8px;
    4301 }
    4302 
    4303 .post-format-change span.icon.wp-format-chat {
    4304         background: url(../images/post-formats.png) no-repeat -168px -8px;
    4305 }
    4306 
    4307 .post-format-change span.icon.wp-format-status {
    4308         background: url(../images/post-formats.png) no-repeat -200px -8px;
    4309 }
    4310 
    4311 .post-format-change span.icon.wp-format-aside {
    4312         background: url(../images/post-formats.png) no-repeat -232px -8px;
    4313 }
    4314 
    4315 .post-format-change span.icon.wp-format-quote {
    4316         background: url(../images/post-formats.png) no-repeat -264px -8px;
    4317 }
    4318 
    4319 .post-format-change span.icon.wp-format-link {
    4320         background: url(../images/post-formats.png) no-repeat -296px -8px;
    4321 }
    4322 
    4323 .post-format-change a {
    4324         font-size: 12px;
    4325 }
    4326 
    43274232@media only screen and (max-width: 782px) {
    43284233        .post-format-options a {
    43294234                margin-right: 19px;
     
    43344239                width: 16px;
    43354240        }
    43364241
    4337         .post-format-options .standard {
    4338                 background: url(../images/post-formats.png) no-repeat -8px -8px;
    4339         }
    4340 
    4341         .post-format-options .image {
    4342                 background: url(../images/post-formats.png) no-repeat -40px -8px;
    4343         }
    4344 
    4345         .post-format-options .gallery {
    4346                 background: url(../images/post-formats.png) no-repeat -72px -8px;
    4347         }
    4348 
    4349         .post-format-options .audio {
    4350                 background: url(../images/post-formats.png) no-repeat -104px -8px;
    4351         }
    4352 
    4353         .post-format-options .video {
    4354                 background: url(../images/post-formats.png) no-repeat -136px -8px;
    4355         }
    4356 
    4357         .post-format-options .chat {
    4358                 background: url(../images/post-formats.png) no-repeat -168px -8px;
    4359         }
    4360 
    4361         .post-format-options .status {
    4362                 background: url(../images/post-formats.png) no-repeat -200px -8px;
    4363         }
    4364 
    4365         .post-format-options .aside {
    4366                 background: url(../images/post-formats.png) no-repeat -232px -8px;
    4367         }
    4368 
    4369         .post-format-options .quote {
    4370                 background: url(../images/post-formats.png) no-repeat -264px -8px;
    4371         }
    4372 
    4373         .post-format-options .link {
    4374                 background: url(../images/post-formats.png) no-repeat -296px -8px;
    4375         }
    43764242}
    43774243
    43784244/*------------------------------------------------------------------------------
     
    96059471                background-size: 16px 16px;
    96069472        }
    96079473
    9608         a.post-state-format {
    9609                 background-image: url(../images/post-formats-2x.png);
    9610                 background-size: 320px 32px;
    9611         }
    9612 
    96139474        th .comment-grey-bubble {
    96149475                background-image: url('../images/comment-grey-bubble-2x.png');
    96159476                background-size: 12px 12px;
  • wp-admin/css/colors-classic.css

     
    14601460
    14611461/* end screen icons */
    14621462
     1463/* Post format icons */
     1464
     1465a.post-state-format {
     1466        background-image: url(../images/post-formats-vs.png);
     1467}
     1468
     1469/* 16px */
     1470
     1471.post-format-change span.icon.wp-format-standard,
     1472.post-format-change span.icon.wp-format-image,
     1473.post-format-change span.icon.wp-format-gallery,
     1474.post-format-change span.icon.wp-format-audio,
     1475.post-format-change span.icon.wp-format-video,
     1476.post-format-change span.icon.wp-format-chat,
     1477.post-format-change span.icon.wp-format-status,
     1478.post-format-change span.icon.wp-format-aside,
     1479.post-format-change span.icon.wp-format-quote,
     1480.post-format-change span.icon.wp-format-link {
     1481        background: url(../images/post-formats-vs.png) no-repeat;
     1482}
     1483
     1484.post-format-change span.icon.wp-format-standard {
     1485        background-position: -8px -8px;
     1486}
     1487
     1488.post-format-change span.icon.wp-format-image {
     1489        background-position: -40px -8px;
     1490}
     1491
     1492.post-format-change span.icon.wp-format-gallery {
     1493        background-position: -72px -8px;
     1494}
     1495
     1496.post-format-change span.icon.wp-format-audio {
     1497        background-position: -104px -8px;
     1498}
     1499
     1500.post-format-change span.icon.wp-format-video {
     1501        background-position: -136px -8px;
     1502}
     1503
     1504.post-format-change span.icon.wp-format-chat {
     1505        background-position: -168px -8px;
     1506}
     1507
     1508.post-format-change span.icon.wp-format-status {
     1509        background-position: -200px -8px;
     1510}
     1511
     1512.post-format-change span.icon.wp-format-aside {
     1513        background-position: -232px -8px;
     1514}
     1515
     1516.post-format-change span.icon.wp-format-quote {
     1517        background-position: -264px -8px;
     1518}
     1519
     1520.post-format-change span.icon.wp-format-link {
     1521        background-position: -296px -8px;
     1522}
     1523
     1524/* 32px */
     1525
     1526#icon-edit.wp-format-standard,
     1527.post-format-options .standard,
     1528#icon-edit.wp-format-image,
     1529.post-format-options .image,
     1530#icon-edit.wp-format-gallery,
     1531.post-format-options .gallery,
     1532#icon-edit.wp-format-audio,
     1533.post-format-options .audio,
     1534#icon-edit.wp-format-video,
     1535.post-format-options .video,
     1536#icon-edit.wp-format-chat,
     1537.post-format-options .chat,
     1538#icon-edit.wp-format-status,
     1539.post-format-options .status,
     1540#icon-edit.wp-format-aside,
     1541.post-format-options .aside,
     1542#icon-edit.wp-format-quote,
     1543.post-format-options .quote,
     1544#icon-edit.wp-format-link,
     1545.post-format-options .link {
     1546        background: url(../images/post-formats32-vs.png) no-repeat;
     1547}
     1548
     1549
     1550#icon-edit.wp-format-standard,
     1551.post-format-options .standard {
     1552        background-position: -16px -18px;
     1553}
     1554
     1555#icon-edit.wp-format-image,
     1556.post-format-options .image {
     1557        background-position: -80px -16px;
     1558}
     1559
     1560#icon-edit.wp-format-gallery,
     1561.post-format-options .gallery {
     1562        background-position: -144px -16px;
     1563}
     1564
     1565#icon-edit.wp-format-audio,
     1566.post-format-options .audio {
     1567        background-position: -208px -16px;
     1568}
     1569
     1570#icon-edit.wp-format-video,
     1571.post-format-options .video {
     1572        background-position: -272px -16px;
     1573}
     1574
     1575#icon-edit.wp-format-chat,
     1576.post-format-options .chat {
     1577        background-position: -336px -17px;
     1578}
     1579
     1580#icon-edit.wp-format-status,
     1581.post-format-options .status {
     1582        background-position: -402px -16px;
     1583}
     1584
     1585#icon-edit.wp-format-aside,
     1586.post-format-options .aside {
     1587        background-position: -466px -16px;
     1588}
     1589
     1590#icon-edit.wp-format-quote,
     1591.post-format-options .quote {
     1592        background-position: -527px -17px;
     1593}
     1594
     1595#icon-edit.wp-format-link,
     1596.post-format-options .link {
     1597        background-position: -592px -16px;
     1598}
     1599
     1600/* Responsive post formats */
     1601
     1602@media only screen and (max-width: 782px) {
     1603        .post-format-options .standard,
     1604        .post-format-options .image,
     1605        .post-format-options .gallery,
     1606        .post-format-options .audio,
     1607        .post-format-options .video,
     1608        .post-format-options .chat,
     1609        .post-format-options .status,
     1610        .post-format-options .aside,
     1611        .post-format-options .quote,
     1612        .post-format-options .link {
     1613                background: url(../images/post-formats-vs.png) no-repeat;
     1614        }
     1615
     1616        .post-format-options .standard {
     1617                background-position: -8px -8px;
     1618        }
     1619
     1620        .post-format-options .image {
     1621                background-position: -40px -8px;
     1622        }
     1623
     1624        .post-format-options .gallery {
     1625                background-position: -72px -8px;
     1626        }
     1627
     1628        .post-format-options .audio {
     1629                background-position: -104px -8px;
     1630        }
     1631
     1632        .post-format-options .video {
     1633                background-position: -136px -8px;
     1634        }
     1635
     1636        .post-format-options .chat {
     1637                background-position: -168px -8px;
     1638        }
     1639
     1640        .post-format-options .status {
     1641                background-position: -200px -8px;
     1642        }
     1643
     1644        .post-format-options .aside {
     1645                background-position: -232px -8px;
     1646        }
     1647
     1648        .post-format-options .quote {
     1649                background-position: -264px -8px;
     1650        }
     1651
     1652        .post-format-options .link {
     1653                background-position: -296px -8px;
     1654        }
     1655}
     1656
    14631657/* Diff */
    14641658table.diff .diff-deletedline {
    14651659        background-color: #fdd;
     
    22802474                background-image: url('../images/wp-logo-vs-2x.png?ver=20120916');
    22812475                background-size: 16px auto;
    22822476        }
     2477       
     2478        .post-format-change span.icon.wp-format-standard,
     2479        .post-format-change span.icon.wp-format-image,
     2480        .post-format-change span.icon.wp-format-gallery,
     2481        .post-format-change span.icon.wp-format-audio,
     2482        .post-format-change span.icon.wp-format-video,
     2483        .post-format-change span.icon.wp-format-chat,
     2484        .post-format-change span.icon.wp-format-status,
     2485        .post-format-change span.icon.wp-format-aside,
     2486        .post-format-change span.icon.wp-format-quote,
     2487        .post-format-change span.icon.wp-format-link,
     2488        a.post-state-format {
     2489                background-image: url(../images/post-formats32-vs.png);
     2490                background-size: 640px 64px;
     2491        }
     2492       
     2493        #icon-edit.wp-format-standard,
     2494        .post-format-options .standard,
     2495        #icon-edit.wp-format-image,
     2496        .post-format-options .image,
     2497        #icon-edit.wp-format-gallery,
     2498        .post-format-options .gallery,
     2499        #icon-edit.wp-format-audio,
     2500        .post-format-options .audio,
     2501        #icon-edit.wp-format-video,
     2502        .post-format-options .video,
     2503        #icon-edit.wp-format-chat,
     2504        .post-format-options .chat,
     2505        #icon-edit.wp-format-status,
     2506        .post-format-options .status,
     2507        #icon-edit.wp-format-aside,
     2508        .post-format-options .aside,
     2509        #icon-edit.wp-format-quote,
     2510        .post-format-options .quote,
     2511        #icon-edit.wp-format-link,
     2512        .post-format-options .link {
     2513                background: url(../images/post-formats64-vs.png) no-repeat;
     2514                background-size: 872px 96px;
     2515        }
    22832516
    22842517}
  • wp-admin/images/post-formats64-vs.png

    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • wp-admin/images/post-formats-vs.png

    Property changes on: wp-admin/images/post-formats64-vs.png
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • wp-admin/images/post-formats64.png

    Property changes on: wp-admin/images/post-formats-vs.png
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • wp-admin/images/post-formats32-vs.png

    Property changes on: wp-admin/images/post-formats64.png
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • wp-admin/images/post-formats32.png

    Property changes on: wp-admin/images/post-formats32-vs.png
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream