Advertisement
rccharles

asc css for safari

Mar 2nd, 2019
546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.45 KB | None | 0 0
  1. /*
  2. body,
  3. article,
  4. footer {
  5.     background: wheat !important;
  6. }
  7.  
  8.  
  9. div.content-post-body-content div.log-attachment-accordion.expanded,
  10. div.content-post-body-content div.log-attachment-content-wrapper
  11.  {
  12.   height: 800px !important;
  13.   max-height: 800px !important;
  14. }
  15. */
  16.  
  17. /* Adjust December 2018 ASC
  18.  
  19.    Beautify many types of Code.
  20.    https://www.freeformatter.com/css-beautifier.html
  21.  
  22.    parchment #ffffcc
  23.  
  24.    #F2F2F2              light grey, most of the window ¬
  25.                         was this color two releases ago.
  26.  
  27.    silly question at top. Hint on how to get rid of when not set in user's profile
  28.    discussions.apple.com##.shown.persist-question
  29.  
  30.    Wilmut's version dec 20,2018:
  31.    http://wilmut.uk/ASC_CSS.txt¬
  32.  
  33.    General discussion
  34.    https://discussions.apple.com/thread/250028636?page=2
  35. */
  36.  
  37. /* ---------------------------------------------------------------------*/
  38.  
  39. /* adjust background colors
  40.    https://www.quackit.com/css/css_color_codes.cfm  scroll down to "CSS Color Names"
  41. */
  42. body,
  43. article,
  44. footer {
  45.     background: wheat !important;
  46. }
  47.  
  48. /* Dim these originally white area. Make coler a lighter than Wheat above, so
  49.    there is some distinctin from other areas on the screen */
  50. section.content-post.top-answer,
  51. /* Correct reply just after question. */
  52. div.action-bar a.button.button-white,  /* "VIew answer in context" button on correct
  53.                                           reply just after question */
  54. input#create-post-title-input,
  55. /* Title for new post */
  56. div.ql-editor,
  57. /* editor input area */
  58. div.toolbar div.row,
  59. /* icons at the bottom of the input editor */
  60. button.button.button-white,
  61. /* Bottom of post button row */
  62. input#askaquestion    /* Question at top of list of threads */
  63. {
  64.     background: bisque !important;
  65. }
  66.  
  67. blockquote {
  68.     /* light grey was white, most of the window was this color anyway. */
  69.     /*  background: #F2F2F2 !important;  /* very light greay */
  70.     /*  background: #a7aaae !important;  /* light grey */
  71.     background: tan !important;
  72. }
  73.  
  74. /* reply button */
  75. button.button.button-black {
  76.     background: #4a4646 !important;     /* Back to the color it was */
  77. }
  78.  
  79. /* Let's eliminate the all apple.com header. The black band at the top of the page. */
  80. nav#ac-globalnav,
  81. div#ac-gn-placeholder {
  82.     display: none !important;
  83. }
  84.  
  85. /* Adjust My Subscriptions Page */
  86.  
  87. /* Which Community */
  88. div.filters-and-content.allow-overflow td.community-name a {
  89.     font-size: 14px !important;   /* smaller to conserve space */
  90.     font-weight: normal !important;
  91. }
  92.  
  93. /* Thread Title */
  94. div.filters-and-content.allow-overflow a.topic-title-link {
  95.     font-size: 20px !important; /* Larger to stand out. Not perfect. Long
  96.                                    titles will be clipped.  Underline issue. */
  97.     color: black !important;
  98.        /* font-weight: normal !important; /* */
  99. }
  100.  
  101. /* Lose some "whitespace" in my subscriptions */
  102. .topics-component {
  103.     border-spacing: 0 10px !important;
  104. }
  105.  
  106. /* This gives a larger editor window. [ Apple size is 200px ] */
  107. .ql-container {
  108.     height: 300px !important;
  109. }
  110.  
  111. /* Declarate links */
  112. a:link {
  113.     text-decoration: none;
  114.     color: #0047ff;
  115. }
  116. a:visited {
  117.     text-decoration: none;
  118.     color: purple;
  119. }
  120. a:hover {
  121.     text-decoration: underline;
  122.     color: red;
  123. }
  124. a:active {
  125.     text-decoration: underline;
  126.     color: blue;
  127. }
  128. /* } */
  129.  
  130.  
  131.  
  132. /* Hide badges :-) */
  133. div#main-content div.user-expertise {
  134.     /* background: red !important; /* */
  135.    visibility: hidden !important; /* */
  136. }
  137.  
  138. /* The overflow property has the following values:
  139.  
  140.     visible - Default. The overflow is not clipped. It renders outside the element's box
  141.     hidden - The overflow is clipped, and the rest of the content will be invisible
  142.     scroll - The overflow is clipped, but a scrollbar is added to see the rest of the content
  143.     auto - If overflow is clipped, a scrollbar should be added to see the rest of the content
  144. */
  145. .post-author .post-author-metadata .post-author-name {overflow:auto }
  146.  
  147. /* https://discussions.apple.com/thread/250068516 */
  148.  
  149. /* Persistant question no more */
  150. section.persist-question.shown {
  151.     display: none !important;
  152. }
  153.  
  154. /* expand the size of attached file display */
  155. div.content-post-body-content div.log-attachment-accordion.expanded,
  156. div.content-post-body-content div.log-attachment-content-wrapper {
  157.   height: 800px !important;
  158.   max-height: 800px !important; /* cover all bases both height and max-height */
  159. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement