Created HTML CSS Popup#368
Conversation
|
Hey! Congratulations on your PR! 😎😎😎 Let's do some self-checks to fix most common issues and to make some improvements to the code before reviewers put their hands on the code. Go through the requirements/most common mistakes listed/linked below and fix the code as appropriate. If you have any questions to requirements/common mistakes feel free asking them here or in Students' chat. When you genuinely believe you are done put a comment stating that you have completed self-checks and fixed code accordingly. Also, be aware, that if you would silently ignore this recommendation, a mentor can think that you are still working on fixes. And your PR will not be reviewed. 😒 Please, make sure you haven't made common mistakes. Universal recommendations:
Also take a note of the requirements above and follow them in all your future projects. By the way, you may proceed to the next task before this one is reviewed and merged. Sincerely yours, |
|
Hi! Code has checked, and mistakes are fixed. Please, review. |
| <div class="tooltip-item"> | ||
| <a href="#"> | ||
| <div class="tooltip-item-icon"> | ||
| <img src="./icons/calendar.png" width="45" height="45" alt="Calendar"/> |
| <input class="menu-item__input" type="checkbox"/> | ||
| <img class="menu-item-img" src="./icons/popup-button.png" alt="submenu-icon"/> | ||
| <div class="tooltip"> | ||
| <div class="tooltip-items"> |
There was a problem hiding this comment.
If you have a nested navigation use a nested list of links:
<nav>
<ul>
<li><a href="#">Link-1</a></li>
<li><a href="#">Link-2</a></li>
<li><a href="#">Link-3</a></li>
<li><ul>
<li><a href="#"></a>Link-1</li>
<li><a href="#"></a>Link-2</li>
<li><a href="#"></a>Link-3</li>
<li><a href="#"></a>Link-4</li>
</ul></li>
<li><a href="#">Link-5</a></li>
</ul>
</nav>| <li class="menu-item"> | ||
| <div class="menu-item__inner"> | ||
| <input class="menu-item__input" type="checkbox"/> | ||
| <img class="menu-item-img" src="./icons/popup-button.png" alt="submenu-icon"/> |
There was a problem hiding this comment.
Add cursor: pointer to all interactive elements.
| </diV> | ||
| </div> | ||
| <input class="tooltip-more__input hidden" id="even-more-input" type="checkbox"/> | ||
| <label class="tooltip-more-btn hidden more-btn" for="even-more-input">Even more from Kottans</label> |
There was a problem hiding this comment.
Logically it's a link)
| .tooltip-more__input:checked { | ||
| display: block; | ||
| } | ||
| ::-webkit-scrollbar { |
There was a problem hiding this comment.
It's an invalid CSS selector: you can't set pseudoelement from an empty selector.
| <div class="tooltip-item"> | ||
| <a href="#"> | ||
| <div class="tooltip-item-icon"> | ||
| <img src="./icons/mail.png" width="45" height="45" alt="Mail"/> |
There was a problem hiding this comment.
Read this article about handling image aspect ratio.
The highlighted element should be a circle.

There was a problem hiding this comment.
Resolved with "object-fit: contain".
|
This issue has been automatically marked as stale because there were no activity during last 14 days. It will be closed in 7 days if no further activity occurs. Thank you for your contributions. А. Чому так? Б. Що робити, якщо в піарі нема оновлень, оскільки не зрозуміло, що треба зробити? В. А якщо я все зробив(ла) і це ментор не рев'юває мої зміни?
Г. Хіба недостатньо того, що я додав(ла) коміт із змінами? Традиційна пропозиція: задай питання по вищенаписаному в студентському чаті. |
|
@SinchUK did you pushed your changes to this PR?) |
|
No. But I try to make it and my branch was deleted. Then I create new pull
request and push all my code one more time.
#750
чт, 20 жовт. 2022, 20:26 користувач Alexandr ***@***.***>
пише:
… @SinchUK <https://github.com/SinchUK> did you pushed your changes to this
PR?)
—
Reply to this email directly, view it on GitHub
<#368 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEIXMMW5PQE7F6XLJLDKETDWEF6CVANCNFSM6AAAAAAQA6OU2U>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
|
@A-Ostrovnyy I don |




HTML & CSS Popup
Demo |
Code base
The code is submitted in a dedicated feature branch.
Only code files are submitted.
Please, review.