Making WordPress.org

Changeset 5762


Ignore:
Timestamp:
08/07/2017 07:06:40 PM (7 years ago)
Author:
danielbachhuber
Message:

devhub/cli: Specialty styling for tables on command pages

See https://github.com/wp-cli/wp-cli/issues/4244

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/scss/main.scss

    r5679 r5762  
    18771877    }
    18781878}
     1879
     1880.single-command #content {
     1881    table {
     1882        border-collapse:collapse;
     1883        border: 1px solid #eee;
     1884        padding:0;
     1885        margin:0 0 ms(0);
     1886        font-size: ms(-2);
     1887        width:100%;
     1888
     1889        thead {
     1890            background: #eee;
     1891            th {
     1892                font-weight: bold;
     1893                padding: .7rem .4rem;
     1894            }
     1895        }
     1896
     1897        th, td {
     1898            padding: .4rem;
     1899            margin:0;
     1900            font-weight:normal;
     1901            text-align:left;
     1902            vertical-align:top;
     1903            border: 1px solid #eee;
     1904        }
     1905
     1906        tbody {
     1907            tr:nth-child(even) {
     1908                background:rgba(0, 0, 0, .025);
     1909            }
     1910        }
     1911    }
     1912}
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/stylesheets/main.css

    r5679 r5762  
    21932193  }
    21942194}
     2195
     2196.single-command #content table {
     2197  border-collapse: collapse;
     2198  border: 1px solid #eee;
     2199  padding: 0;
     2200  margin: 0 0 ms(0);
     2201  font-size: ms(-2);
     2202  width: 100%;
     2203}
     2204
     2205.single-command #content table thead {
     2206  background: #eee;
     2207}
     2208
     2209.single-command #content table thead th {
     2210  font-weight: bold;
     2211  padding: .7rem .4rem;
     2212}
     2213
     2214.single-command #content table th, .single-command #content table td {
     2215  padding: .4rem;
     2216  margin: 0;
     2217  font-weight: normal;
     2218  text-align: left;
     2219  vertical-align: top;
     2220  border: 1px solid #eee;
     2221}
     2222
     2223.single-command #content table tbody tr:nth-child(even) {
     2224  background: rgba(0, 0, 0, 0.025);
     2225}
Note: See TracChangeset for help on using the changeset viewer.