Making WordPress.org

Changeset 3538


Ignore:
Timestamp:
06/22/2016 10:48:47 AM (8 years ago)
Author:
obenland
Message:

Plugin Directory: Show search button on front page.

See #1719.

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

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style-rtl.css

    r3532 r3538  
    18421842.home .site-header {
    18431843  padding: 1.5625rem 1.143rem;
     1844  text-align: center;
    18441845}
    18451846
     
    18481849  font-size: 61.03515625px;
    18491850  font-size: 3.8146972656rem;
     1851  margin: 32px 0 16px;
    18501852  margin: 2rem 0 1rem;
    1851   text-align: center;
    18521853}
    18531854
    18541855.home .site-header .search-form {
    1855   display: inherit;
     1856  margin-bottom: 32px;
    18561857  margin-bottom: 2rem;
     1858  position: relative;
     1859  width: initial;
    18571860}
    18581861
     
    18601863  border: none;
    18611864  border-radius: 0;
     1865  box-shadow: none;
    18621866  display: block;
    18631867  font-size: inherit;
    18641868  margin: 0 auto;
    18651869  max-width: 100%;
     1870  padding: 8px;
    18661871  padding: 0.5rem;
    18671872  width: 22.7373675443rem;
     
    18691874
    18701875.home .site-header .search-form .button-search {
    1871   display: none;
     1876  background: transparent;
     1877  border: none;
     1878  box-shadow: none;
     1879  color: #32373c;
     1880  height: 45px;
     1881  padding: 8px 16px;
     1882  padding: 0.5rem 1rem;
     1883  position: absolute;
     1884  left: 0;
     1885  text-shadow: none;
     1886  top: 0;
     1887}
     1888
     1889.home .site-header .search-form .button-search:active {
     1890  background: transparent;
     1891  border: none;
     1892  transform: none;
    18721893}
    18731894
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style.css

    r3532 r3538  
    18421842.home .site-header {
    18431843  padding: 1.5625rem 1.143rem;
     1844  text-align: center;
    18441845}
    18451846
     
    18481849  font-size: 61.03515625px;
    18491850  font-size: 3.8146972656rem;
     1851  margin: 32px 0 16px;
    18501852  margin: 2rem 0 1rem;
    1851   text-align: center;
    18521853}
    18531854
    18541855.home .site-header .search-form {
    1855   display: inherit;
     1856  margin-bottom: 32px;
    18561857  margin-bottom: 2rem;
     1858  position: relative;
     1859  width: initial;
    18571860}
    18581861
     
    18601863  border: none;
    18611864  border-radius: 0;
     1865  box-shadow: none;
    18621866  display: block;
    18631867  font-size: inherit;
    18641868  margin: 0 auto;
    18651869  max-width: 100%;
     1870  padding: 8px;
    18661871  padding: 0.5rem;
    18671872  width: 22.7373675443rem;
     
    18691874
    18701875.home .site-header .search-form .button-search {
    1871   display: none;
     1876  background: transparent;
     1877  border: none;
     1878  box-shadow: none;
     1879  color: #32373c;
     1880  height: 45px;
     1881  padding: 8px 16px;
     1882  padding: 0.5rem 1rem;
     1883  position: absolute;
     1884  right: 0;
     1885  text-shadow: none;
     1886  top: 0;
     1887}
     1888
     1889.home .site-header .search-form .button-search:active {
     1890  background: transparent;
     1891  border: none;
     1892  transform: none;
    18721893}
    18731894
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/site/_header.scss

    r3532 r3538  
    166166    .home & {
    167167        padding: ms(4) ms(1);
     168        text-align: center;
    168169
    169170        .site-title {
    170171            display: inherit;
    171172            @include font-size( ms-unitless( ms(12) ) );
     173            margin: 32px 0 16px;
    172174            margin: 2rem 0 1rem;
    173             text-align: center;
    174175        }
    175176
    176177        .search-form {
    177             display: inherit;
     178            margin-bottom: 32px;
    178179            margin-bottom: 2rem;
     180            position: relative;
     181            width: initial;
    179182
    180183            .search-field {
    181184                border: none;
    182185                border-radius: 0;
     186                box-shadow: none;
    183187                display: block;
    184188                font-size: inherit;
    185189                margin: 0 auto;
    186190                max-width: 100%;
     191                padding: 8px;
    187192                padding: 0.5rem;
    188193                width: ms(28);
     
    190195
    191196            .button-search {
    192                 display: none;
     197                background: transparent;
     198                border: none;
     199                box-shadow: none;
     200                color: $color__text-input;
     201                height: 45px;
     202                padding: 8px 16px;
     203                padding: 0.5rem 1rem;
     204                position: absolute;
     205                right: 0;
     206                text-shadow: none;
     207                top: 0;
     208
     209                &:active {
     210                    background: transparent;
     211                    border: none;
     212                    transform: none;
     213                }
    193214            }
    194215        }
Note: See TracChangeset for help on using the changeset viewer.