Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #20570


Ignore:
Timestamp:
04/29/2012 04:30:16 PM (12 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20570 – Description

    initial v1  
    33Some of the changes being made are ...
    44
    5 Properly intenting top: left: right: bottom: attributes two tabs when following a position:absolute position:fixed or position:relative declaration
    6 Alphabetizing css properties
    7 Removing unnecessary browser prefixes
    8 Placing browser prefixed css properties before the non-browser prefixed versions
    9 Removing extraneous spaces
    10 Applying a consistent ordering of browser-prefixed properties (based on length of prefix to get an aesthetically pleasing diagonal line, rather than jagged, inconsistent line endings -- yes, I know it's silly, but it's better than randomness, and alphabetical isn't as useful)
    11 Applying a uniform method to attribute selectors and url references by wrapping double-quotes around the values (there was no prior standard and a motley assortment of usages)
    12 Changing colors to 3-character shorthand ( 888888 becomes 888 )
    13 Changing colors to lower case ( EEE becomes eee )
     5* Properly intenting top: left: right: bottom: attributes two tabs when following a position:absolute position:fixed or position:relative declaration
     6* Alphabetizing css properties
     7* Removing unnecessary browser prefixes
     8* Placing browser prefixed css properties before the non-browser prefixed versions
     9* Removing extraneous spaces
     10* Applying a consistent ordering of browser-prefixed properties (based on length of prefix to get an aesthetically pleasing diagonal line, rather than jagged, inconsistent line endings -- yes, I know it's silly, but it's better than randomness, and alphabetical isn't as useful)
     11* Applying a uniform method to attribute selectors and url references by wrapping double-quotes around the values (there was no prior standard and a motley assortment of usages)
     12* Changing colors to 3-character shorthand ( 888888 becomes 888 )
     13* Changing colors to lower case ( EEE becomes eee )
    1414
    1515and probably a couple others that aren't coming to mind right now.