Make WordPress Core

Ticket #20579: 20579.4.patch

File 20579.4.patch, 10.6 KB (added by bpetty, 12 years ago)
  • wp-content/themes/twentyeleven/colors/dark.css

    diff --git wp-content/themes/twentyeleven/colors/dark.css wp-content/themes/twentyeleven/colors/dark.css
    index b9dacce..7265d7b 100644
    abbr, acronym, dfn { 
    3434ins {
    3535        background: #00063f;
    3636}
    37 input[type=text],
    38 .post-password-required input[type=password],
     37input[type="text"],
     38input[type="password"],
     39input[type="date"],
     40input[type="datetime"],
     41input[type="datetime-local"],
     42input[type="email"],
     43input[type="month"],
     44input[type="number"],
     45input[type="search"],
     46input[type="tel"],
     47input[type="time"],
     48input[type="url"],
     49input[type="week"],
    3950textarea {
    4051        border: 1px solid #222;
    4152}
    li.bypostauthor a.comment-reply-link:active { 
    513524        border-color: #2c2c2c;
    514525}
    515526#respond input[type="text"],
     527#respond input[type="password"],
     528#respond input[type="date"],
     529#respond input[type="datetime"],
     530#respond input[type="datetime-local"],
     531#respond input[type="email"],
     532#respond input[type="month"],
     533#respond input[type="number"],
     534#respond input[type="search"],
     535#respond input[type="tel"],
     536#respond input[type="time"],
     537#respond input[type="url"],
     538#respond input[type="week"],
    516539#respond textarea {
    517540        background: #000;
    518541        border: 4px solid #111;
  • wp-content/themes/twentyeleven/editor-style.css

    diff --git wp-content/themes/twentyeleven/editor-style.css wp-content/themes/twentyeleven/editor-style.css
    index 234bb9c..ee86907 100644
    sup { 
    159159sub {
    160160        top: .5ex;
    161161}
    162 input[type=text],
     162input[type="text"],
     163input[type="password"],
     164input[type="date"],
     165input[type="datetime"],
     166input[type="datetime-local"],
     167input[type="email"],
     168input[type="month"],
     169input[type="number"],
     170input[type="search"],
     171input[type="tel"],
     172input[type="time"],
     173input[type="url"],
     174input[type="week"],
    163175textarea {
    164176        background: #fafafa;
    165177        -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    textarea { 
    168180        border: 1px solid #ddd;
    169181        color: #888;
    170182}
    171 input[type=text]:focus,
     183input[type="text"]:focus,
     184input[type="password"]:focus,
     185input[type="date"]:focus,
     186input[type="datetime"]:focus,
     187input[type="datetime-local"]:focus,
     188input[type="email"]:focus,
     189input[type="month"]:focus,
     190input[type="number"]:focus,
     191input[type="search"]:focus,
     192input[type="tel"]:focus,
     193input[type="time"]:focus,
     194input[type="url"]:focus,
     195input[type="week"]:focus,
    172196textarea:focus {
    173197        color: #333;
    174198}
    textarea { 
    176200        padding-left: 3px;
    177201        width: 98%;
    178202}
    179 input[type=text] {
     203input[type="text"],
     204input[type="password"],
     205input[type="date"],
     206input[type="datetime"],
     207input[type="datetime-local"],
     208input[type="email"],
     209input[type="month"],
     210input[type="number"],
     211input[type="search"],
     212input[type="tel"],
     213input[type="time"],
     214input[type="url"],
     215input[type="week"] {
    180216        padding: 3px;
    181217}
    182218
  • wp-content/themes/twentyeleven/style.css

    diff --git wp-content/themes/twentyeleven/style.css wp-content/themes/twentyeleven/style.css
    index 7559198..78088fb 100644
    sub { 
    433433}
    434434
    435435/* Forms */
    436 input[type=text],
    437 input[type=password],
     436input[type="text"],
     437input[type="password"],
     438input[type="date"],
     439input[type="datetime"],
     440input[type="datetime-local"],
     441input[type="email"],
     442input[type="month"],
     443input[type="number"],
     444input[type="search"],
     445input[type="tel"],
     446input[type="time"],
     447input[type="url"],
     448input[type="week"],
    438449textarea {
    439450        background: #fafafa;
    440451        -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
    textarea { 
    443454        border: 1px solid #ddd;
    444455        color: #888;
    445456}
    446 input[type=text]:focus,
     457input[type="text"]:focus,
     458input[type="password"]:focus,
     459input[type="date"]:focus,
     460input[type="datetime"]:focus,
     461input[type="datetime-local"]:focus,
     462input[type="email"]:focus,
     463input[type="month"]:focus,
     464input[type="number"]:focus,
     465input[type="search"]:focus,
     466input[type="tel"]:focus,
     467input[type="time"]:focus,
     468input[type="url"]:focus,
     469input[type="week"]:focus,
    447470textarea:focus {
    448471        color: #373737;
    449472}
    textarea { 
    451474        padding-left: 3px;
    452475        width: 98%;
    453476}
    454 input[type=text] {
     477input[type="text"],
     478input[type="password"],
     479input[type="date"],
     480input[type="datetime"],
     481input[type="datetime-local"],
     482input[type="email"],
     483input[type="month"],
     484input[type="number"],
     485input[type="search"],
     486input[type="tel"],
     487input[type="time"],
     488input[type="url"],
     489input[type="week"] {
    455490        padding: 3px;
    456491}
     492input[type="search"] {
     493        -webkit-appearance: textfield;
     494}
     495input[type="search"]::-webkit-search-decoration {
     496        display: none;
     497}
    457498input#s {
    458499        background: url(images/search.png) no-repeat 5px 6px;
    459500        -moz-border-radius: 2px;
    a.comment-reply-link > span { 
    20712112        width: 68.9%;
    20722113}
    20732114#respond input[type="text"],
     2115#respond input[type="password"],
     2116#respond input[type="date"],
     2117#respond input[type="datetime"],
     2118#respond input[type="datetime-local"],
     2119#respond input[type="email"],
     2120#respond input[type="month"],
     2121#respond input[type="number"],
     2122#respond input[type="search"],
     2123#respond input[type="tel"],
     2124#respond input[type="time"],
     2125#respond input[type="url"],
     2126#respond input[type="week"],
    20742127#respond textarea {
    20752128        background: #fff;
    20762129        border: 4px solid #eee;
    a.comment-reply-link > span { 
    21082161        z-index: 1;
    21092162}
    21102163#respond input[type="text"]:focus,
     2164#respond input[type="password"]:focus,
     2165#respond input[type="date"]:focus,
     2166#respond input[type="datetime"]:focus,
     2167#respond input[type="datetime-local"]:focus,
     2168#respond input[type="email"]:focus,
     2169#respond input[type="month"]:focus,
     2170#respond input[type="number"]:focus,
     2171#respond input[type="search"]:focus,
     2172#respond input[type="tel"]:focus,
     2173#respond input[type="time"]:focus,
     2174#respond input[type="url"]:focus,
     2175#respond input[type="week"]:focus,
    21112176#respond textarea:focus {
    21122177        text-indent: 0;
    21132178        z-index: 1;
    a.comment-reply-link > span { 
    21972262#respond label {
    21982263        line-height: 2.2em;
    21992264}
    2200 #respond input[type=text] {
     2265#respond input[type="text"],
     2266#respond input[type="password"],
     2267#respond input[type="date"],
     2268#respond input[type="datetime"],
     2269#respond input[type="datetime-local"],
     2270#respond input[type="email"],
     2271#respond input[type="month"],
     2272#respond input[type="number"],
     2273#respond input[type="search"],
     2274#respond input[type="tel"],
     2275#respond input[type="time"],
     2276#respond input[type="url"],
     2277#respond input[type="week"] {
    22012278        display: block;
    22022279        height: 24px;
    22032280        width: 75%;
    p.comment-form-comment { 
    24622539                top: 2.2em;
    24632540        }
    24642541        /* Use the available space in the smaller comment form */
    2465         #respond input[type="text"] {
     2542        #respond input[type="text"],
     2543        #respond input[type="password"],
     2544        #respond input[type="date"],
     2545        #respond input[type="datetime"],
     2546        #respond input[type="datetime-local"],
     2547        #respond input[type="email"],
     2548        #respond input[type="month"],
     2549        #respond input[type="number"],
     2550        #respond input[type="search"],
     2551        #respond input[type="tel"],
     2552        #respond input[type="time"],
     2553        #respond input[type="url"],
     2554        #respond input[type="week"] {
    24662555                width: 95%;
    24672556        }
    24682557        #respond .comment-form-author .required,
  • wp-content/themes/twentyten/style.css

    diff --git wp-content/themes/twentyten/style.css wp-content/themes/twentyten/style.css
    index 219ded3..4e5fd0a 100644
    sub { 
    309309        top: .5ex;
    310310}
    311311input[type="text"],
     312input[type="password"],
     313input[type="date"],
     314input[type="datetime"],
     315input[type="datetime-local"],
     316input[type="email"],
     317input[type="month"],
     318input[type="number"],
     319input[type="search"],
     320input[type="tel"],
     321input[type="time"],
     322input[type="url"],
     323input[type="week"],
    312324textarea {
    313325        background: #f9f9f9;
    314326        border: 1px solid #ccc;
    textarea { 
    317329        -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
    318330        padding: 2px;
    319331}
     332input[type="search"] {
     333        -webkit-appearance: textfield;
     334}
     335input[type="search"]::-webkit-search-decoration {
     336        display: none;
     337}
    320338a:link {
    321339        color: #0066cc;
    322340}
  • wp-content/themes/twentytwelve/editor-style.css

    diff --git wp-content/themes/twentytwelve/editor-style.css wp-content/themes/twentytwelve/editor-style.css
    index 6b3ce02..36eee49 100644
    sup { 
    191191sub {
    192192        bottom: -0.25em;
    193193}
    194 input[type="text"] {
     194input[type="text"],
     195input[type="password"],
     196input[type="date"],
     197input[type="datetime"],
     198input[type="datetime-local"],
     199input[type="email"],
     200input[type="month"],
     201input[type="number"],
     202input[type="search"],
     203input[type="tel"],
     204input[type="time"],
     205input[type="url"],
     206input[type="week"] {
    195207        border: 1px solid #ccc;
    196208        border-radius: 3px;
    197209        font-family: inherit;
  • wp-content/themes/twentytwelve/style.css

    diff --git wp-content/themes/twentytwelve/style.css wp-content/themes/twentytwelve/style.css
    index 5382202..2fabd3c 100644
    li.bypostauthor cite span { 
    268268/* Form fields */
    269269input[type="text"],
    270270input[type="password"],
     271input[type="date"],
     272input[type="datetime"],
     273input[type="datetime-local"],
    271274input[type="email"],
     275input[type="month"],
     276input[type="number"],
     277input[type="search"],
     278input[type="tel"],
     279input[type="time"],
    272280input[type="url"],
     281input[type="week"],
    273282textarea {
    274283        padding: 6px;
    275284        padding: 0.428571429rem;
    textarea { 
    277286        border: 1px solid #ccc;
    278287        border-radius: 3px;
    279288}
     289input[type="search"] {
     290        -webkit-appearance: textfield;
     291}
     292input[type="search"]::-webkit-search-decoration {
     293        display: none;
     294}
    280295
    281296/* Responsive images */
    282297.entry-content img,
    a.comment-reply-link:hover { 
    12361251        line-height: 1.714285714;
    12371252}
    12381253#respond form input[type="text"],
     1254#respond form input[type="password"],
     1255#respond form input[type="date"],
     1256#respond form input[type="datetime"],
     1257#respond form input[type="datetime-local"],
     1258#respond form input[type="email"],
     1259#respond form input[type="month"],
     1260#respond form input[type="number"],
     1261#respond form input[type="search"],
     1262#respond form input[type="tel"],
     1263#respond form input[type="time"],
     1264#respond form input[type="url"],
     1265#respond form input[type="week"],
    12391266#respond form textarea {
    12401267        -moz-box-sizing: border-box;
    12411268        box-sizing: border-box;
    img#wpstats { 
    14801507                font-size: 22px;
    14811508                font-size: 1.571428571rem;
    14821509        }
    1483         #respond form input[type="text"] {
     1510        #respond form input[type="text"],
     1511        #respond form input[type="password"],
     1512        #respond form input[type="date"],
     1513        #respond form input[type="datetime"],
     1514        #respond form input[type="datetime-local"],
     1515        #respond form input[type="email"],
     1516        #respond form input[type="month"],
     1517        #respond form input[type="number"],
     1518        #respond form input[type="search"],
     1519        #respond form input[type="tel"],
     1520        #respond form input[type="time"],
     1521        #respond form input[type="url"],
     1522        #respond form input[type="week"] {
    14841523                width: 46.333333333%;
    14851524        }
    14861525        #respond form textarea.blog-textarea {