kopia lustrzana https://github.com/wagtail/wagtail
Support text resizing in workflow steps cards (#9525)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>pull/9558/head
rodzic
8d30e716f7
commit
4fbccd1c88
|
@ -31,6 +31,7 @@ Changelog
|
||||||
* Fix: Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
* Fix: Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
||||||
* Fix: Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
* Fix: Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
||||||
* Fix: Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
* Fix: Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
||||||
|
* Fix: Support text resizing in workflow steps cards (Ivy Jeptoo)
|
||||||
* Docs: Add custom permissions section to permissions documentation page (Dan Hayden)
|
* Docs: Add custom permissions section to permissions documentation page (Dan Hayden)
|
||||||
* Docs: Add documentation for how to get started with contributing translations for the Wagtail admin (Ogunbanjo Oluwadamilare)
|
* Docs: Add documentation for how to get started with contributing translations for the Wagtail admin (Ogunbanjo Oluwadamilare)
|
||||||
* Docs: Officially recommend `fnm` over `nvm` in development documentation (LB (Ben) Johnston)
|
* Docs: Officially recommend `fnm` over `nvm` in development documentation (LB (Ben) Johnston)
|
||||||
|
@ -69,6 +70,7 @@ Changelog
|
||||||
* Fix: Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
* Fix: Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
||||||
* Fix: Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
* Fix: Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
||||||
* Fix: Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
* Fix: Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
||||||
|
* Fix: Support text resizing in workflow steps cards (Ivy Jeptoo)
|
||||||
|
|
||||||
|
|
||||||
4.1.1 (11.11.2022)
|
4.1.1 (11.11.2022)
|
||||||
|
|
|
@ -671,6 +671,7 @@ Contributors
|
||||||
* Mark McOsker
|
* Mark McOsker
|
||||||
* Benita Anawonah
|
* Benita Anawonah
|
||||||
* Anisha Singh
|
* Anisha Singh
|
||||||
|
* Ivy Jeptoo
|
||||||
|
|
||||||
Translators
|
Translators
|
||||||
===========
|
===========
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
border: 2px solid theme('colors.secondary.100');
|
border: 2px solid theme('colors.secondary.100');
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: $color-teal;
|
color: $color-teal;
|
||||||
width: $task-width;
|
min-width: $task-width;
|
||||||
height: $task-height;
|
height: $task-height;
|
||||||
margin: 7px;
|
margin: 7px;
|
||||||
padding-inline-start: 9px;
|
padding-inline-start: 9px;
|
||||||
|
@ -18,12 +18,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&__step {
|
&__step {
|
||||||
font-size: 10px;
|
font-size: 0.625rem;
|
||||||
margin-top: 3px;
|
margin-top: 0.1875rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__name {
|
&__name {
|
||||||
font-size: 16px;
|
font-size: 1rem;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
|
|
|
@ -19,3 +19,4 @@ depth: 1
|
||||||
* Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
* Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
||||||
* Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
* Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
||||||
* Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
* Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
||||||
|
* Support text resizing in workflow steps cards (Ivy Jeptoo)
|
||||||
|
|
|
@ -43,6 +43,7 @@ depth: 1
|
||||||
* Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
* Allow button labels to wrap onto two lines in dropdown buttons (Coen van der Kamp)
|
||||||
* Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
* Allow both horizontal and vertical manual resizing of TextFields (Anisha Singh)
|
||||||
* Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
* Move DateField, DateTimeField, TimeField comment buttons to be right next to the fields (Theresa Okoro)
|
||||||
|
* Support text resizing in workflow steps cards (Ivy Jeptoo)
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue