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

1448 kolumny rownej szerokosci #1761

Open
wants to merge 6 commits into
base: master-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions zapisy/apps/common/assets/main/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ div.top .topbar .inline-inputs label {
}

#sidebar {
@media (max-width: 992px) {
@include media-breakpoint-down(lg) {
#sidebar-inner {
/* :after will position itself against nearest positioned parent, so we
* need to ensure that it will be this sidebar */
Expand Down Expand Up @@ -203,7 +203,7 @@ div.top .topbar .inline-inputs label {
text-align: center;
}
}
@media (min-width: 992px) {
@include media-breakpoint-up(lg) {
#fold-toggler {
display: none;
}
Expand Down Expand Up @@ -248,6 +248,21 @@ colgroup col.table-info-type {
background-color: #f9f9f9;
lgpawel marked this conversation as resolved.
Show resolved Hide resolved
}

colgroup col.table-info-offer {
width: 1%;
}

.table-offer th {
Comment on lines +247 to +251
Copy link
Contributor

Choose a reason for hiding this comment

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

Potrzebujemy dodawać te nowe klasy? Czy nie wystarczą selektory #table-info .table-info-type w pierwszym przypadku i #table-offer th w drugim?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Dodałam te klasy bo po sprawdzeniu #table-info i .table-info-type występują też w pliku thesis.html więc wydawało mi się że stylowanie w ten sposób wpłynęłoby na ten widok. Jeszcze raz to zweryfikuje w takim razie

Copy link
Contributor

@lgpawel lgpawel Dec 4, 2024

Choose a reason for hiding this comment

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

OK, cenna uwaga. Proszę w takim razie przyjrzeć się wszystkim miejscom, gdzie występuje selektor colgroup col.table-info-type i popatrzyć (to są dwie różne rzeczy):

  1. czy są jakieś wizualne różnice między produkcją a master-dev;
  2. czy usunięcie (po moim poprzednim komentarzu) deklaracji nadającej temu selektorowi background-color coś zmienia (tj. między master-dev a tym branczem).

Zgaduję, że w 1. okaże się, że kolorowanie wszędzie znikło, a 2. już nie ma znaczenia (co będzie oznaczać, że usunięcie tej deklaracji było tym bardziej właściwe). Jeśli się to potwierdzi, to proszę założyć nowy issue o przywróceniu kolorowania tła w tych miejscach. Później zdecydujemy też, jak rozwiązać "kolizję selektorów", która pojawiła się 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.

Faktycznie, sprawdziłam punkt 1. kolorowanie wszędzie zniknęło (gdy wybierzemy pracownika z listy pracowników, to samo ze studentami, gdy klikniemy w jakąś pracę dyplomową i gdy wejdziemy w Moje konto - czyli we wszystkich plikach które korzystają z table-info-type). Drugiego punktu już nie sprawdzałam.

white-space: nowrap;
background-color: #f9f9f9;
}

@include media-breakpoint-down(lg) {
#table-offer th {
Copy link
Contributor

@lgpawel lgpawel Dec 4, 2024

Choose a reason for hiding this comment

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

To chyba nie ma szansy działać, bo (na ten moment) nie mamy nic pasującego do selektora #table-offer (który zresztą sam podałem w jednym z poprzednich komentarzy, nie zauważywszy tej pomyłki) w odróżnieniu od .table-offer. Plus, jeśli w "finalnym" stanie będzie to możliwe, to warto będzie tę definicję przerzucić do bloku razem z innymi dotyczącymi tego samego selektora (tj, tymi, które nie zależą od żadnego breakpointu).

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Już jest zmienione, umknęło mi to pewnie przez to że sprawdzałam to do szerokości ok. 400px gdzie ta różnica pomiędzy pierwszą kolumną a drugą w szerokości się jeszcze tak nie rozjeżdza, dopiero na mniejszych to widać.

white-space: normal;
}
}

// Required field marker in forms.
.asteriskField {
padding-left: 0.25em;
Expand All @@ -264,7 +279,7 @@ colgroup col.table-info-type {
color: var(--bs-dark);
font-style: italic;
display: block;
@media (min-width: 992px) {
@include media-breakpoint-up(lg) {
float: right;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ <h1 class="d-inline-block">
</div>
</div>

<table class="table table-bordered table-md-responsive" id="table-info">
<table class="table table-bordered table-md-responsive table-offer" id="table-info">
<colgroup>
<col class="table-info-type"></col>
<col class="table-info-type table-info-offer"></col>
</colgroup>
<tbody>
<tr>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% load filters %}

<table class="table table-bordered table-md-responsive d-print-none" id="table-info">
<table class="table table-bordered table-md-responsive d-print-none table-offer" id="table-info">
<colgroup>
<col class="table-info-type"></col>
<col class="table-info-type table-what table-info-offer"></col>
lgpawel marked this conversation as resolved.
Show resolved Hide resolved
</colgroup>
<tbody>
<tr>
Expand Down
Loading