Merge branch 'develop' of https://code.gab.com/gab/social/gab-social into develop
This commit is contained in:
commit
292991bf33
|
@ -1211,6 +1211,11 @@ a.account__display-name {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide "verified" emoji to avoid confusion
|
||||||
|
.display-name .emojione[alt=":verified:"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.status__relative-time,
|
.status__relative-time,
|
||||||
.detailed-status__datetime {
|
.detailed-status__datetime {
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -5029,6 +5034,11 @@ noscript {
|
||||||
height: 22px;
|
height: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Hide "verified" emoji to avoid confusion
|
||||||
|
.emojione[alt=":verified:"] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
span:first-of-type {
|
span:first-of-type {
|
||||||
font-size: 20px !important;
|
font-size: 20px !important;
|
||||||
|
|
|
@ -20,7 +20,7 @@ module Paperclip
|
||||||
|
|
||||||
def needs_convert?
|
def needs_convert?
|
||||||
num_frames = identify('-format %n :file', file: file.path).to_i
|
num_frames = identify('-format %n :file', file: file.path).to_i
|
||||||
options[:style] == :original && num_frames > 1
|
options[:style] == :original && num_frames > 1000
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue