Advertisement
rccharles

Tidy up asc's december changes

Jan 7th, 2019
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.33 KB | None | 0 0
  1. @-moz-document domain("communities.apple.com"), domain("discussions.apple.com"), domain("discussionsjapan.apple.com"), domain("discussionskorea.apple.com"), domain("discussionschinese.apple.com"), regexp("https://discussions.apple.com/.*/subscriptions") {
  2. /* Adjust December 2018 ASC
  3.  
  4.    Beautify many types of Code.
  5.    https://www.freeformatter.com/css-beautifier.html
  6.  
  7.    parchment #ffffcc
  8.  
  9.    #F2F2F2              light grey, most of the window ¬
  10.                         was this color two releases ago.
  11.  
  12.    silly question at top. Hint on how to get rid of when not set in user's profile
  13.    discussions.apple.com##.shown.persist-question
  14.  
  15.    Wilmut's version dec 20,2018:
  16.    http://wilmut.uk/ASC_CSS.txt¬
  17.  
  18.    General discussion
  19.    https://discussions.apple.com/thread/250028636?page=2
  20. */
  21.  
  22. /* ---------------------------------------------------------------------*/
  23.  
  24. /* adjust background colors
  25.    https://www.quackit.com/css/css_color_codes.cfm  scroll down to "CSS Color Names"
  26. */
  27. body,
  28. article,
  29. footer {
  30.     background: wheat !important;
  31. }
  32.  
  33. /* Dim these originally white area. Make coler a lighter than Wheat above, so
  34.    there is some distinctin from other areas on the screen */
  35. section.content-post.top-answer,
  36. /* Correct reply just after question. */
  37. div.action-bar a.button.button-white,  /* "VIew answer in context" button on correct
  38.                                           reply just after question */
  39. input#create-post-title-input,
  40. /* Title for new post */
  41. div.ql-editor,
  42. /* editor input area */
  43. div.toolbar div.row,
  44. /* icons at the bottom of the input editor */
  45. button.button.button-white,
  46. /* Bottom of post button row */
  47. input#askaquestion    /* Question at top of list of threads */
  48. {
  49.     background: bisque !important;
  50. }
  51.  
  52. blockquote {
  53.     /* light grey was white, most of the window was this color anyway. */
  54.     /*  background: #F2F2F2 !important;  /* very light greay */
  55.     /*  background: #a7aaae !important;  /* light grey */
  56.     background: tan !important;
  57. }
  58.  
  59. /* reply button */
  60. button.button.button-black {
  61.     background: #4a4646 !important;     /* Back to the color it was */
  62. }
  63.  
  64. /* Let's eliminate the all apple.com header. The black band at the top of the page. */
  65. nav#ac-globalnav,
  66. div#ac-gn-placeholder {
  67.     display: none !important;
  68. }
  69.  
  70. /* Adjust My Subscriptions Page */
  71.  
  72. /* Which Community */
  73. div.filters-and-content.allow-overflow td.community-name a {
  74.     font-size: 14px !important;   /* smaller to conserve space */
  75.     font-weight: normal !important;
  76. }
  77.  
  78. /* Thread Title */
  79. div.filters-and-content.allow-overflow a.topic-title-link {
  80.     font-size: 20px !important; /* Larger to stand out. Not perfect. Long
  81.                                    titles will be clipped.  Underline issue. */
  82.     color: black !important;
  83.        /* font-weight: normal !important; /* */
  84. }
  85.  
  86. /* Lose some "whitespace" in my subscriptions */
  87. .topics-component {
  88.     border-spacing: 0 10px !important;
  89. }
  90.  
  91. /* This gives a larger editor window. [ Apple size is 200px ] */
  92. .ql-container {
  93.     height: 300px !important;
  94. }
  95.  
  96. /* Declarate links */
  97. a:link {
  98.     text-decoration: none;
  99.     color: #0047ff;
  100. }
  101. a:visited {
  102.     text-decoration: none;
  103.     color: purple;
  104. }
  105. a:hover {
  106.     text-decoration: underline;
  107.     color: red;
  108. }
  109. a:active {
  110.     text-decoration: underline;
  111.     color: blue;
  112. }
  113. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement