Advertisement
rccharles

asc advanced css adjustment

Mar 1st, 2019
646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.02 KB | None | 0 0
  1.  
  2. /* Hide badges :-) */
  3. div.user-expertise {
  4.     visibility: hidden !important;
  5. }
  6.  
  7. /* The overflow property has the following values:
  8.  
  9.     visible - Default. The overflow is not clipped. It renders outside the element's box
  10.     hidden - The overflow is clipped, and the rest of the content will be invisible
  11.     scroll - The overflow is clipped, but a scrollbar is added to see the rest of the content
  12.     auto - If overflow is clipped, a scrollbar should be added to see the rest of the content
  13. */
  14. .post-author .post-author-metadata .post-author-name {overflow:auto }
  15.  
  16. /* https://discussions.apple.com/thread/250068516 */
  17.  
  18. /* Persistant question no more */
  19. section.persist-question.shown {
  20.     display: none !important;
  21. }
  22.  
  23. /* expand the size of attached file display */
  24. div.content-post-body-content div.log-attachment-accordion.expanded,
  25. div.content-post-body-content div.log-attachment-content-wrapper {
  26.   height: 800px !important;
  27.   max-height: 800px !important; /* cover all bases both height and max-height */
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement