Merge branch 'next-minor' into develop
This commit is contained in:
commit
c6dda6cf2d
8 changed files with 25 additions and 34 deletions
|
|
@ -44,6 +44,7 @@ Although the chat was never enabled per default and was marked as experimental,
|
|||
* Get rid of some uses of "execute\_script" in feature specs [#8331](https://github.com/diaspora/diaspora/pull/8331)
|
||||
* Fix deprecation warnings for sidekiq 7.0 [#8359](https://github.com/diaspora/diaspora/pull/8359)
|
||||
* Remove entypo-rails dependency to prepare for rails 6 [#8361](https://github.com/diaspora/diaspora/pull/8361)
|
||||
* Remove compass-rails dependency which is not supported anymore [#8362](https://github.com/diaspora/diaspora/pull/8362)
|
||||
|
||||
## Bug fixes
|
||||
|
||||
|
|
|
|||
3
Gemfile
3
Gemfile
|
|
@ -63,8 +63,7 @@ gem "rack-cors", "1.1.1", require: "rack/cors"
|
|||
gem "autoprefixer-rails", "10.4.7.0"
|
||||
gem "bootstrap-sass", "3.4.1"
|
||||
gem "bootstrap-switch-rails", "3.3.3" # 3.3.4 and 3.3.5 is broken, see https://github.com/Bttstrp/bootstrap-switch/issues/691
|
||||
gem "compass-rails", "3.1.0"
|
||||
gem "sass-rails", "5.0.7"
|
||||
gem "sassc-rails", "2.1.2"
|
||||
gem "sprockets-rails", "3.4.2"
|
||||
|
||||
# Database
|
||||
|
|
|
|||
31
Gemfile.lock
31
Gemfile.lock
|
|
@ -127,22 +127,6 @@ GEM
|
|||
chunky_png (1.4.0)
|
||||
citrus (3.0.2)
|
||||
coderay (1.1.3)
|
||||
compass (1.0.3)
|
||||
chunky_png (~> 1.2)
|
||||
compass-core (~> 1.0.2)
|
||||
compass-import-once (~> 1.0.5)
|
||||
rb-fsevent (>= 0.9.3)
|
||||
rb-inotify (>= 0.9)
|
||||
sass (>= 3.3.13, < 3.5)
|
||||
compass-core (1.0.3)
|
||||
multi_json (~> 1.0)
|
||||
sass (>= 3.3.0, < 3.5)
|
||||
compass-import-once (1.0.5)
|
||||
sass (>= 3.2, < 3.5)
|
||||
compass-rails (3.1.0)
|
||||
compass (~> 1.0.0)
|
||||
sass-rails (< 5.1)
|
||||
sprockets (< 4.0)
|
||||
concurrent-ruby (1.1.10)
|
||||
configurate (0.5.0)
|
||||
connection_pool (2.2.5)
|
||||
|
|
@ -655,14 +639,14 @@ GEM
|
|||
rubyzip (2.3.2)
|
||||
rugged (1.0.1)
|
||||
sass (3.4.25)
|
||||
sass-rails (5.0.7)
|
||||
railties (>= 4.0.0, < 6)
|
||||
sass (~> 3.1)
|
||||
sprockets (>= 2.8, < 4.0)
|
||||
sprockets-rails (>= 2.0, < 4.0)
|
||||
tilt (>= 1.1, < 3)
|
||||
sassc (2.4.0)
|
||||
ffi (~> 1.9)
|
||||
sassc-rails (2.1.2)
|
||||
railties (>= 4.0.0)
|
||||
sassc (>= 2.0)
|
||||
sprockets (> 3.0)
|
||||
sprockets-rails
|
||||
tilt
|
||||
sawyer (0.8.2)
|
||||
addressable (>= 2.3.5)
|
||||
faraday (> 0.8, < 2.0)
|
||||
|
|
@ -804,7 +788,6 @@ DEPENDENCIES
|
|||
capybara (= 3.35.3)
|
||||
carrierwave (= 2.2.2)
|
||||
chrome_remote (= 0.3.0)
|
||||
compass-rails (= 3.1.0)
|
||||
configurate (= 0.5.0)
|
||||
cucumber-api-steps (= 0.14)
|
||||
cucumber-rails (= 2.5.1)
|
||||
|
|
@ -905,7 +888,7 @@ DEPENDENCIES
|
|||
rubocop-rails (= 2.9.1)
|
||||
ruby-oembed (= 0.16.1)
|
||||
rubyzip (= 2.3.2)
|
||||
sass-rails (= 5.0.7)
|
||||
sassc-rails (= 2.1.2)
|
||||
secure_headers (= 6.3.3)
|
||||
shoulda-matchers (= 4.5.1)
|
||||
sidekiq (= 6.4.2)
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@
|
|||
@import 'icons';
|
||||
@import 'animations';
|
||||
@import 'flash_messages';
|
||||
@import 'sprites';
|
||||
@import 'hovercard';
|
||||
@import 'base';
|
||||
@import 'interactions';
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@
|
|||
padding-top: 25px;
|
||||
|
||||
.logos-asterisk {
|
||||
background: image-url('branding/logos/asterisk.png') no-repeat;
|
||||
height: 154px;
|
||||
margin: auto;
|
||||
margin-bottom: 12px;
|
||||
margin: auto auto 12px;
|
||||
width: 154px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -202,10 +202,23 @@
|
|||
.social-media-logos-twitter-24x24,
|
||||
.social-media-logos-tumblr-24x24,
|
||||
.social-media-logos-wordpress-24x24 {
|
||||
background-repeat: no-repeat;
|
||||
height: 24px;
|
||||
width: 24px;
|
||||
}
|
||||
|
||||
.social-media-logos-twitter-24x24 {
|
||||
background-image: image-url('social-media-logos/twitter-24x24.png');
|
||||
}
|
||||
|
||||
.social-media-logos-tumblr-24x24 {
|
||||
background-image: image-url('social-media-logos/tumblr-24x24.png');
|
||||
}
|
||||
|
||||
.social-media-logos-wordpress-24x24 {
|
||||
background-image: image-url('social-media-logos/wordpress-24x24.png');
|
||||
}
|
||||
|
||||
a {
|
||||
display: inline-block;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@
|
|||
.btn.btn-link.question_mark:hover .entypo-cog { color: $black; }
|
||||
.dim { opacity: 0.3; }
|
||||
.social-media-logos-wordpress-16x16 {
|
||||
background: image-url('social-media-logos/wordpress-16x16.png') no-repeat;
|
||||
display: inline-block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
/* ===== sprites ===== */
|
||||
@import 'branding/logos/*.png';
|
||||
@import 'social-media-logos/*.png';
|
||||
@include all-logos-sprites;
|
||||
@include all-social-media-logos-sprites;
|
||||
Loading…
Reference in a new issue