Advertisement
rccharles

minimalist css for asc Mar 31, 2019

Mar 31st, 2019
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.24 KB | None | 0 0
  1. /* Adjust December 2018 ASC
  2.  
  3.    Some colors to pick from:
  4.      https://www.quackit.com/css/css_color_codes.cfm  
  5.    then scroll down to "CSS Color Names"
  6.  
  7.    There is that silly question at top. Hint on how to get rid of when not
  8.    set in user's profile.
  9.    discussions.apple.com##.shown.persist-question
  10.  
  11.    Beautify many types of Code.
  12.    https://www.freeformatter.com/css-beautifier.html
  13.  
  14.    parchment #ffffcc
  15.    #F2F2F2              light grey, most of the window ¬
  16.                         was this color two releases ago.
  17.  
  18.    Color picker
  19.    https://www.quackit.com/css/css_color_codes.cfm
  20.    then scroll down to "CSS Color Names"
  21.  
  22.    Wilmut's version dec 20,2018:
  23.    http://wilmut.uk/ASC_CSS.txt¬
  24.  
  25.    ChitlinsCC's version
  26.    https://discussions.apple.com/thread/250230359?answerId=250428691022#250428691022
  27.  
  28.    General discussion
  29.    https://discussions.apple.com/thread/250028636?page=2
  30.  
  31.    Alternate background colors
  32.    by VikingOSX
  33.    FYI: You will need to adjust the embedded comments.  Change "_" to "/".  *_
  34. body,
  35. article,
  36. footer {
  37.     /* color is Cinereous, a brown shade *_
  38.     background: rgba(152, 129, 123, 0.3) !important;
  39. }
  40.  
  41.  
  42. input#askaquestion    /* Question at top of list of threads *_
  43. {
  44.     background: #d3d3d3 !important;
  45.     -webkit-appearance: textfield !important;
  46.     border-color: #e3dac9 !important;
  47.     border-style: inset !important;
  48. }
  49.  
  50. */
  51.  
  52. /*----------------------------------------------------------*/
  53.  
  54. /* adjust background colors */
  55. body,
  56. article,
  57. footer {
  58.     background: wheat !important;
  59. }
  60.  
  61. /* Dim these originally white area. Make coler a
  62.    lighter than Wheat above, so
  63.    there is some distinctin from other areas on the screen */
  64. section.content-post.top-answer,
  65. /* Correct reply just after question. */
  66. div.action-bar a.button.button-white,  /* "View answer in contect"
  67.                                           button on correct
  68.                                           reply just after question */
  69. input#create-post-title-input,
  70. /* Title for new post */
  71. div.ql-editor,
  72. /* editor input area */
  73. div.toolbar div.row,
  74. /* icons at the bottom of the input editor */
  75. button.button.button-white,
  76. /* Bottom of post button row */
  77. input#askaquestion    /* Question at top of list of threads */
  78. {
  79.     background: bisque !important;
  80. }
  81.  
  82. blockquote {
  83.     /* light grey was white, most of the window was this color anyway. */
  84.     /*  background: #F2F2F2 !important;  /* very light greay */
  85.     /*  background: #a7aaae !important;  /* light grey */
  86.     background: tan !important;
  87. }
  88.  
  89. /* reply button */
  90. button.button.button-black {
  91.     background: #4a4646 !important;     /* Back to the color it was */
  92. }
  93.  
  94. /* Let's eliminate the all apple.com header -- The black band at the top of the page. */
  95. nav#ac-globalnav,
  96. div#ac-gn-placeholder {
  97.     display: none !important;
  98. }
  99.  
  100. /* Adjust My Subscriptions Page */
  101.  
  102. /* Which Community */
  103. div.filters-and-content.allow-overflow td.community-name a {
  104.     font-size: 14px !important;   /* smaller to conserve space */
  105.     font-weight: normal !important;
  106. }
  107.  
  108. /* Thread Title */
  109. div.filters-and-content.allow-overflow a.topic-title-link {
  110.     font-size: 20px !important; /* Larger to stand out. Not perfect. Long
  111.                                    titles will be clipped.  Underline issue. */
  112.    /* color: black !important; */
  113.        /* font-weight: normal !important; /* */
  114. }
  115.  
  116. /* Lose some "whitespace" in my subscriptions */
  117. .topics-component {
  118.     border-spacing: 0 10px !important;
  119. }
  120.  
  121. /* This gives a larger editor window. [ Apple size is 200px ] */
  122. .ql-container {
  123.    --editor-height:400px !important;;
  124. }
  125.  
  126. /* Declarate links. Thanks Roger Wilmut */
  127. a:link {
  128.     text-decoration: none;
  129.     color: #0047ff !important;
  130. }
  131. a:visited {
  132.     text-decoration: none;
  133.     color: purple /*!important*/;
  134. }
  135. a:hover {
  136.     text-decoration: underline;
  137.     color: red !important;
  138. }
  139. a:active {
  140.     text-decoration: underline;
  141.     color: blue !important;
  142. }
  143.  
  144.  
  145. /* avoid tooltips blocking clicking on last row.
  146.    They are now gone.
  147.    Delete when Apple fixes their code.
  148.    
  149.    Note: not all sections have .hide-mobile
  150. */
  151.  div.toolbar div.row section.buttons-group div.rte-tooltip div.tooltip.hide-mobile {
  152.      z-index: -1;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement