Calendar and table fixes

Fixed: Last day on calendar will be normal width
Fixed: Tables shouldn't overflow due to excessively long titles
This commit is contained in:
Mark McDowall
2014-05-19 18:52:20 -07:00
parent 94f9db940b
commit e2bf6fd6a4
5 changed files with 29 additions and 5 deletions
+15 -3
View File
@@ -3,6 +3,7 @@
@import "../Content/Bootstrap/buttons";
@import "../Shared/Styles/clickable";
@import "../Content/mixins";
@import "../Content/variables";
.table {
@@ -11,14 +12,25 @@
.series-title {
.text-overflow();
@media @sm {
max-width: 250px
}
}
.episode-title-cell {
.btn-link;
.text-overflow();
&:hover {
text-transform: none;
@media @lg {
max-width: 350px;
}
@media @md {
max-width: 250px;
}
@media @sm {
max-width: 200px;
}
}