2021-01-06 16:15:28 -05:00
|
|
|
// Topic list navigation & controls
|
2018-03-13 15:59:12 -04:00
|
|
|
|
2021-01-06 16:15:28 -05:00
|
|
|
.list-controls {
|
2023-09-08 12:07:04 -04:00
|
|
|
background: var(--d-content-background);
|
|
|
|
|
2018-05-01 20:41:28 -04:00
|
|
|
.combo-box .combo-box-header {
|
2020-08-03 22:57:10 -04:00
|
|
|
background: var(--secondary);
|
|
|
|
color: var(--primary);
|
|
|
|
border: 1px solid var(--primary-medium);
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-0);
|
2021-12-20 17:08:03 -05:00
|
|
|
height: 100%;
|
2021-02-03 11:45:54 -05:00
|
|
|
&:focus {
|
|
|
|
border-color: var(--tertiary);
|
|
|
|
}
|
2018-05-01 20:41:28 -04:00
|
|
|
}
|
2017-11-21 11:53:09 +01:00
|
|
|
.select-kit {
|
2018-05-01 20:41:28 -04:00
|
|
|
.select-kit-collection {
|
2018-05-02 12:23:37 -04:00
|
|
|
max-height: 40vh;
|
2018-05-01 20:41:28 -04:00
|
|
|
}
|
2021-01-06 16:15:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-container {
|
|
|
|
width: 100%;
|
|
|
|
--nav-space: 0.75em;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.category-breadcrumb {
|
2021-12-20 17:08:03 -05:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: var(--nav-space) 0; // used if the breadcrumb dropdowns wrap
|
2021-01-06 16:15:28 -05:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
2021-12-20 17:08:03 -05:00
|
|
|
margin: 0 0 var(--nav-space) 0;
|
2021-02-03 22:38:12 -05:00
|
|
|
> li {
|
|
|
|
// only target the top-level li, not dropdowns
|
|
|
|
display: flex;
|
2021-01-06 16:15:28 -05:00
|
|
|
margin-right: 0.5em;
|
2021-02-03 22:38:12 -05:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-01-06 16:15:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-bar {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2021-09-09 11:01:56 -04:00
|
|
|
margin: 0;
|
|
|
|
margin-bottom: var(--nav-space);
|
2021-01-06 16:15:28 -05:00
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-controls {
|
|
|
|
display: flex;
|
2021-12-20 17:08:03 -05:00
|
|
|
flex-wrap: wrap;
|
2021-01-06 16:15:28 -05:00
|
|
|
align-items: stretch;
|
|
|
|
margin-bottom: var(--nav-space);
|
2021-12-20 17:08:03 -05:00
|
|
|
gap: var(--nav-space) 0; // used if the buttons wrap
|
2021-01-06 16:15:28 -05:00
|
|
|
> * {
|
|
|
|
white-space: nowrap;
|
2021-12-20 17:08:03 -05:00
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.select-kit-header {
|
|
|
|
height: 100%;
|
2021-01-06 16:15:28 -05:00
|
|
|
}
|
2021-05-06 17:51:55 -04:00
|
|
|
@include breakpoint(mobile-large) {
|
|
|
|
.edit-category {
|
|
|
|
.d-button-label {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.d-icon {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-01-27 16:17:08 -05:00
|
|
|
}
|
2024-03-05 15:43:07 -05:00
|
|
|
|
|
|
|
.dismiss-container-top:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-01-06 16:15:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.category-heading {
|
|
|
|
max-width: 100%;
|
2021-04-26 18:55:18 -04:00
|
|
|
p {
|
|
|
|
margin-top: 0;
|
2022-10-12 16:05:42 +02:00
|
|
|
line-height: var(--line-height-large);
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-up-3);
|
2021-04-26 18:55:18 -04:00
|
|
|
}
|
2021-01-06 16:15:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.category-logo.aspect-image {
|
|
|
|
width: auto;
|
|
|
|
max-height: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports (--custom: property) {
|
|
|
|
.category-logo.aspect-image {
|
|
|
|
--max-height: 150px;
|
|
|
|
max-height: var(--max-height);
|
2019-01-24 17:16:18 +08:00
|
|
|
max-width: 100%;
|
2021-01-06 16:15:28 -05:00
|
|
|
height: auto;
|
|
|
|
|
|
|
|
img {
|
2022-10-20 13:20:17 -04:00
|
|
|
width: calc(var(--max-height) * var(--aspect-ratio));
|
2022-10-21 12:01:26 -04:00
|
|
|
max-width: 100%;
|
2021-01-06 16:15:28 -05:00
|
|
|
height: inherit;
|
2022-10-07 12:00:44 -03:00
|
|
|
max-height: var(--max-height);
|
2021-01-06 16:15:28 -05:00
|
|
|
}
|
2019-01-24 17:16:18 +08:00
|
|
|
}
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
2018-06-08 11:49:31 +02:00
|
|
|
|
2021-01-06 16:15:28 -05:00
|
|
|
.topic-list.shared-drafts {
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
|
|
|
|
2023-09-08 12:07:04 -04:00
|
|
|
#header-list-area {
|
|
|
|
background: var(--d-content-background);
|
|
|
|
}
|
|
|
|
|
2021-01-06 16:15:28 -05:00
|
|
|
// Topic list body
|
|
|
|
|
2021-11-15 14:49:45 -06:00
|
|
|
.topic-list-item.visited .topic-list-data,
|
2017-09-11 16:42:51 +02:00
|
|
|
.latest-topic-list-item.visited,
|
2017-09-26 18:13:32 +02:00
|
|
|
.category-topic-link.visited {
|
2018-06-08 11:49:31 +02:00
|
|
|
a.title:not(.badge-notification) {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-medium);
|
2018-06-08 11:49:31 +02:00
|
|
|
}
|
2023-11-13 10:46:15 -05:00
|
|
|
.badge-category {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-medium);
|
2020-05-06 18:02:39 -04:00
|
|
|
}
|
2023-11-13 10:46:15 -05:00
|
|
|
.discourse-tag,
|
|
|
|
.discourse-tag:visited {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-medium);
|
2020-05-06 18:02:39 -04:00
|
|
|
}
|
2017-09-11 16:42:51 +02:00
|
|
|
}
|
2015-07-23 17:16:29 +10:00
|
|
|
|
2020-03-12 15:20:56 +10:00
|
|
|
.topic-list-item {
|
|
|
|
.post-excerpt {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-bottom: 0.5em;
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-down-2);
|
2021-07-29 12:11:15 -04:00
|
|
|
word-break: break-word;
|
2020-03-12 15:20:56 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-13 12:13:02 -04:00
|
|
|
.topic-list-main-link {
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-up-1);
|
2017-08-13 12:13:02 -04:00
|
|
|
a.title {
|
|
|
|
padding: 15px 0;
|
|
|
|
word-break: break-word;
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary);
|
2017-08-13 12:13:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.anon & {
|
|
|
|
a.title:visited:not(.badge-notification) {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-medium);
|
2017-08-13 12:13:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a.title.visited:not(.badge-notification) {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-medium);
|
2017-08-13 12:13:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-15 14:49:45 -06:00
|
|
|
.sticky-header .topic-list-header {
|
2021-09-23 10:50:10 -04:00
|
|
|
@include sticky;
|
2021-09-23 14:51:06 -04:00
|
|
|
top: var(--header-offset, 60px);
|
2021-09-23 10:50:10 -04:00
|
|
|
background: var(--secondary);
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
2024-04-02 18:01:21 -04:00
|
|
|
.bulk-select-topics-dropdown {
|
|
|
|
.select-kit.single-select.dropdown-select-box .select-kit-row {
|
|
|
|
.texts .name {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.icons {
|
|
|
|
font-size: var(--font-down-2);
|
|
|
|
margin-right: 0.75em;
|
|
|
|
position: relative;
|
|
|
|
top: 0.15em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:38:36 +02:00
|
|
|
.topic-list {
|
2014-06-23 16:11:55 -04:00
|
|
|
width: 100%;
|
2015-05-11 16:09:46 -07:00
|
|
|
border-collapse: collapse;
|
2014-06-23 16:11:55 -04:00
|
|
|
|
2021-11-15 14:49:45 -06:00
|
|
|
> .topic-list-body > .topic-list-item {
|
2014-06-23 16:11:55 -04:00
|
|
|
&.has-excerpt .star {
|
|
|
|
vertical-align: top;
|
|
|
|
margin-top: 2px;
|
|
|
|
}
|
2016-08-19 11:58:20 +10:00
|
|
|
|
|
|
|
&.last-visit {
|
2016-08-30 23:32:39 -03:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic-list-separator {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic-list-item-separator {
|
|
|
|
border: none;
|
|
|
|
|
2021-11-15 14:49:45 -06:00
|
|
|
.topic-list-data {
|
2021-11-18 13:32:44 -06:00
|
|
|
border-top: 1px solid var(--danger-medium);
|
2021-11-16 05:34:29 -06:00
|
|
|
line-height: 0em;
|
2018-01-25 15:53:36 +01:00
|
|
|
padding: 0;
|
2016-08-30 23:32:39 -03:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2021-11-15 14:49:45 -06:00
|
|
|
.topic-list-data span {
|
2021-06-01 17:33:29 -04:00
|
|
|
position: relative; // Chrome needs this, otherwise the line is above the text
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--secondary);
|
|
|
|
color: var(--danger-medium);
|
2024-05-21 13:13:38 -04:00
|
|
|
padding: 0 0.55em;
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-down-1);
|
2016-08-19 11:58:20 +10:00
|
|
|
}
|
2015-05-12 09:26:35 +02:00
|
|
|
}
|
|
|
|
|
2021-11-15 14:49:45 -06:00
|
|
|
.topic-list-data {
|
2022-10-12 16:05:42 +02:00
|
|
|
line-height: var(--line-height-large);
|
2014-06-23 16:11:55 -04:00
|
|
|
text-align: left;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2021-11-15 14:49:45 -06:00
|
|
|
.btn-flat .d-icon {
|
2021-09-23 10:50:10 -04:00
|
|
|
color: currentColor;
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
2021-11-15 14:49:45 -06:00
|
|
|
|
2014-06-23 16:11:55 -04:00
|
|
|
td {
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-medium);
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-0);
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
|
|
|
|
2021-11-19 13:47:53 +00:00
|
|
|
.main-link {
|
2017-08-13 12:13:02 -04:00
|
|
|
@extend .topic-list-main-link;
|
2019-05-02 13:43:02 +02:00
|
|
|
|
2024-01-26 17:24:21 -05:00
|
|
|
.raw-topic-link > * {
|
|
|
|
// important to prevent clicks registering on non-link elements and resulting in a full page reload
|
2019-05-02 13:43:02 +02:00
|
|
|
pointer-events: none;
|
|
|
|
}
|
2022-03-23 13:03:56 +03:00
|
|
|
|
2024-04-22 13:17:00 -04:00
|
|
|
// we have a custom focus indicator via .selected
|
|
|
|
// we can remove the native one
|
2022-03-23 13:03:56 +03:00
|
|
|
.title:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
.title:focus-visible {
|
|
|
|
outline: none;
|
|
|
|
}
|
2019-08-29 12:03:43 -03:00
|
|
|
}
|
2019-08-27 09:09:00 -03:00
|
|
|
|
2019-08-29 12:03:43 -03:00
|
|
|
.unread-indicator {
|
|
|
|
&.read {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.d-icon {
|
2019-08-29 17:33:35 -03:00
|
|
|
vertical-align: middle;
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-down-5);
|
2019-08-27 09:09:00 -03:00
|
|
|
}
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
|
|
|
|
2018-12-05 19:12:26 -05:00
|
|
|
.link-bottom-line {
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-down-1);
|
2018-12-31 14:38:33 +08:00
|
|
|
display: flex;
|
2019-01-08 23:33:47 +08:00
|
|
|
flex-wrap: wrap;
|
2018-12-31 14:38:33 +08:00
|
|
|
align-items: center;
|
2023-11-13 10:46:15 -05:00
|
|
|
gap: 0.5em;
|
2019-01-08 23:33:47 +08:00
|
|
|
.discourse-tags {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
2018-12-31 14:38:33 +08:00
|
|
|
a.discourse-tag.box {
|
2018-12-07 20:01:38 -05:00
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2018-12-31 14:38:33 +08:00
|
|
|
.discourse-tag.box {
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
2023-06-15 18:35:36 +05:30
|
|
|
|
|
|
|
.participant-group-wrapper {
|
|
|
|
display: flex;
|
2023-07-10 21:18:12 +05:30
|
|
|
margin-left: 0.5em;
|
2023-06-15 18:35:36 +05:30
|
|
|
|
|
|
|
.participant-group {
|
|
|
|
padding: 0 5px;
|
|
|
|
border: 1px solid var(--primary-low);
|
|
|
|
border-radius: 0.25em;
|
|
|
|
min-width: 3em;
|
|
|
|
@include ellipsis;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: 1.25em;
|
|
|
|
color: var(--primary-high);
|
|
|
|
.mobile-view & {
|
|
|
|
height: 1.1em;
|
|
|
|
}
|
|
|
|
.d-icon {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2023-06-09 21:30:34 +05:30
|
|
|
}
|
2023-05-31 19:32:06 +05:30
|
|
|
}
|
|
|
|
}
|
2018-12-05 19:12:26 -05:00
|
|
|
}
|
|
|
|
|
2014-06-23 16:11:55 -04:00
|
|
|
.topic-excerpt {
|
2021-05-26 20:36:21 -04:00
|
|
|
display: block;
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-down-1);
|
2021-05-26 20:36:21 -04:00
|
|
|
margin-top: 0.33em;
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-high);
|
2014-06-24 01:01:37 -07:00
|
|
|
word-wrap: break-word;
|
2022-10-12 16:05:42 +02:00
|
|
|
line-height: var(--line-height-large);
|
2014-07-09 19:56:35 -04:00
|
|
|
padding-right: 20px;
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.num {
|
|
|
|
text-align: center;
|
2021-04-06 08:27:43 +02:00
|
|
|
|
|
|
|
a {
|
2014-06-23 16:11:55 -04:00
|
|
|
color: inherit;
|
|
|
|
}
|
2021-04-06 08:27:43 +02:00
|
|
|
|
|
|
|
.badge-posts {
|
|
|
|
font-weight: 700;
|
|
|
|
color: inherit;
|
|
|
|
padding: 15px 5px;
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-13 00:26:13 -07:00
|
|
|
.num.posts {
|
|
|
|
a {
|
|
|
|
padding: 15px 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.num.activity {
|
|
|
|
a {
|
|
|
|
padding: 15px 5px;
|
2023-08-07 17:05:16 -04:00
|
|
|
span.relative-date {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2014-10-13 00:26:13 -07:00
|
|
|
}
|
|
|
|
}
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
|
|
|
|
2018-06-08 11:49:31 +02:00
|
|
|
.heatmap-high,
|
2021-01-22 17:09:39 +01:00
|
|
|
.heatmap-high a,
|
|
|
|
.heatmap-high .d-icon,
|
|
|
|
.heatmap-high .d-button-label {
|
2020-04-16 11:14:25 -07:00
|
|
|
color: #fe7a15 !important;
|
2018-06-08 11:49:31 +02:00
|
|
|
}
|
2021-01-22 17:09:39 +01:00
|
|
|
|
2018-06-08 11:49:31 +02:00
|
|
|
.heatmap-med,
|
2021-01-22 17:09:39 +01:00
|
|
|
.heatmap-med a,
|
|
|
|
.heatmap-med .d-icon,
|
|
|
|
.heatmap-med .d-button-label {
|
2020-04-16 11:14:25 -07:00
|
|
|
color: #cf7721 !important;
|
2018-06-08 11:49:31 +02:00
|
|
|
}
|
2021-01-22 17:09:39 +01:00
|
|
|
|
2018-06-08 11:49:31 +02:00
|
|
|
.heatmap-low,
|
2021-01-22 17:09:39 +01:00
|
|
|
.heatmap-low a,
|
|
|
|
.heatmap-low .d-icon,
|
|
|
|
.heatmap-low .d-button-label {
|
2020-04-16 11:14:25 -07:00
|
|
|
color: #9b764f !important;
|
2018-06-08 11:49:31 +02:00
|
|
|
}
|
2018-02-05 21:36:35 -05:00
|
|
|
|
2020-04-14 23:14:53 -07:00
|
|
|
.topic-list .heatmap-high {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:38:36 +02:00
|
|
|
.loading .topic-list {
|
2014-06-23 16:11:55 -04:00
|
|
|
border: 0;
|
2014-10-10 15:02:46 -07:00
|
|
|
box-shadow: none;
|
2021-11-15 14:49:45 -06:00
|
|
|
.topic-list-item {
|
2014-06-23 16:11:55 -04:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#list-area {
|
2023-09-08 12:07:04 -04:00
|
|
|
background: var(--d-content-background);
|
2014-12-10 00:33:41 -08:00
|
|
|
margin-bottom: 100px;
|
2022-12-13 12:01:48 +01:00
|
|
|
|
2014-06-23 16:11:55 -04:00
|
|
|
.empty-topic-list {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
2022-12-13 12:01:48 +01:00
|
|
|
|
2014-06-23 16:11:55 -04:00
|
|
|
.unseen {
|
|
|
|
background-color: transparent;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--danger-medium);
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-0);
|
2014-06-23 16:11:55 -04:00
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 23:38:36 +02:00
|
|
|
.topic-list {
|
2014-06-23 16:11:55 -04:00
|
|
|
.alert {
|
|
|
|
margin-bottom: 0;
|
2022-10-12 15:31:59 +02:00
|
|
|
font-size: var(--font-0);
|
2014-06-23 16:11:55 -04:00
|
|
|
}
|
|
|
|
.spinner {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-26 16:49:57 -05:00
|
|
|
.d-icon-thumbtack.unpinned {
|
|
|
|
@include fa-rotate(180deg, 1);
|
2014-04-10 18:34:50 +10:00
|
|
|
}
|
2014-08-20 17:37:28 -04:00
|
|
|
|
|
|
|
.top-title-buttons {
|
2021-09-13 14:18:41 -04:00
|
|
|
display: flex;
|
|
|
|
margin: 0.5em 0;
|
2020-05-05 17:18:36 -04:00
|
|
|
flex-wrap: wrap;
|
2024-03-01 16:42:02 -05:00
|
|
|
font-size: var(--font-down-1);
|
|
|
|
gap: 0.5em;
|
2014-08-20 17:37:28 -04:00
|
|
|
}
|
2014-08-29 22:54:07 -07:00
|
|
|
|
|
|
|
div.education {
|
2020-10-13 10:29:27 -05:00
|
|
|
color: var(--primary);
|
|
|
|
margin-bottom: 2em;
|
|
|
|
|
2024-01-24 18:13:42 -05:00
|
|
|
p {
|
|
|
|
max-width: 62em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge-notification {
|
2019-01-18 15:40:07 -05:00
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
2014-09-08 11:11:56 -04:00
|
|
|
}
|
2017-08-13 12:13:02 -04:00
|
|
|
|
|
|
|
.list-cell {
|
|
|
|
padding: 12px 5px;
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-med-or-secondary-high);
|
2017-08-13 12:13:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.table-heading {
|
|
|
|
@extend .list-cell;
|
2020-08-03 22:57:10 -04:00
|
|
|
border-bottom: 3px solid var(--primary-low);
|
2017-08-13 12:13:02 -04:00
|
|
|
}
|
2018-04-19 19:23:00 -07:00
|
|
|
|
|
|
|
// This is not what we want:
|
|
|
|
//
|
|
|
|
// This is an overly-long topic title that would break just right
|
|
|
|
// *
|
|
|
|
//
|
|
|
|
// Instead, we want the line to break like this:
|
|
|
|
//
|
|
|
|
// This is an overly-long topic title that would break just
|
|
|
|
// right *
|
|
|
|
.topic-post-badges {
|
|
|
|
white-space: nowrap;
|
2019-01-17 15:46:55 -05:00
|
|
|
align-self: center;
|
2022-10-12 16:05:42 +02:00
|
|
|
line-height: var(--line-height-medium);
|
2018-06-08 11:49:31 +02:00
|
|
|
}
|