Make WordPress Core

Ticket #20579: 20575.5.twentyeleven.diff

File 20575.5.twentyeleven.diff, 1.4 KB (added by lancewillett, 12 years ago)
  • wp-content/themes/twentyeleven/style.css

     
    438438/* Forms */
    439439input[type=text],
    440440input[type=password],
     441input[type=email],
     442input[type=url],
     443input[type=number],
    441444textarea {
    442445        background: #fafafa;
    443446        -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
     
    447450        color: #888;
    448451}
    449452input[type=text]:focus,
     453input[type=password]:focus,
     454input[type=email]:focus,
     455input[type=url]:focus,
     456input[type=number]:focus,
    450457textarea:focus {
    451458        color: #373737;
    452459}
     
    454461        padding-left: 3px;
    455462        width: 98%;
    456463}
    457 input[type=text] {
     464input[type=text],
     465input[type=password],
     466input[type=email],
     467input[type=url],
     468input[type=number] {
    458469        padding: 3px;
    459470}
    460471input#s {
  • wp-content/themes/twentyeleven/colors/dark.css

     
    3535        background: #00063f;
    3636}
    3737input[type=text],
    38 .post-password-required input[type=password],
     38input[type=password],
     39input[type=email],
     40input[type=url],
     41input[type=number],
    3942textarea {
    4043        border: 1px solid #222;
    4144}
    42 input[type=text]:focus,
    43 textarea:focus {
    44 }
    4545input#s {
    4646        background-color: #ddd;
    4747}