Commit 53818517 by Tom Giannattasio

added truncation for super long titles

parent 022c65a6
...@@ -93,18 +93,5 @@ ...@@ -93,18 +93,5 @@
.global { .global {
h2 { h2 {
display: none; display: none;
float: left;
font-size: 0.9em;
font-weight: 600;
line-height: 40px;
letter-spacing: 0;
text-transform: none;
text-shadow: 0 1px 0 #fff;
.provider {
font: inherit;
font-weight: bold;
color: #6d6d6d;
}
} }
} }
\ No newline at end of file
...@@ -193,6 +193,7 @@ h1.top-header { ...@@ -193,6 +193,7 @@ h1.top-header {
h2 { h2 {
display: block; display: block;
width: 700px;
float: left; float: left;
font-size: 0.9em; font-size: 0.9em;
font-weight: 600; font-weight: 600;
...@@ -200,6 +201,9 @@ h1.top-header { ...@@ -200,6 +201,9 @@ h1.top-header {
letter-spacing: 0; letter-spacing: 0;
text-transform: none; text-transform: none;
text-shadow: 0 1px 0 #fff; text-shadow: 0 1px 0 #fff;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
.provider { .provider {
font: inherit; font: inherit;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment