diff --git a/Gemfile_rails4.lock b/Gemfile_rails4.lock index fc93cb857..46cb7842e 100644 --- a/Gemfile_rails4.lock +++ b/Gemfile_rails4.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/dysania/onebox.git - revision: 1323ec18966b6398acc290ff451e065d1ff2ecb3 + revision: 0deaf043ae6594a3006d0adcba53ee449cfe08e6 specs: onebox (1.1.0) hexpress (~> 1.2) diff --git a/app/assets/stylesheets/desktop/onebox.scss b/app/assets/stylesheets/desktop/onebox.scss index 2a67cde52..10b879ca3 100644 --- a/app/assets/stylesheets/desktop/onebox.scss +++ b/app/assets/stylesheets/desktop/onebox.scss @@ -14,8 +14,7 @@ a.loading-onebox { .onebox-result { - - margin-top: 15px; + margin-top: 15px; padding: 12px 25px 12px 12px; border-left: 5px solid #bebebe; background: #eee; @@ -81,3 +80,59 @@ a.loading-onebox { } } } + +@mixin onebox-favicon($class, $image) { + &.#{$class} .source { + background-image: image-url("favicons/#{$image}.png"); + background-repeat: no-repeat; + padding-left: 20px; + } +} + +aside.onebox { + margin-top: 15px; + padding: 12px 25px 12px 12px; + border-left: 5px solid #bebebe; + background: #eee; + font-size: 14px; + + header { + a[href] { + color: #333; + text-decoration: none; + } + } + + @include onebox-favicon('stackexchange', 'stackexchange'); + @include onebox-favicon('twitterstatus', 'twitter'); + @include onebox-favicon('wikipedia', 'wikipedia'); + @include onebox-favicon('githubblob', 'github'); + + + .onebox-body { + clear: both; + + h3 { + font-size: 1.17em; + } + + a[href] { + color: #006699; + text-decoration: none; + } + + a[href]:visited { + color: #4a6b82; + } + + img { + max-height: 80%; + max-width: 25%; + height: auto; + float: left; + margin-right: 10px; + } + } +} + +