2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

move "easier to tap" topic list paddings to base

This commit is contained in:
Jeff Atwood 2014-10-13 00:26:13 -07:00
parent dd870e8cdc
commit ad4994ff0b
2 changed files with 21 additions and 10 deletions

View file

@ -50,7 +50,7 @@
.main-link { .main-link {
font-size: 16px; font-size: 16px;
a.title { a.title {
padding: 15px 0; padding: 15px 10px 15px 0;
} }
} }
@ -84,6 +84,18 @@
} }
} }
.num.posts {
a {
padding: 15px 5px;
}
}
.num.activity {
a {
padding: 15px 5px;
}
}
} }

View file

@ -71,15 +71,6 @@
.num.posts { .num.posts {
font-weight: bold; font-weight: bold;
a {
padding: 15px 10px 15px 5px;
}
}
.num.activity.last {
a {
padding: 15px 0 15px 5px;
}
} }
.age { .age {
@ -318,3 +309,11 @@ ol.category-breadcrumb {
button.dismiss-read { button.dismiss-read {
margin-right: 10px; margin-right: 10px;
} }
// base defines extra padding for easier click/top of title field
// this is a bit too much for mobile
td.main-link {
a.title {
padding: 5px 10px 5px 0;
}
}