Adds break-avoid to checkbox columns.
This commit is contained in:
parent
9bf4354cdc
commit
eec69df239
|
@ -889,8 +889,11 @@
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
-webkit-break-inside: avoid;
|
||||||
|
break-inside: avoid;
|
||||||
|
|
||||||
.b-checkbox {
|
.b-checkbox {
|
||||||
|
break-inside: avoid;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-height: 1.5em;
|
min-height: 1.5em;
|
||||||
margin-left: 0.7em;
|
margin-left: 0.7em;
|
||||||
|
@ -910,8 +913,12 @@
|
||||||
max-width: calc(100% - 0.5em);
|
max-width: calc(100% - 0.5em);
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
-webkit-break-inside: avoid;
|
||||||
|
break-inside: avoid;
|
||||||
|
|
||||||
.b-checkbox {
|
.b-checkbox {
|
||||||
|
-webkit-break-inside: avoid;
|
||||||
|
break-inside: avoid;
|
||||||
margin-right: 0px;
|
margin-right: 0px;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -835,6 +835,8 @@
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
-webkit-break-inside: avoid;
|
||||||
|
break-inside: avoid;
|
||||||
|
|
||||||
/deep/ .b-checkbox, /deep/ .b-radio {
|
/deep/ .b-checkbox, /deep/ .b-radio {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
@ -870,10 +872,14 @@
|
||||||
max-width: calc(100% - 0.5em);
|
max-width: calc(100% - 0.5em);
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
-webkit-break-inside: avoid;
|
||||||
|
break-inside: avoid;
|
||||||
|
|
||||||
.b-checkbox, .b-radio {
|
.b-checkbox, .b-radio {
|
||||||
margin-right: 0px;
|
margin-right: 0px;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
-webkit-break-inside: avoid;
|
||||||
|
break-inside: avoid;
|
||||||
|
|
||||||
.control-label {
|
.control-label {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
|
|
Loading…
Reference in New Issue