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

Fix #1554 by adding some word breaking styles #1674

Merged
merged 2 commits into from
Oct 31, 2013
Merged
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
8 changes: 6 additions & 2 deletions src/NuGetGallery/Content/Site.css
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ div #Register {
}

hgroup.page-heading h1,
hgroup.page-heading h2 { display: inline; }
hgroup.page-heading h2 { display: inline-block; word-break: break-all; }

hgroup.page-heading h2 { padding-left: 7px; }

Expand Down Expand Up @@ -753,6 +753,8 @@ button.undo-button {

.edit-root {
font-size: 1.3em;
display: inline-block;
word-break: break-all;
}

.edit-tree, .edit-tree-selected {
Expand Down Expand Up @@ -942,6 +944,8 @@ section.package header { margin-bottom: 5px; }

section.package h1 {
font-size: 1.75em;
display: inline-block;
word-break: break-all;
margin: 0;
}

Expand Down Expand Up @@ -1121,7 +1125,7 @@ ul.pager li.next { padding-left: 10px; }

.sexy-table tbody tr:hover { background-color: #f4f5f6; }

.sexy-table tbody tr.recommended { font-weight: 800; }
.sexy-table tbody tr.recommended { font-weight: 800; word-break: break-all; }

.sexy-table tbody td { padding: 5px 25px 5px 0; }

Expand Down