Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TASK-144 dropdown button group styling #104

Merged
merged 6 commits into from
Dec 7, 2020
Merged

TASK-144 dropdown button group styling #104

merged 6 commits into from
Dec 7, 2020

Conversation

Ehevi
Copy link
Collaborator

@Ehevi Ehevi commented Dec 6, 2020

No description provided.

@Qwebeck Qwebeck changed the base branch from develop to TASK-121 December 6, 2020 19:01
Comment on lines 56 to 67
.btn-dropdown {
border-radius: 0px;
&:hover {
cursor: pointer;
font-weight: 600;
box-shadow: 0px 0px;
}
float: left;
clear: left;
padding: 5px 7px 5px;
line-height: 20px;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moim zdaniem, lepiej jest przenieść to bezpośrednio do klasy .dropdown-buttons-container. To ma taką zaletę, że te style są przeznaczone tylko do dropdowna na co wskazuje nazwa btn-dropdown, więc było by fajnie zrobić tak, żeby nie można było tego użyć w jakimś innym miejscu, żeby ktoś przez przypadek tego nie użył. Chyba że uważasz, że można by użyć je też w innych miejscach. To w takim razie, proponowałbym zmienić nazwę tej klasy na coś bardziej generyczne ;)

PS.
To o czym mówię wyglądało by jakoś tak:

.dropdown-buttons-container {
  overflow: hidden;
  border-bottom-left-radius: $btn-border-radius;
  border-bottom-right-radius: $btn-border-radius;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  box-shadow: 0 2.8px 2.2px $gray-400, 0 6.7px 5.3px $gray-400;
  position: relative;
  top: -20px;
  padding-bottom: 10px;
  padding-top: 25px;
  
  button {
    border-radius: 0px;
    &:hover {
      cursor: pointer;
      font-weight: 600;
      box-shadow: 0px 0px;
    }
    float: left;
    clear: left;
    padding: 5px 7px 5px;
    line-height: 20px;
 }
}

Zauważ, ze podalem button, a nie btn-dropdown. Zrobiłem tak, bo tego całkiem wystarczy - css nadpisze wszystkie style co były używane wcześniej i użyje tych co są tutaj.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

poprawiłam :)

line-height: 20px;
}

.dropdown-buttons-container {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ja bym wyniósł to do osobnego pliku, ponieważ ten dropdown raczej nie jest powiązany z przyciskami.
Wtedy można by było go nazwać jakoś w stylu _dropdown.scss.
I potrzeba będzie też zaimportować ten plik w style-all.scss, podobnie jak to jest robione tutaj
https://github.com/Project-Summer-AI-Lab-Glider/nurse-scheduling-problem-frontend/blob/445796a22ff0f270917e8fe0491e48e185fc5874/src/assets/styles/styles-all.scss#L23-L34

Copy link
Member

@Qwebeck Qwebeck left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Widzę, ze celujesz w naszego eksperta z cssów :D
Bardzo fajnie to wygląda!
Jedyna rzecz - brakuje tła na dropdownie przez co trochę nieładnie to wygląda.
image

I też jest problem z tym, ze przyciski nie zajmują całej szerokości kontenera co może skutkować tym, ze to będzie nieintuicyjne w użyciu
image

@@ -33,16 +33,20 @@ export default function DropdownButtonsComponent({ buttons, mainLabel }: Options
<ArrowDropDownIcon />
</Button>
<Popper open={open} anchorEl={anchorRef.current}>
<div className="display-main-button">
<Button variant="primary">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Myślę, że przydałaby się możliwość ustawienia typu tego przycisku

image

Copy link
Member

@Qwebeck Qwebeck left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Super!
Dodałem kilka drobnych poprawek o których pisałem, żeby ci już z tym nie męczyć ;)

@Qwebeck Qwebeck merged commit 414ae10 into TASK-121 Dec 7, 2020
@Qwebeck Qwebeck deleted the TASK-144 branch December 7, 2020 22:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants