# Значок автора в постах владельца темы

**URL:** <https://meta.discourse.org/t/author-badge-on-topic-owners-posts/171963>\
**Category:** Development\
**Created:** [02.Декабрь.2020 09:17:21 UTC](https://meta.discourse.org/t/author-badge-on-topic-owners-posts/171963 "2020-12-02T09:17:21Z")\
**Posts on this page:** 1\
**Showing post:** 6

<div class="post-metadata">

**Author:** ![Don](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/don/32/228726_2.png) [@Don](https://meta.discourse.org/u/Don)\
**Post date:** [04.Июль.2021 11:21:20 UTC](https://meta.discourse.org/t/author-badge-on-topic-owners-posts/171963/6 "2021-07-04T11:21:20Z")

</div>

Небольшое обновление! 🙂

**Desktop** ⬇

```plaintext
// Владелец темы

.topic-post.topic-owner article:not(#post_1) .row .topic-body .topic-meta-data .names::after {
  content: "Автор";
  color: var(--secondary);
  font-weight: bold;
  background: var(--secondary-medium);
  padding: 0px 8px;
  border-radius: 8px;
  line-height: normal;
}

```

* * *

**Mobile** ⬇

```plaintext
// Владелец темы

.topic-post.topic-owner article:not(#post_1) .row .topic-body .topic-meta-data .names .first:after {
  content: 'Автор';
  color: var(--secondary);
  background: var(--secondary-medium);
  margin-left: 4px;
  padding: 0px 8px;
  border-radius: 6px;
  line-height: normal;
}

```

---

_[View the full topic](https://meta.discourse.org/t/author-badge-on-topic-owners-posts/171963)._
