forked from publiclab/plots2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix part of publiclab#8542 Enhance Followers/Following Page
- Loading branch information
1 parent
56139e9
commit 45e49f5
Showing
3 changed files
with
103 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.follow-list{ | ||
margin: -1px; | ||
list-style-type: none; | ||
} | ||
.follow-list .follow-img img{ | ||
max-width: 100%; | ||
} | ||
.follow-list{ | ||
margin: -1px; | ||
list-style-type: none; | ||
} | ||
.follow-list { | ||
padding: 0; | ||
} | ||
.follow-list > li { | ||
float: left; | ||
width: 50%; | ||
} | ||
.follow-list > li > a { | ||
display: block; | ||
text-decoration: none; | ||
color: #000; | ||
padding: 0.625rem; | ||
margin: 1px; | ||
background: #fff; | ||
} | ||
.follow-list > li > a:after, | ||
.follow-list > li > a:before { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
.follow-list .follow-img { | ||
float: left; | ||
width: 3rem; | ||
height: 3rem; | ||
overflow: hidden; | ||
background: #efeff4; | ||
} | ||
.follow-list .follow-info { | ||
margin-left: 3.625rem; | ||
} | ||
.follow-list .follow-info h4 { | ||
margin: 0.3125rem 0; | ||
font-size: 0.875rem; | ||
font-weight: 600; | ||
} | ||
.follow-list .follow-info p { | ||
color: #666; | ||
margin: 0; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
.follow-list > li { | ||
float: none; | ||
width: auto; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,5 @@ | |
'spam2.css', | ||
'spam2.js', | ||
'print_new.css', | ||
'show_follow.css', | ||
] |