# Select Posts CSS makes the buttons invisible

**URL:** https://meta.discourse.org/t/select-posts-css-makes-the-buttons-invisible/39986
**Category:** Bug
**Created:** [2월 22, 2016, 4:11오후 UTC](https://meta.discourse.org/t/select-posts-css-makes-the-buttons-invisible/39986 "2016-02-22T16:11:33Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![almereyda](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/almereyda/32/367792_2.png) [@almereyda](https://meta.discourse.org/u/almereyda)
#### Post date: [2월 22, 2016, 4:11오후 UTC](https://meta.discourse.org/t/select-posts-css-makes-the-buttons-invisible/39986/1 "2016-02-22T16:11:33Z")

</div>

After upgrading to `latest`, it seems we cannot select posts to move them anymore. The CSS rule is as follows:

```
.topic-post article.boxed .select-posts{position:absolute;left:100%;z-index:490;top:8px;width:200px;height:100px;background-color:#fff}

```

Also setting the `z-index` from `490` to something higher, as in

```
#selected-posts{width:200px;position:fixed;z-index:1000;background-color:#d1f0ff;border:1px solid #08c;padding:5px;margin-bottom:5px;right:10px}

```

didn’t help. It seems the `.select-posts` items cannot escape

```
.topic-body{overflow: hidden;}

```

What should I do?

---

<div class="post-metadata">

### Author: ![almereyda](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/almereyda/32/367792_2.png) [@almereyda](https://meta.discourse.org/u/almereyda)
#### Post date: [2월 22, 2016, 4:12오후 UTC](https://meta.discourse.org/t/select-posts-css-makes-the-buttons-invisible/39986/2 "2016-02-22T16:12:18Z")

</div>

Pinging @thoka for notification reasons.

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [2월 22, 2016, 10:15오후 UTC](https://meta.discourse.org/t/select-posts-css-makes-the-buttons-invisible/39986/3 "2016-02-22T22:15:51Z")

</div>

Hmm this looks like a legit bug @eviltrout in our current vdom branch

---

<div class="post-metadata">

### Author: ![eviltrout](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eviltrout/32/5275_2.png) [@eviltrout](https://meta.discourse.org/u/eviltrout)
#### Post date: [2월 23, 2016, 3:21오전 UTC](https://meta.discourse.org/t/select-posts-css-makes-the-buttons-invisible/39986/4 "2016-02-23T03:21:36Z")

</div>

Fixed here:

[https://github.com/discourse/discourse/commit/5dd81700f16e7650289386723871311ec1bc1bf5](https://github.com/discourse/discourse/commit/5dd81700f16e7650289386723871311ec1bc1bf5)

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [2월 23, 2016, 4:31오전 UTC](https://meta.discourse.org/t/select-posts-css-makes-the-buttons-invisible/39986/5 "2016-02-23T04:31:35Z")

</div>


