Advertisement
rccharles

advanced ASC adjustment

Mar 18th, 2019
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.81 KB | None | 0 0
  1.  
  2. /* Hide badges :-)
  3. div#main-content nav.sub-nav-desktop
  4. [aria-label="Communities"]
  5. */
  6.   div#main-content div.user-expertise {
  7.    /* background: red !important; /* */
  8.    visibility: hidden !important; /* */
  9. }
  10. /* div.user-expertise {
  11.     visibility: hidden !important;
  12. }*/
  13.  
  14. /* The overflow property has the following values:
  15.  
  16.     visible - Default. The overflow is not clipped. It renders outside the element's box
  17.     hidden - The overflow is clipped, and the rest of the content will be invisible
  18.     scroll - The overflow is clipped, but a scrollbar is added to see the rest of the content
  19.     auto - If overflow is clipped, a scrollbar should be added to see the rest of the content
  20. */
  21. .post-author .post-author-metadata .post-author-name {overflow:auto }
  22.  
  23. /* https://discussions.apple.com/thread/250068516 */
  24.  
  25. /* Persistant question no more */
  26. section.persist-question.shown {
  27.     display: none !important;
  28. }
  29.  
  30. /* expand the height of attached file display */
  31. div.content-post-body-content div.log-attachment-accordion.expanded,
  32. div.content-post-body-content div.log-attachment-content-wrapper {
  33.   height: 800px !important;
  34.   max-height: 800px !important; /* cover all bases both height and max-height */
  35. }
  36. /*
  37.    FYI:
  38.      LF is 0a  Unix
  39.      CR is 0d  mac classic
  40.      LFCR is 0a0d windows
  41. */
  42.  
  43. /* expand the width of attached file display */
  44. /* From
  45.    https://discussions.apple.com/thread/250234067?answerId=250443431022#250443431022
  46. */
  47. div.content-post-body-content div.log-attachment-accordion.expanded {
  48.   max-width: 92% !important;
  49. }
  50.  
  51. /* reduce the whiteness of page change region.
  52.    While the orginal let through 34% of the background, it still felt too bright.*/
  53. section.filters-layout div.filters-layout-content div.spinner-wrapper {
  54.   background-color: rgba(155,155,255,0.35); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement