File tree 5 files changed +3
-23
lines changed
5 files changed +3
-23
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ class Filter extends FocusMixin(LocalizeCoreElement(RtlMixin(LitElement))) {
180
180
display: -webkit-box;
181
181
hyphens: auto;
182
182
-webkit-line-clamp: 2;
183
- word-break: break-word ;
183
+ overflow-wrap: anywhere ;
184
184
}
185
185
186
186
d2l-list-item[selection-disabled] .d2l-filter-dimension-set-value,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class FocusTrap extends FocusMixin(LitElement) {
29
29
display: inline-block;
30
30
}
31
31
:host([hidden]) {
32
- display: hidden ;
32
+ display: none ;
33
33
}
34
34
` ;
35
35
}
Original file line number Diff line number Diff line change @@ -32,28 +32,9 @@ class FormPanelDemo extends LitElement {
32
32
display: none;
33
33
}
34
34
35
- .d2l-form-panel-demo-panel {
36
- background-color: white;
37
- border-radius: 8px;
38
- padding: 20px;
39
- }
40
-
41
35
.d2l-form-panel-demo-container {
42
36
margin-bottom: 10px;
43
37
}
44
-
45
- .d2l-form-panel-demo-header {
46
- align-items: top;
47
- cursor: pointer;
48
- display: flex;
49
- justify-content: space-between;
50
- }
51
-
52
- .d2l-form-panel-demo-text {
53
- align-items: center;
54
- display: flex;
55
- margin: 0;
56
- }
57
38
` ] ;
58
39
}
59
40
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ class FormErrorSummary extends LocalizeCoreElement(RtlMixin(LitElement)) {
26
26
}
27
27
28
28
.d2l-form-error-summary-header {
29
- align-items: top;
30
29
cursor: pointer;
31
30
display: flex;
32
31
justify-content: space-between;
Original file line number Diff line number Diff line change @@ -126,10 +126,10 @@ class InputTextArea extends InputInlineHelpMixin(FocusMixin(LabelledMixin(FormEl
126
126
.d2l-input-textarea-mirror {
127
127
line-height: 1rem;
128
128
overflow: hidden;
129
+ overflow-wrap: anywhere; /* prevent width from growing */
129
130
padding-bottom: 0.5rem;
130
131
padding-top: 0.5rem;
131
132
visibility: hidden;
132
- word-break: break-word; /* prevent width from growing */
133
133
}
134
134
:host([no-padding]) .d2l-input {
135
135
padding-left: 0;
You can’t perform that action at this time.
0 commit comments