diff --git a/app/assets/stylesheets/common/base/onebox.scss b/app/assets/stylesheets/common/base/onebox.scss index b8b2acde7e7..7f82f9b94d8 100644 --- a/app/assets/stylesheets/common/base/onebox.scss +++ b/app/assets/stylesheets/common/base/onebox.scss @@ -260,3 +260,34 @@ aside.onebox.twitterstatus .onebox-body { padding-top: 5px; } } + +// Onebox - Imgur - Album +.onebox.imgur-album { + .outer-box { + position: absolute; + z-index: 935; + width: 100%; + height: 30px; + overflow: hidden; + font-size: 12px; + color: #fff; + background-color: rgba(0, 0, 0, 0.6); + + .inner-box { + padding-left: 10px; + padding-right: 10px; + overflow: hidden; + text-overflow: ellipsis; + word-wrap: normal; + white-space: nowrap; + + .album-title { + width: 100%; + font-size: 13px; + line-height: 30px; + color: #ccc; + text-decoration: none; + } + } + } +}