Open
Conversation
ce821f4 to
dcc1a5f
Compare
Contributor
Author
Contributor
dcc1a5f to
564e22a
Compare
dce8b6a to
564e22a
Compare
Contributor
Author
As discussed offline we will not be limiting |
sukhwinder33445
requested changes
Jul 24, 2023
Comment on lines
45
to
50
| Html::tag( | ||
| 'a', | ||
| ['href' => $bpUrl], | ||
| HtmlElement::create('span', ['class' => 'text no-wrap', 'title' => $bp->getTitle()], $bp->getTitle()) | ||
| ) |
Contributor
There was a problem hiding this comment.
The span is not really required here.
Please add as following:
Suggested change
| Html::tag( | |
| 'a', | |
| ['href' => $bpUrl], | |
| HtmlElement::create('span', ['class' => 'text no-wrap', 'title' => $bp->getTitle()], $bp->getTitle()) | |
| ) | |
| Html::tag('a', | |
| ['href' => $bpUrl, 'class' => ['text', 'no-wrap'], 'title' => $bp->getTitle()]], | |
| $bp->getTitle() | |
| ) |
- And you do not need the new classes, add the properties to anchor tag.
Contributor
Author
There was a problem hiding this comment.
For breadcrumbs the text is wrapped with span because overflow:hidden will also hide ::before and ::after content of anchor tag, that means the arrows of breadcrumbs will be hidden. But it makes sense not to wrap the text in node tiles.
564e22a to
d27ad95
Compare
Contributor
Contributor
Author
d27ad95 to
66f97d4
Compare
Contributor
|
LGTM 🎉 |
sukhwinder33445
previously approved these changes
Jul 28, 2023
66f97d4 to
33e415c
Compare
438395f to
ec53c8a
Compare
Member
|
Am I the only one who has a problem with the overflow in the tree view ??? Overtaking.. |
nilmerg
requested changes
Aug 8, 2023
ec53c8a to
33e415c
Compare
33e415c to
ec53c8a
Compare
dacaae9 to
20ac992
Compare
20ac992 to
b50285b
Compare
Member
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.






fixes #285
requires Icinga/ipl-web#182