Changeset 3538
- Timestamp:
- 06/22/2016 10:48:47 AM (8 years ago)
- 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 1842 1842 .home .site-header { 1843 1843 padding: 1.5625rem 1.143rem; 1844 text-align: center; 1844 1845 } 1845 1846 … … 1848 1849 font-size: 61.03515625px; 1849 1850 font-size: 3.8146972656rem; 1851 margin: 32px 0 16px; 1850 1852 margin: 2rem 0 1rem; 1851 text-align: center;1852 1853 } 1853 1854 1854 1855 .home .site-header .search-form { 1855 display: inherit;1856 margin-bottom: 32px; 1856 1857 margin-bottom: 2rem; 1858 position: relative; 1859 width: initial; 1857 1860 } 1858 1861 … … 1860 1863 border: none; 1861 1864 border-radius: 0; 1865 box-shadow: none; 1862 1866 display: block; 1863 1867 font-size: inherit; 1864 1868 margin: 0 auto; 1865 1869 max-width: 100%; 1870 padding: 8px; 1866 1871 padding: 0.5rem; 1867 1872 width: 22.7373675443rem; … … 1869 1874 1870 1875 .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; 1872 1893 } 1873 1894 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/css/style.css
r3532 r3538 1842 1842 .home .site-header { 1843 1843 padding: 1.5625rem 1.143rem; 1844 text-align: center; 1844 1845 } 1845 1846 … … 1848 1849 font-size: 61.03515625px; 1849 1850 font-size: 3.8146972656rem; 1851 margin: 32px 0 16px; 1850 1852 margin: 2rem 0 1rem; 1851 text-align: center;1852 1853 } 1853 1854 1854 1855 .home .site-header .search-form { 1855 display: inherit;1856 margin-bottom: 32px; 1856 1857 margin-bottom: 2rem; 1858 position: relative; 1859 width: initial; 1857 1860 } 1858 1861 … … 1860 1863 border: none; 1861 1864 border-radius: 0; 1865 box-shadow: none; 1862 1866 display: block; 1863 1867 font-size: inherit; 1864 1868 margin: 0 auto; 1865 1869 max-width: 100%; 1870 padding: 8px; 1866 1871 padding: 0.5rem; 1867 1872 width: 22.7373675443rem; … … 1869 1874 1870 1875 .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; 1872 1893 } 1873 1894 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/site/_header.scss
r3532 r3538 166 166 .home & { 167 167 padding: ms(4) ms(1); 168 text-align: center; 168 169 169 170 .site-title { 170 171 display: inherit; 171 172 @include font-size( ms-unitless( ms(12) ) ); 173 margin: 32px 0 16px; 172 174 margin: 2rem 0 1rem; 173 text-align: center;174 175 } 175 176 176 177 .search-form { 177 display: inherit;178 margin-bottom: 32px; 178 179 margin-bottom: 2rem; 180 position: relative; 181 width: initial; 179 182 180 183 .search-field { 181 184 border: none; 182 185 border-radius: 0; 186 box-shadow: none; 183 187 display: block; 184 188 font-size: inherit; 185 189 margin: 0 auto; 186 190 max-width: 100%; 191 padding: 8px; 187 192 padding: 0.5rem; 188 193 width: ms(28); … … 190 195 191 196 .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 } 193 214 } 194 215 }
Note: See TracChangeset
for help on using the changeset viewer.