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 3 commits into
base: master-dev
Choose a base branch
from
Open
Changes from all 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
11 changes: 11 additions & 0 deletions zapisy/apps/common/assets/main/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,17 @@ div.loginbox {

colgroup col.table-info-type {
background-color: #f9f9f9;
width: 1%;
}

#table-info th {
white-space: nowrap;
}

@media (max-width: 992px) {
Copy link
Contributor

Choose a reason for hiding this comment

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

W paru miejscach projektu już odwołujemy się do konkretnych szerokości ekranu (w tym dokładnie do 992px) ale to jednak mało "semantyczne". Skoro to jest standardowy breakpoint Bootstrapa, to może dałoby się do tej wartości odnieść inaczej?

#table-info th {
white-space: normal;
}
}

// Required field marker in forms.
Expand Down
Loading