Making WordPress.org

Changeset 3283


Ignore:
Timestamp:
05/31/2016 08:24:29 PM (10 years ago)
Author:
ocean90
Message:

wp4.css: Move some inline CSS from about/stats into wp4.css.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/wp4.css

    r3132 r3283  
    19121912}
    19131913
     1914.wporg-stats-chart path[fill="#cccccc"] {
     1915        fill: #cbcdce;
     1916}
     1917
     1918.wporg-stats-chart path[fill="#0011cc"] {
     1919        fill: #0073aa;
     1920        cursor: pointer;
     1921}
     1922
     1923.wporg-stats-chart path[fill="#0011cc"]:hover {
     1924        fill: #00a0d2;
     1925}
     1926
     1927.wporg-stats-chart text[fill="#0011cc"] {
     1928        fill: #444;
     1929}
     1930
     1931.wporg-stats-chart {
     1932        width: 650px; /* Avoid jumps when the charts are loaded. */
     1933        height: 450px;
     1934        position: relative;
     1935}
     1936
     1937.wporg-stats-chart.loading:before {
     1938        content: '';
     1939        display: block;
     1940        width: 20px;
     1941        height: 20px;
     1942        position: absolute;
     1943        left: 50%;
     1944        top: 50%;
     1945        margin: -10px 0 0 -10px;
     1946        background: url(https://s.w.org/wp-includes/images/spinner.gif) no-repeat center;
     1947        -webkit-background-size: 20px 20px;
     1948        background-size: 20px 20px;
     1949        -webkit-transform: translateZ(0);
     1950        transform: translateZ(0);
     1951}
     1952
     1953@media print,
     1954  (-webkit-min-device-pixel-ratio: 1.25),
     1955  (min-resolution: 120dpi) {
     1956        .wporg-stats-chart.loading:before {
     1957                background-image:url(https://s.w.org/wp-includes/images/spinner-2x.gif)
     1958        }
     1959}
     1960
    19141961/* Responsive styling ---------------------------------- */
    19151962
Note: See TracChangeset for help on using the changeset viewer.