2013-09-06 03:37:07 +08:00
|
|
|
// --------------------------------------------------
|
|
|
|
// Topic lists
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// List controls
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-10-25 11:18:34 +08:00
|
|
|
.list-controls {
|
2013-09-18 04:07:02 +08:00
|
|
|
margin: 5px;
|
2013-09-06 03:37:07 +08:00
|
|
|
.nav {
|
|
|
|
float: left;
|
2013-09-18 04:07:02 +08:00
|
|
|
margin-right: 15px;
|
|
|
|
li {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.btn {
|
|
|
|
float: right;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 04:07:02 +08:00
|
|
|
.list-container .full-width {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
// Base list
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2014-07-30 05:38:36 +08:00
|
|
|
.topic-list {
|
2014-07-28 22:33:23 +08:00
|
|
|
|
|
|
|
> tbody > tr {
|
2014-12-05 06:05:47 +08:00
|
|
|
&:nth-child(even) {
|
2014-07-28 22:33:23 +08:00
|
|
|
background-color: darken($secondary, 3%);
|
|
|
|
}
|
2014-12-05 06:05:47 +08:00
|
|
|
&:nth-child(odd) {
|
2014-07-28 22:33:23 +08:00
|
|
|
background-color: $secondary;
|
|
|
|
}
|
2014-08-22 22:45:51 +08:00
|
|
|
&.highlighted {
|
|
|
|
background-color: scale-color($tertiary, $lightness: 85%);
|
|
|
|
}
|
2014-07-28 22:33:23 +08:00
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 7px 5px;
|
2014-05-10 14:09:04 +08:00
|
|
|
color: scale-color($primary, $lightness: 50%);
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2014-06-11 02:01:09 +08:00
|
|
|
|
|
|
|
a.title {color: $primary;}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.badge-notification {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
2014-07-26 11:06:14 +08:00
|
|
|
i {color: $secondary;}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2013-09-20 04:25:25 +08:00
|
|
|
|
|
|
|
.topic-item-stats {
|
|
|
|
margin-top: 8px;
|
|
|
|
.category, .num, .last-poster {
|
2013-09-06 03:37:07 +08:00
|
|
|
float: left;
|
|
|
|
}
|
2014-12-02 16:19:42 +08:00
|
|
|
.category a {
|
2014-12-02 16:41:51 +08:00
|
|
|
max-width: 160px;
|
2014-12-02 16:19:42 +08:00
|
|
|
}
|
2014-06-20 22:22:55 +08:00
|
|
|
.num .fa {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: scale-color($primary, $lightness: 50%);
|
2014-04-24 09:10:50 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2013-09-20 04:25:25 +08:00
|
|
|
|
2014-05-06 16:14:56 +08:00
|
|
|
.num.posts {
|
|
|
|
font-weight: bold;
|
2014-09-23 16:09:51 +08:00
|
|
|
}
|
|
|
|
|
2014-01-11 02:56:27 +08:00
|
|
|
.age {
|
|
|
|
white-space: nowrap;
|
2014-09-23 13:56:46 +08:00
|
|
|
a {
|
|
|
|
padding: 15px 10px 15px 5px;
|
|
|
|
}
|
2014-01-11 02:56:27 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Category list
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2014-07-29 14:04:20 +08:00
|
|
|
tr.category-topic-link:nth-of-type(odd) {
|
|
|
|
background-color: darken($secondary, 3%) !important;
|
2015-05-06 00:04:18 +08:00
|
|
|
}
|
2014-07-28 22:33:23 +08:00
|
|
|
|
2014-07-30 05:38:36 +08:00
|
|
|
.topic-list.categories {
|
2013-12-21 05:51:39 +08:00
|
|
|
td.latest {
|
|
|
|
vertical-align: top;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
2014-06-24 04:11:55 +08:00
|
|
|
|
2013-12-20 00:45:42 +08:00
|
|
|
.badge-category {
|
|
|
|
display: inline-block;
|
|
|
|
margin-top: 1px;
|
|
|
|
}
|
2013-12-19 00:50:51 +08:00
|
|
|
.featured-users {
|
2013-12-20 05:51:18 +08:00
|
|
|
@include mobile-portrait {
|
2013-12-19 00:50:51 +08:00
|
|
|
margin-bottom: 10px;
|
|
|
|
padding-top: 8px;
|
|
|
|
clear: left;
|
|
|
|
}
|
2013-12-20 05:51:18 +08:00
|
|
|
@include not-mobile-portrait {
|
2013-12-19 00:50:51 +08:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.latest {
|
2013-12-20 05:51:18 +08:00
|
|
|
@include mobile-portrait { width: 150px; }
|
|
|
|
@include mobile-landscape { width: 270px; }
|
|
|
|
@include tablet-landscape { width: 450px; }
|
2013-12-19 00:50:51 +08:00
|
|
|
.featured-topic {
|
|
|
|
margin: 8px 0;
|
|
|
|
a.last-posted-at, a.last-posted-at:visited {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: scale-color($primary, $lightness: 50%);
|
2013-12-19 00:50:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.stats {
|
2013-12-20 05:51:18 +08:00
|
|
|
@include not-tablet-landscape { display: none; }
|
|
|
|
@include tablet-landscape { min-width: 80px; }
|
|
|
|
}
|
2013-12-19 00:50:51 +08:00
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.category-list-item {
|
2014-07-28 22:33:23 +08:00
|
|
|
|
2015-05-06 00:04:18 +08:00
|
|
|
border-left: 6px solid;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 1.286em;
|
|
|
|
margin: 10px 0 0 5px;
|
|
|
|
i {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
a[href] {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-06 22:58:30 +08:00
|
|
|
.category-topic-link .main-link, .subcategories-list td, .category-description td {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.category-description td {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subcategories-list td {
|
|
|
|
padding-top: 15px;
|
2015-05-06 00:04:18 +08:00
|
|
|
}
|
|
|
|
|
2014-07-30 05:38:36 +08:00
|
|
|
.topic-list > tbody > tr {
|
2014-07-28 22:33:23 +08:00
|
|
|
&:nth-child(odd) {
|
|
|
|
background-color: $secondary;
|
|
|
|
}
|
2015-05-06 00:04:18 +08:00
|
|
|
&:nth-child(even) {
|
|
|
|
background-color: $secondary;
|
|
|
|
}
|
|
|
|
}
|
2014-07-28 22:33:23 +08:00
|
|
|
|
2014-07-11 04:28:53 +08:00
|
|
|
th .badge-category {
|
2015-01-30 09:09:42 +08:00
|
|
|
margin: 0;
|
2014-07-20 14:54:57 +08:00
|
|
|
font-size: 110%;
|
2014-07-11 04:28:53 +08:00
|
|
|
}
|
2014-07-28 22:33:23 +08:00
|
|
|
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.posters {
|
2014-07-11 04:28:53 +08:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
> footer {
|
|
|
|
border-top: 0;
|
|
|
|
padding: 7px 10px;
|
|
|
|
figure {
|
|
|
|
float: left;
|
|
|
|
margin: 3px 7px 0 0;
|
|
|
|
color: scale-color($primary, $lightness: 10%);
|
|
|
|
font-weight: bold;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.857em;
|
2014-07-11 04:28:53 +08:00
|
|
|
}
|
|
|
|
figcaption {
|
|
|
|
display: inline;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.btn {
|
|
|
|
float: right;
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-11 04:28:53 +08:00
|
|
|
|
2014-07-30 05:38:36 +08:00
|
|
|
.topic-list-bottom {
|
2013-09-18 05:02:10 +08:00
|
|
|
margin: 20px 12px 0 12px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Misc. stuff
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-10-25 11:18:34 +08:00
|
|
|
.list-controls {
|
2013-10-26 03:44:28 +08:00
|
|
|
.category-dropdown-button {
|
2014-05-10 14:09:04 +08:00
|
|
|
padding: 4px 10px 4px 8px;
|
2014-05-20 11:55:46 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group .dropdown-toggle:active,
|
|
|
|
.btn-group.open .dropdown-toggle {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.dropdown-toggle:active,
|
|
|
|
.open .dropdown-toggle {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
.caret {
|
|
|
|
display: inline-block;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
vertical-align: middle;
|
2014-05-06 13:50:51 +08:00
|
|
|
border-top: 4px solid $primary;
|
2013-09-06 03:37:07 +08:00
|
|
|
border-right: 4px solid transparent;
|
|
|
|
border-left: 4px solid transparent;
|
|
|
|
content: "";
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
.dropdown-menu {
|
|
|
|
position: relative;
|
|
|
|
top: 100%;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
display: none;
|
|
|
|
float: left;
|
|
|
|
width: 280px;
|
|
|
|
padding: 4px 0;
|
|
|
|
margin: 1px 0 0;
|
|
|
|
list-style: none;
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $secondary;
|
2014-05-19 13:17:59 +08:00
|
|
|
border: 1px solid scale-color-diff();
|
2013-09-06 03:37:07 +08:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.2);
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
|
|
|
background-clip: padding-box;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
.title {font-weight: bold; display: block;}
|
|
|
|
|
|
|
|
}
|
|
|
|
.dropdown-menu a {
|
|
|
|
display: block;
|
|
|
|
padding: 3px 15px;
|
|
|
|
clear: both;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 18px;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.dropdown-menu li > a:hover,
|
|
|
|
.dropdown-menu .active > a,
|
|
|
|
.dropdown-menu .active > a:hover {
|
2014-05-10 14:09:04 +08:00
|
|
|
color: $tertiary;
|
2013-09-06 03:37:07 +08:00
|
|
|
text-decoration: none;
|
2014-05-10 14:09:04 +08:00
|
|
|
background-color: scale-color($tertiary, $lightness: 75%);
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.open > .dropdown-menu {
|
|
|
|
display: block;
|
2014-03-07 12:55:57 +08:00
|
|
|
clear: both;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.fade {
|
|
|
|
opacity: 0;
|
2014-10-20 21:54:36 +08:00
|
|
|
transition: opacity linear .15s;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.fade.in {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2013-10-25 11:18:34 +08:00
|
|
|
ol.category-breadcrumb {
|
2014-05-10 14:09:04 +08:00
|
|
|
margin: 5px 10px 0 0;
|
2013-10-25 11:18:34 +08:00
|
|
|
}
|
2013-10-26 03:44:28 +08:00
|
|
|
|
|
|
|
.category-dropdown-menu {
|
|
|
|
height: 200px;
|
|
|
|
|
2014-06-24 04:11:55 +08:00
|
|
|
a.badge-category {
|
2014-07-04 06:29:46 +08:00
|
|
|
line-height: 26px !important;
|
|
|
|
margin-bottom: 0 !important;
|
2013-10-26 03:44:28 +08:00
|
|
|
}
|
|
|
|
}
|
2014-05-10 14:09:04 +08:00
|
|
|
|
2014-07-10 15:57:30 +08:00
|
|
|
.top-lists {
|
|
|
|
h2 { margin-left: 10px; }
|
2014-07-30 05:38:36 +08:00
|
|
|
.topic-list { padding-bottom: 10px; }
|
2014-07-10 15:57:30 +08:00
|
|
|
.btn-default.pull-right { margin-right: 10px; }
|
2014-05-10 14:09:04 +08:00
|
|
|
}
|
2014-05-30 02:15:56 +08:00
|
|
|
|
|
|
|
.category-notification-menu {
|
|
|
|
display: none;
|
2014-06-02 13:48:44 +08:00
|
|
|
}
|
2014-06-24 14:31:36 +08:00
|
|
|
|
2014-07-30 05:38:36 +08:00
|
|
|
.topic-list-bottom h3 {
|
2014-06-24 14:31:36 +08:00
|
|
|
clear:both;
|
|
|
|
padding-top:10px;
|
|
|
|
}
|
2014-08-06 05:09:18 +08:00
|
|
|
|
|
|
|
.category-logo {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 8px 0;
|
|
|
|
}
|
2014-08-21 05:37:28 +08:00
|
|
|
|
|
|
|
.period-chooser {
|
|
|
|
button {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
}
|
2014-09-23 15:49:09 +08:00
|
|
|
|
|
|
|
button.dismiss-read {
|
|
|
|
margin-right: 10px;
|
2014-10-13 15:26:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
2014-10-20 21:54:36 +08:00
|
|
|
}
|