Inherit relevant border-radius from the parent

pull/2274/merge
Janneke Janssen 2016-07-04 19:31:41 +02:00 zatwierdzone przez Matt Westcott
rodzic 9b6cdf41f4
commit 9f72e12159
3 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -25,6 +25,7 @@ Changelog
* Fix: "Remove link" button in rich text editor didn't trigger "edit" event, leading to the change to sometimes not be persisted (Matt Westcott)
* Fix: `RichText` values can now be correctly evaluated as booleans (Mike Dingjan, Bertrand Bordage)
* Fix: wagtailforms no longer assumes an .html extension when determining the landing page template filename (kakulukia)
* Fix: Fixed styling glitch on bi-colour icon + text buttons in Chrome (Janneke Janssen)
1.5.2 (08.06.2016)

Wyświetl plik

@ -45,6 +45,7 @@ Bug fixes
* "Remove link" button in rich text editor didn't trigger "edit" event, leading to the change to sometimes not be persisted (Matt Westcott)
* ``RichText`` values can now be correctly evaluated as booleans (Mike Dingjan, Bertrand Bordage)
* wagtailforms no longer assumes an .html extension when determining the landing page template filename (kakulukia)
* Fixed styling glitch on bi-colour icon + text buttons in Chrome (Janneke Janssen)
Upgrade considerations

Wyświetl plik

@ -309,6 +309,8 @@ input[type=checkbox]:checked:before {
text-align: center;
background-color: rgba(0, 0, 0, 0.2);
display: block;
border-top-left-radius: inherit;
border-bottom-left-radius: inherit;
}
}