forked from MarseyWorld/MarseyWorld
Merge branch 'frost' of https://github.com/Aevann1/rDrama into frost
commit
83ca635911
|
@ -6220,15 +6220,6 @@ g {
|
|||
font-weight: 600;
|
||||
}
|
||||
|
||||
.expandedimage {
|
||||
min-height: 1rem !important;
|
||||
}
|
||||
|
||||
.expandedimage {
|
||||
margin-top: 10vh !important;
|
||||
margin-bottom: 10vh !important;
|
||||
}
|
||||
|
||||
.desktop-expanded-image-modal::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -86,6 +86,7 @@ class Comment(Base):
|
|||
|
||||
@lazy
|
||||
def can_see(self, v):
|
||||
if SITE != 'rdrama.net': return True
|
||||
if not self.parent_submission: return True
|
||||
if self.post.sub != 'chudrama': return True
|
||||
if v:
|
||||
|
|
|
@ -79,6 +79,7 @@ class Submission(Base):
|
|||
|
||||
@lazy
|
||||
def can_see(self, v):
|
||||
if SITE != 'rdrama.net': return True
|
||||
if self.sub != 'chudrama': return True
|
||||
if v:
|
||||
if v.id == self.author_id: return True
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{%-
|
||||
set CACHE_VER = {
|
||||
'css/main.css': 468,
|
||||
'css/main.css': 469,
|
||||
'css/catalog.css': 2,
|
||||
|
||||
'css/4chan.css': 61,
|
||||
|
|
Loading…
Reference in New Issue