Projet

Général

Profil

0001-minint-adjust-style-of-textarea-and-select-20751.patch

Frédéric Péters, 18 décembre 2017 10:53

Télécharger (1,18 ko)

Voir les différences:

Subject: [PATCH] minint: adjust style of textarea and select (#20751)

 static/minint/initial.css | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)
static/minint/initial.css
546 546

  
547 547
input[type="email"],
548 548
input[type="text"],
549
input[type="password"] {
549
input[type="password"],
550
textarea,
551
select {
550 552
  border: 1px solid #aaa;
551 553
  padding: 5px 10px;
552 554
  border-radius: 2px;
......
556 558
  -webkit-transition: background 200ms ease-out;
557 559
  -moz-transition: background 200ms ease-out;
558 560
  transition: background 200ms ease-out;
559
  display: block; }
561
  display: block;
562
  background: white; }
560 563

  
561 564
input[type="email"]:focus,
562 565
input[type="text"]:focus,
563
input[type="password"]:focus {
566
input[type="password"]:focus,
567
textarea:focus,
568
select:focus {
564 569
  border: 1px solid #888;
565 570
  background: white; }
566 571

  
567
-