2016-05-13 04:45:34 -05:00
|
|
|
/* hide the reply border above the time gap notices */
|
2018-06-18 13:10:48 -05:00
|
|
|
.time-gap + .topic-post article {
|
2016-05-13 04:45:34 -05:00
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
|
2018-02-08 16:04:29 -06:00
|
|
|
.time-gap {
|
|
|
|
.topic-avatar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-06 23:40:40 -05:00
|
|
|
.topic-post-visited {
|
2021-07-05 01:17:31 -05:00
|
|
|
+ .topic-post article {
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-28 13:39:55 -05:00
|
|
|
.topic-post article {
|
2020-08-03 21:57:10 -05:00
|
|
|
border-top: 1px solid var(--primary-low);
|
2018-01-12 16:27:38 -06:00
|
|
|
padding: 15px 0 8px 0;
|
2016-03-28 13:39:55 -05:00
|
|
|
}
|
|
|
|
|
2013-09-05 14:37:07 -05:00
|
|
|
span.badge-posts {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
2013-09-13 23:39:08 -05:00
|
|
|
.show-replies {
|
2013-09-05 14:37:07 -05:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2017-05-18 15:11:46 -05:00
|
|
|
.topic-post {
|
2017-11-15 13:52:33 -06:00
|
|
|
nav.post-controls {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary-low-mid-or-secondary-high);
|
2020-09-25 20:06:17 -05:00
|
|
|
&.expanded {
|
|
|
|
// on small devices with many buttons this can overflow
|
|
|
|
overflow-x: scroll;
|
|
|
|
}
|
2018-04-27 16:15:29 -05:00
|
|
|
.actions {
|
|
|
|
display: flex;
|
2021-12-15 14:36:10 -06:00
|
|
|
// using an auto margin on first-child instead of justify-content on the parent
|
|
|
|
// because justify-content breaks overflow scrolling
|
|
|
|
:first-child {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2020-05-29 01:05:21 -05:00
|
|
|
|
|
|
|
// Handles the like and flag buttons in the post menu.
|
|
|
|
.double-button {
|
|
|
|
display: flex;
|
|
|
|
flex: 0 1 auto;
|
|
|
|
align-items: center;
|
|
|
|
button {
|
|
|
|
&.like,
|
|
|
|
&.read-indicator,
|
|
|
|
&.create-flag {
|
|
|
|
flex: 1 1 auto;
|
2018-04-27 16:15:29 -05:00
|
|
|
}
|
2020-05-29 01:05:21 -05:00
|
|
|
&.button-count {
|
|
|
|
padding: 8px 4px 8px 8px;
|
|
|
|
+ .toggle-like,
|
|
|
|
+ .create-flag {
|
|
|
|
padding: 8px 8px 8px 4px;
|
|
|
|
}
|
|
|
|
&.my-likes,
|
|
|
|
&.regular-likes {
|
|
|
|
display: flex;
|
|
|
|
max-width: unset;
|
|
|
|
padding: 8px;
|
|
|
|
.d-icon {
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
2018-04-27 16:15:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
}
|
2020-05-29 01:05:21 -05:00
|
|
|
.d-icon {
|
|
|
|
opacity: 1;
|
2017-11-15 13:52:33 -06:00
|
|
|
}
|
2020-05-29 01:05:21 -05:00
|
|
|
button {
|
|
|
|
border: none;
|
|
|
|
font-size: $font-up-1;
|
|
|
|
padding: 10px 8px;
|
|
|
|
background: transparent;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
max-width: 45px;
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
2019-01-31 14:13:22 -06:00
|
|
|
}
|
2020-05-29 01:05:21 -05:00
|
|
|
&.admin {
|
|
|
|
position: relative;
|
2019-01-31 14:13:22 -06:00
|
|
|
}
|
2020-05-29 01:05:21 -05:00
|
|
|
&.expand-post {
|
|
|
|
margin: 10px 0 10px 0;
|
|
|
|
}
|
2021-07-21 09:41:04 -05:00
|
|
|
|
2020-05-29 01:05:21 -05:00
|
|
|
&.has-like {
|
|
|
|
.d-icon {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--love);
|
2020-05-29 01:05:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&.bookmarked {
|
|
|
|
.d-icon {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--tertiary);
|
2020-05-29 01:05:21 -05:00
|
|
|
}
|
2019-01-31 14:13:22 -06:00
|
|
|
}
|
2017-11-15 13:52:33 -06:00
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
2020-12-10 11:02:07 -06:00
|
|
|
&.replies-button-visible {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.show-replies {
|
|
|
|
display: flex;
|
|
|
|
font-size: $font-up-1;
|
2021-04-20 18:43:26 -05:00
|
|
|
padding: 10px 8px;
|
2020-12-17 21:51:13 -06:00
|
|
|
+ .reply {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2020-12-10 11:02:07 -06:00
|
|
|
.d-icon {
|
|
|
|
padding-left: 8px;
|
2021-04-20 18:43:26 -05:00
|
|
|
font-size: $font-down-1;
|
2020-12-10 11:02:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.actions {
|
|
|
|
flex-grow: 2;
|
|
|
|
}
|
|
|
|
}
|
2014-03-19 09:02:09 -05:00
|
|
|
}
|
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
|
2021-07-21 09:41:04 -05:00
|
|
|
nav.post-controls button.reply .d-icon {
|
|
|
|
color: var(--primary-high);
|
|
|
|
}
|
|
|
|
|
2014-05-13 07:53:11 -05:00
|
|
|
.post-admin-menu {
|
2018-06-18 12:01:40 -05:00
|
|
|
bottom: -50px;
|
2014-10-13 15:38:22 -05:00
|
|
|
left: 135px;
|
2018-06-18 12:01:40 -05:00
|
|
|
@media screen and (max-width: 374px) {
|
|
|
|
left: 50px;
|
|
|
|
}
|
2014-05-13 07:53:11 -05:00
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
|
|
|
|
.embedded-posts {
|
|
|
|
.topic-meta-data h5 a {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-actions {
|
2015-09-17 02:00:53 -05:00
|
|
|
/* overriding display: here was causing hidden element to take up space */
|
2014-10-20 00:47:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.post-action {
|
|
|
|
float: right;
|
|
|
|
margin-right: 10px;
|
|
|
|
clear: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-action .relative-date {
|
|
|
|
margin-left: 5px;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a.reply-to-tab {
|
2018-01-16 18:05:12 -06:00
|
|
|
z-index: z("base") + 1;
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary-med-or-secondary-med);
|
2018-06-20 12:06:20 -05:00
|
|
|
margin-right: 0.5em;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
2014-05-13 14:07:05 -05:00
|
|
|
.topic-post .boxed .contents {
|
2014-06-13 01:14:58 -05:00
|
|
|
clear: both;
|
2014-05-13 14:07:05 -05:00
|
|
|
}
|
|
|
|
|
2013-11-15 12:30:24 -06:00
|
|
|
.topic-map {
|
2018-11-02 09:07:22 -05:00
|
|
|
margin: 10px 0;
|
|
|
|
h4 {
|
2018-01-12 16:27:38 -06:00
|
|
|
line-height: $line-height-medium;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
2014-07-13 00:17:54 -05:00
|
|
|
.user {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2013-11-28 10:45:16 -06:00
|
|
|
.map-collapsed {
|
|
|
|
.secondary {
|
|
|
|
display: none;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
2013-11-28 10:45:16 -06:00
|
|
|
}
|
|
|
|
.map {
|
2013-09-05 14:37:07 -05:00
|
|
|
li {
|
|
|
|
float: left;
|
2014-09-23 05:06:07 -05:00
|
|
|
padding: 7px 8px;
|
2013-09-05 14:37:07 -05:00
|
|
|
&:last-of-type {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
}
|
2018-04-23 09:45:18 -05:00
|
|
|
.number {
|
2018-02-12 14:16:27 -06:00
|
|
|
line-height: $line-height-medium;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
.number,
|
2018-11-26 15:49:57 -06:00
|
|
|
.d-icon {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary-high-or-secondary-low);
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-up-1;
|
2015-06-03 04:46:35 -05:00
|
|
|
}
|
2018-06-18 13:10:48 -05:00
|
|
|
.avatar + a {
|
2013-09-05 14:37:07 -05:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2014-09-23 13:29:27 -05:00
|
|
|
li.avatars {
|
2014-09-23 05:06:07 -05:00
|
|
|
display: none;
|
|
|
|
}
|
2018-06-08 04:49:31 -05:00
|
|
|
.links,
|
|
|
|
.information,
|
|
|
|
.avatars {
|
2018-01-12 16:27:38 -06:00
|
|
|
padding: 10px;
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary);
|
2014-05-06 02:24:04 -05:00
|
|
|
overflow: auto;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
2018-01-12 16:27:38 -06:00
|
|
|
.information {
|
|
|
|
p {
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
}
|
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
.buttons {
|
|
|
|
.btn {
|
|
|
|
border: 0;
|
2014-09-23 05:06:07 -05:00
|
|
|
padding: 0 15px;
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary-med-or-secondary-high);
|
|
|
|
background: var(--blend-primary-secondary-5);
|
|
|
|
border-left: 1px solid var(--primary-low);
|
2013-12-09 15:27:49 -06:00
|
|
|
.fa {
|
2013-09-05 14:37:07 -05:00
|
|
|
margin: 0;
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-up-2;
|
2013-09-05 14:37:07 -05:00
|
|
|
line-height: 52px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-21 12:51:56 -05:00
|
|
|
.link-summary .btn {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary-med-or-secondary-high);
|
|
|
|
background: var(--blend-primary-secondary-5);
|
2017-07-21 12:51:56 -05:00
|
|
|
width: 100%;
|
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#topic-footer-buttons {
|
2020-04-15 18:20:44 -05:00
|
|
|
.d-icon-bookmark.bookmarked,
|
|
|
|
.d-icon-discourse-bookmark-clock.bookmarked {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--tertiary);
|
2018-06-08 04:49:31 -05:00
|
|
|
}
|
2020-05-22 23:56:13 -05:00
|
|
|
|
2021-01-27 15:17:08 -06:00
|
|
|
.topic-footer-main-buttons {
|
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
2020-05-22 23:56:13 -05:00
|
|
|
.topic-footer-mobile-dropdown {
|
2021-03-17 21:42:52 -05:00
|
|
|
margin-right: 0.5em;
|
2021-01-27 15:17:08 -06:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-kit-header {
|
|
|
|
height: 100%;
|
2015-12-11 14:07:38 -06:00
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
|
2019-07-29 10:54:23 -05:00
|
|
|
.topic-notifications-button,
|
|
|
|
.pinned-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-03-17 21:42:52 -05:00
|
|
|
|
|
|
|
.reason {
|
|
|
|
align-items: flex-start;
|
|
|
|
.select-kit {
|
|
|
|
max-width: 40%;
|
|
|
|
}
|
|
|
|
}
|
2019-07-29 10:54:23 -05:00
|
|
|
@include breakpoint(mobile-medium) {
|
|
|
|
display: inline-block;
|
|
|
|
.reason {
|
|
|
|
display: block;
|
|
|
|
margin: 0.5em 0 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-06 02:48:44 -05:00
|
|
|
}
|
|
|
|
|
2018-11-11 20:04:30 -06:00
|
|
|
.suggested-topics {
|
2013-09-05 14:37:07 -05:00
|
|
|
clear: left;
|
2015-07-21 20:46:15 -05:00
|
|
|
padding: 20px 0 15px 0;
|
2018-06-08 04:49:31 -05:00
|
|
|
th.views,
|
|
|
|
td.views,
|
|
|
|
td.activity,
|
|
|
|
th.activity,
|
|
|
|
th.likes,
|
|
|
|
td.likes {
|
2013-09-05 14:37:07 -05:00
|
|
|
display: none;
|
2018-06-08 04:49:31 -05:00
|
|
|
}
|
|
|
|
a.badge-category,
|
|
|
|
a.badge-category-parent {
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-down-1;
|
2014-05-10 01:09:04 -05:00
|
|
|
vertical-align: top;
|
2018-06-08 04:49:31 -05:00
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
span.post-count {
|
2020-08-03 21:57:10 -05:00
|
|
|
background: var(--primary);
|
|
|
|
color: var(--secondary);
|
2018-06-08 04:49:31 -05:00
|
|
|
opacity: 0.8;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#topic-title {
|
2018-01-16 18:05:12 -06:00
|
|
|
z-index: z("base") + 1;
|
2021-05-26 04:12:32 -05:00
|
|
|
margin: 0;
|
2021-06-07 12:22:28 -05:00
|
|
|
padding: 0 0 1em;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.quote-button.visible {
|
2018-01-16 18:05:12 -06:00
|
|
|
z-index: z("tooltip");
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group {
|
2013-10-22 01:56:46 -05:00
|
|
|
margin-top: 25px;
|
2013-09-05 14:37:07 -05:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
2013-09-13 23:39:08 -05:00
|
|
|
float: left;
|
2013-09-05 14:37:07 -05:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-04-08 14:25:52 -05:00
|
|
|
.selected-posts {
|
|
|
|
padding: 0.1em 0.7em;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
2015-01-21 00:51:15 -06:00
|
|
|
// hide the full set of selection buttons on mobile
|
2018-06-08 04:49:31 -05:00
|
|
|
.select-posts button {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-01-21 00:51:15 -06:00
|
|
|
|
|
|
|
// unhide the simple "select just this post" button
|
|
|
|
button.select-post {
|
|
|
|
display: inline-block;
|
2013-09-05 14:37:07 -05:00
|
|
|
}
|
|
|
|
|
2013-09-05 15:28:16 -05:00
|
|
|
.deleted-user-avatar {
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-up-5;
|
2013-09-05 15:28:16 -05:00
|
|
|
}
|
|
|
|
|
2018-06-08 04:49:31 -05:00
|
|
|
span.btn-text {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-09-05 14:37:07 -05:00
|
|
|
|
2013-09-12 15:00:53 -05:00
|
|
|
blockquote {
|
2018-06-08 04:49:31 -05:00
|
|
|
clear: both;
|
2014-06-30 02:51:17 -05:00
|
|
|
/* leave browser defaults for top and bottom here */
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
2013-09-12 15:00:53 -05:00
|
|
|
}
|
|
|
|
|
2020-04-21 08:02:13 -05:00
|
|
|
pre.copy-codeblocks code {
|
|
|
|
padding-right: 2.75em;
|
|
|
|
}
|
|
|
|
|
2018-02-08 16:04:29 -06:00
|
|
|
.gap {
|
2018-03-29 22:18:15 -05:00
|
|
|
padding: 0.25em 0;
|
2018-02-08 16:04:29 -06:00
|
|
|
}
|
|
|
|
|
2018-06-08 04:49:31 -05:00
|
|
|
.posts-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
2014-03-31 10:29:32 -05:00
|
|
|
|
2014-06-04 11:15:59 -05:00
|
|
|
span.highlighted {
|
2020-08-03 21:57:10 -05:00
|
|
|
background-color: var(--highlight-low);
|
2014-06-04 11:15:59 -05:00
|
|
|
}
|
|
|
|
|
2014-05-10 01:09:04 -05:00
|
|
|
.topic-avatar {
|
|
|
|
float: left;
|
2018-01-12 16:27:38 -06:00
|
|
|
margin-right: 10px;
|
2018-06-18 12:01:40 -05:00
|
|
|
z-index: z("base") + 1;
|
|
|
|
/* must render on top of topic-body + topic-meta-data, otherwise not tappable */
|
2014-05-10 01:09:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic-meta-data {
|
2015-09-29 11:57:54 -05:00
|
|
|
margin-left: 50px;
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-down-1;
|
2014-06-05 11:32:48 -05:00
|
|
|
.names {
|
2018-01-12 16:27:38 -06:00
|
|
|
line-height: $line-height-medium;
|
2018-07-08 22:45:00 -05:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2018-10-01 21:56:50 -05:00
|
|
|
|
2018-07-08 22:45:00 -05:00
|
|
|
.full-name {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2018-10-01 21:56:50 -05:00
|
|
|
|
|
|
|
.first {
|
|
|
|
order: 1;
|
2018-07-08 22:45:00 -05:00
|
|
|
}
|
2018-10-01 21:56:50 -05:00
|
|
|
|
2018-07-08 22:45:00 -05:00
|
|
|
.poster-icon {
|
|
|
|
order: 2;
|
|
|
|
}
|
2018-10-01 21:56:50 -05:00
|
|
|
|
|
|
|
.second {
|
2018-07-08 22:45:00 -05:00
|
|
|
order: 3;
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
2018-10-01 21:56:50 -05:00
|
|
|
|
2018-07-08 22:45:00 -05:00
|
|
|
.user-title {
|
|
|
|
order: 4;
|
2018-08-13 00:29:46 -05:00
|
|
|
flex-basis: 100%;
|
2018-07-08 22:45:00 -05:00
|
|
|
}
|
|
|
|
span {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2014-06-05 11:32:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.username.new-user a {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary-low-mid);
|
2014-06-05 11:32:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.user-title {
|
2020-08-03 21:57:10 -05:00
|
|
|
color: var(--primary-medium);
|
2014-06-05 11:32:48 -05:00
|
|
|
overflow: hidden;
|
|
|
|
margin-right: 50px;
|
2014-03-31 10:29:32 -05:00
|
|
|
}
|
2014-06-03 00:33:00 -05:00
|
|
|
|
|
|
|
.read-state {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-07-29 20:19:30 -05:00
|
|
|
|
2019-03-08 04:23:44 -06:00
|
|
|
.post-notice {
|
|
|
|
margin-bottom: 1em;
|
2019-04-03 15:10:54 -05:00
|
|
|
&.old {
|
|
|
|
border-top: none;
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2019-03-08 04:23:44 -06:00
|
|
|
}
|
2020-12-10 11:02:07 -06:00
|
|
|
|
|
|
|
.posts-filtered-notice {
|
2021-10-29 08:23:15 -05:00
|
|
|
padding-right: 8.5em;
|
|
|
|
padding-bottom: unquote("max(1em, env(safe-area-inset-bottom))");
|
2020-12-10 11:02:07 -06:00
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: flex-start;
|
|
|
|
margin: 1em -9px;
|
|
|
|
|
|
|
|
z-index: 101;
|
|
|
|
.filtered-replies-show-all {
|
|
|
|
position: absolute;
|
2021-10-29 08:23:15 -05:00
|
|
|
right: 1em;
|
2020-12-10 11:02:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.filtered-replies-viewing {
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.filtered-avatar {
|
|
|
|
margin-left: 0;
|
|
|
|
img.avatar {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-25 14:06:28 -05:00
|
|
|
|
|
|
|
.open-popup-link {
|
|
|
|
opacity: 100%;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|