Advertisement
rccharles

asc combined nov 10,2016

Nov 10th, 2016
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 98.24 KB | None | 0 0
  1. /*
  2.  
  3. Custom Cascading Style Sheet for Apple Support Communities board system introduced in 2016-06      
  4.      
  5.     Copyright (c) 2014, 2016 Hiroto, et. al.
  6.     All rights reserved.
  7.  
  8.     Redistribution and use in source and binary forms, with or without
  9.     modification, are permitted provided that the following conditions are met:
  10.  
  11.     1. Redistributions of source code must retain the above copyright notice, this
  12.        list of conditions and the following disclaimer.
  13.     2. Redistributions in binary form must reproduce the above copyright notice,
  14.        this list of conditions and the following disclaimer in the documentation
  15.        and/or other materials provided with the distribution.
  16.  
  17.     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  18.     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  19.     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  20.     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  21.     ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  22.     (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  23.     LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24.     ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  26.     SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  
  28.     The views and conclusions contained in the software and documentation are those
  29.     of the authors and should not be interpreted as representing official policies,
  30.     either expressed or implied, of the Custom Styles Project.    
  31.    
  32.     For more information on how to install this css and what the css does, see:      
  33.     https://discussions.apple.com/docs/DOC-7501  
  34.  
  35.     v0.32 by rccharles
  36.          - Positioning tweaks
  37.  
  38.     v0.31 by rccharles
  39.          - adjustments for Nov 2016 ASC changes
  40.          - adjust position of Avatars
  41.          - level icon for original poster
  42.  
  43.     v0.30 by rccharles
  44.          - Smart phone support
  45.          - Use BSD copyright notice
  46.          - (min-width: 500px) and (max-width: 600px)
  47.  
  48.     v0.22 by rccharles
  49.          - Adjusted original poster info.
  50.          
  51.     v0.21 by rccharles
  52.          - Updates for 7-7-2016 ASC changes.  Adjusted reply poster info names.
  53.  
  54.     v0.2 by rccharles
  55.         - scrolling of large code blocks "advanced >> plain"
  56.         - reformat buttons
  57.         - nav list to horizontal for small windows
  58.         - option to sink legalistic bombblast.
  59.             Look for .~.~.~.~.~.~.~. then uncomment the three lines following
  60.         - expanded the display of posts in a discussion to view all posts.  
  61.             Thanks turingtest2
  62.         - colored backgrounds for posts
  63.         - turingtest2's fix for copy & paste in tinyMCE
  64.         - turingtest2's fix to get rid of answered and helpfuls at the top of every
  65.             page.
  66.         - light blue in tool icon pulldowns
  67.         - link popup on simple edit
  68.             Look for -.-.-.-.-.-.-.- then uncomment the line following
  69.         - Move who replied to the left margin.
  70.         - Move original poster's info to the left margin
  71.        
  72.    
  73.    
  74.     v0.11
  75.         - introduced @media rules in THREAD LIST BROWSER and PLACES sections:
  76.             @media all and ( max-width: X ) rule
  77.             @media all and ( min-width: Y ) rule
  78.        
  79.         - added, refined and fixed rules in various sections, which include but not limited to
  80.             BODY
  81.                 - changed #body-apple {width: 100%} to {width: auto}, which is essential to
  82.                   prevent horizontal scroller from appearing in narrow window environment.
  83.             TEXT > font
  84.                 - added rules to use fine local font in lieu of illegible remote font
  85.             ASC TOP PAGE
  86.                 - added rules on 'search or ask a question', 'featured topics' etc
  87.             COMMUNITIES CATEGORIES OVERVIEW
  88.                 - new section
  89.             THREAD LIST BROWSER > community overview
  90.                 - added and refined rules (treating filter ui layout)
  91.             PROFILE > content
  92.                 - new subsection (treating browser control ui layout)
  93.             BLOG
  94.                 - new section
  95.             UNAUTHORIZED
  96.                 - new section
  97.  
  98.     v0.10d
  99.         - draft
  100.  
  101.     written by Hiroto, 2016-06
  102. */
  103. @-moz-document
  104.     domain(communities.apple.com),  /* Português & Spanish */
  105.     domain(discussions.apple.com),
  106.     domain(discussionsjapan.apple.com),
  107.     domain(discussionskorea.apple.com),
  108.     domain(discussionschinese.apple.com)
  109. {
  110.     /* ---------------------------------------------------------------------------------
  111.         BODY
  112.     */
  113.     body.j-body-welome,             /* Welcome */
  114.     body.j-body-place,              /* Community */
  115.     body.j-body-yourwork,           /* Content */
  116.     body.j-body-home,               /* Activity */
  117.     body.j-body-yourconnections,    /* People */
  118.     body.j-body-preferences,        /* Preferences */
  119.     body.jive-body-content,         /* Thread */
  120.     body.jive-body-search,          /* Search */
  121.     body.jive-view-profile          /* Profile */
  122.     {                                                                              
  123.         background: #F2F2F2 !important; /* light grey was white, most of the window
  124.         was this color anyway. */
  125.     }
  126.     body {
  127.         min-width: 0px !important;
  128.     }
  129.    
  130.     /* Note: #body-apple is a div the covers the whole document.  
  131.        So, it overrides the body tag. */
  132.     #body-apple {
  133.         width: auto !important;
  134.         min-width: 0px !important;
  135.         background: #f2f2f2  !important;
  136.     }
  137.     #globalheader { display: none !important; }                                    
  138.     #global-nav-wrapper {display: none !important; }                                
  139.     #globalfooter,
  140.     #globaldisclaimer { width: 80% !important; }                                    
  141.  
  142.    
  143.  
  144.     /* ---------------------------------------------------------------------------------
  145.         TEXT
  146.     */                                                                                  /* NEW */
  147.     body {
  148.         font-size: 16px !important;
  149.         font-weight: 400 !important;
  150.         line-height: 1.25 !important;
  151.     }
  152.     body * {
  153.         /* font-size: inherit !important; */
  154.        font-weight: inherit !important; /*  turns off bolding. 0.2 */
  155.        line-height: inherit !important;
  156.     }
  157.    
  158.  
  159.    
  160.     /* font
  161.        
  162.          
  163.           lang | remote font name
  164.           -----|-----------------
  165.             ja | "Apple TP"
  166.             ko | "Yoon Gothic"
  167.             zh | "PingHei"
  168.             en | "Myriad Set Pro"
  169.             es | "Myriad Set Pro"
  170.             pt | "Myriad Set Pro"
  171.     */                                                                    /* NEW (experimental) */
  172. /*
  173.     * { font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial,
  174.         Verdana, sans-serif !important; }
  175. */
  176.     [lang|="ja"] * {
  177.         font-family: "Hiragino Kaku Gothic Pro", "Meiryo",
  178.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  179.     }
  180.     [lang|="ko"] * {
  181.         font-family: "Apple Gothic", "HY Gulim", "MalgumGothic", "HY Dotum", "Lexi Gulim",
  182.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  183.     }
  184.     [lang|="zh"] * {
  185.         font-family: "STHeitiSC-Light",
  186.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  187.     }
  188.     [lang|="en"] *,
  189.     [lang|="es"] *,
  190.     [lang|="pt"] * {
  191.         font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  192.     }
  193.    
  194.     /* Start 0.2 additions */
  195.    
  196.    
  197.     /* Reduce white space in user tips */
  198.     /* Put bolding back.  body * is too strong above.  Hack strong back! */
  199.     strong {
  200.         font-weight: bold !important;}
  201.    
  202.     /* No line after Communities.  Waste of space and doesn't separate anything.
  203.            https://discussions.apple.com/community/mac_os/mac_os_x_technologies/content  */
  204.     div#j-header-wrap header nav#j-globalNav-bg {border-bottom: 0px !important; }
  205.    
  206.     /* The problem is caused by a fixed hight of 18px that has been assigned to
  207.        elements of the class j-comm-entry.  Fix by Turingtest2. 0.31 */
  208.     .j-comm-entry {height: auto !important;}                                              
  209.  
  210.     /* ??? */
  211.      select#j-sort.form-cell.form-dropdown option {
  212.          padding: 5px 6px 5px 8px !important;
  213.          font-size: 14px !important;
  214.          width: 180px !important;      /* Was 220px */
  215.          /*color:green !important;/**/
  216.        }
  217.                                                                                    
  218.     /* highlights in dark blue unread posts when logged in.  v0.6      
  219.      
  220.     All your posts      
  221.         https://discussions.apple.com/content?filterID=participated~objecttype~objecttype[thread]        
  222.      
  223.     Discussions you authored      
  224.         https://discussions.apple.com/content?filterID=contentstatus[published]~objecttype~objecttype[thread]        
  225.      
  226.     To see the discussions you have read and not read in a community      
  227.     The suffix to use for any ASC forum, placed after the basic link to any forum, it's      
  228.         /content?filterID=contentstatus[published]~objecttype~objecttype[thread]      
  229.      
  230.     for iPhone community this would be:      
  231.         https://discussions.apple.com/community/iphone/using_iphone/content
  232.             ?filterID=contentstatus[published]~objecttype~objecttype[thread]        
  233.      
  234.      
  235.     */  
  236.     .j-td-title strong {
  237.         color:#191970 !important;
  238.         font-weight: normal !important;}  
  239.    
  240.     /* Prevent capitalization of user names there. (Mine becomes Turingtest2 on
  241.          that page and nowhere else, which is daft!) */
  242.     .jive-username-link {text-transform: none !important;} /* Remove username
  243.                                                               capitalization */
  244.          
  245.    
  246.     /* Scroll code listings.  set max-height of syntax highlighted code in thread      
  247.        content browser   */      
  248.     .jive-rendered-content .dp-highlighter {    
  249.        max-height: 500px !important;      
  250.        overflow: auto !important;      
  251.     }                                                                                  
  252.     /* Scroll code listings. set max-heiht of pre code (visible when javascript is disabled)  */      
  253.     .jive-rendered-content pre {      
  254.        max-height: 500px !important;      
  255.        overflow: auto !important;      
  256.     }  
  257.    
  258.     /* Rambling footer stuff will be sunk              
  259.        no more legalistic bomblast.
  260.        Read about Apple's worries on the Welcome page.
  261.        .~.~.~.~.~.~.~. */      
  262. /*  footer #globaldisclaimer {display: none !important; } */        
  263.     /* Not a complete path to here, so why be misleading */      
  264. /*  footer nav.footer-breadory {display: none !important; }    */      
  265.     /* Guess by now folks know how to buy an apple product */      
  266. /*  p.gf-buy {display: none !important; } */    
  267.    
  268.     /* end 0.2 additions */
  269.    
  270.     /* preseve monospace for pre.jive-pre */
  271.     pre.jive-pre { font-family: monospace !important; }
  272.  
  273.    
  274.     /* ---------------------------------------------------------------------------------
  275.         ASC HEADER, FOOTER AREA
  276.     */
  277.     #j-header,
  278.     #j-compact-header,
  279.     #j-footer { width: 100% !important; }
  280.    
  281.     /* navigation header (Apple Support Communities ...) */
  282.     #j-header-wrap {
  283.         padding: 0px 40px !important;
  284.         margin: 0px 0px 15px !important;
  285.     }
  286.     #j-globalNav-bg {
  287.         padding: 0pX !important;
  288.         margin: 0px !important;
  289.         width: auto !important;                                         /* NEW */
  290.     }
  291.     #j-satNav { overflow: visible !important; }
  292.  
  293.     #j-header-wrap { margin-bottom: 50px !important; }                                  /* NEW */
  294.     #apple-full-header { margin: 10px 0px 0px !important; }                             /* NEW */
  295.     #second-row {                                                                       /* NEW */
  296.         padding-top: 25px !important;
  297.         height: 30px !important;
  298.     }
  299.  
  300.     /* announcement  Let's adjust in the header 9-20-2016 */  
  301.    
  302.  
  303.    /* breadcrumb         NEW */
  304.     #jive-breadcrumb {
  305.         width: auto !important;
  306.         margin-right: 40px !important;
  307.         position: relative !important;
  308.    
  309.     }
  310.    
  311.     /* footter           NEW */
  312.     .j-js-footer-wrap {
  313.         width: auto !important;
  314.         min-width: 0px !important;
  315.     }
  316.     footer#j-footer {
  317.         width: auto !important;
  318.         min-width: 0px !important;
  319.     }
  320.  
  321.  
  322.     /* ---------------------------------------------------------------------------------
  323.         ASC TOP PAGE
  324.     */
  325.     .j-body-welcome #jive-alert { margin: 0px 40px !important; }
  326.     .j-body-welcome .hero-container img { width: auto !important; }
  327.     .j-body-welcome.j-body-home [id|=jive-widgetframe] > .content-large {
  328.         text-align: center !important;
  329.         overflow-x: auto !important;
  330.         overflow-y: hidden !important;
  331.     }
  332.     .apple-communities {
  333.         display: inline-block !important;
  334.         width: auto !important;
  335.         text-align: left !important;
  336.     }
  337.  
  338.     /* search or ask a question */
  339.     .ask-a-question-container .j-form input[type="text"] { width: 90% !important; }
  340.  
  341.     /* featured topics */
  342.     .jive-widget-featuredcontentwidget h2 {
  343.         font-size: 28px !important;
  344.     }
  345.     .jive-widget-featuredcontentwidget .content-large .featured-content-header {
  346.         padding-bottom: 30px !important;
  347.     }
  348.     .jive-widget-featuredcontentwidget .content-large .featured-content-header
  349.       p.sub-title {
  350.         margin: 10px 0px 20px !important;
  351.     }
  352.     .jive-widget-featuredcontentwidget .featured-list-container {
  353.         max-width: 1000px !important;
  354.     }
  355.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-row {
  356.         margin-bottom: 20px !important;
  357.         border-style: dotted !important;
  358.         border-width: thin !important;
  359.     }
  360.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-user {
  361.         margin: 0px 10px !important;
  362.     }
  363.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc {
  364.         margin: 0px 10px !important;
  365.     }
  366.     .jive-widget-featuredcontentwidget h4.title {
  367.         font-size: 18px !important;
  368.         margin: 10px 0px !important;
  369.         text-decoration: underline !important;
  370.     }
  371.     .jive-widget-featuredcontentwidget .rating-row,
  372.     .jive-widget-featuredcontentwidget .featured-list-container
  373.       .featured-list-desc blockquote,
  374.     .jive-widget-featuredcontentwidget .featured-list-container
  375.       .featured-list-desc .user-metadata {
  376.         margin-bottom: 10px !important;
  377.     }
  378.    
  379.     /* new to communities? */
  380.     .on-boarding .on-boarding-header h2 {
  381.         font-size: 28px !important;
  382.         margin: 0px 0px 25px !important;
  383.     }
  384.     .on-boarding .img-container { margin: 0px auto 30px !important; }
  385.    
  386.     /* how-to grid */
  387.     .on-boarding > .grid-display {
  388.         margin-top: 40px !important;
  389.         padding: 20px 0px !important;
  390.         max-width: 1000px !important;
  391.         display: inline-block !important;
  392.     }
  393.     .on-boarding .row .column h3 {
  394.         margin: 0px 30px 20px !important;
  395.         max-height: 50% !important;
  396.     }  
  397.  
  398.  
  399.     /* -------------------------------------------------------------------------------
  400.         COMMUNITIES CATEGORIES OVERVIEW
  401.     */                                                                       /* NEW */
  402.     /* communities description */
  403.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image {
  404.         width: 200px !important;
  405.         position: absolute !important;
  406.         z-index: -1 !important;
  407.     }
  408.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image img {
  409.         width: 200px !important;
  410.         height: 200px !important;
  411.     }
  412.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description {
  413.         margin-bottom: 45px !important;
  414.     }
  415.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description h1 {
  416.         font-size: 28px !important;
  417.         margin: 30px 0px !important;
  418.     }  
  419.    
  420.     /* top communities */
  421.     .apple-space-overview  h2.community-title {
  422.         font-size: 24px !important;
  423.         margin: 0px 0px 20px !important;
  424.     }
  425.     .apple-space-overview .category-latest-header h3 {
  426.         font-size: 22px !important;
  427.         margin: 0px 0px 20px !important;
  428.     }
  429.     .apple-space-overview .category-latest h3,
  430.     .apple-space-overview .category-latest h4 { font-size: 20px !important; }
  431.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large      
  432.         { padding: 10px !important; }
  433.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large > nav
  434.         { padding-top: 0px !important; }
  435.     .apple-space-overview .jive-widget-recentcontentfilterwidget {
  436.         padding-bottom: 10px !important;
  437.         margin-bottom: 0px !important;
  438.     }
  439.    
  440.     /* search for more topics */
  441.     .apple-space-overview .category-page .ask-a-question-header {
  442.         margin-top: 20px !important;
  443.         width: auto !important;
  444.     }
  445.     .apple-space-overview .category-page .ask-a-question-header h2
  446.         { font-size: 24px !important; }
  447.     .apple-space-overview .category-page .ask-a-question-container {
  448.         width: 80% !important;
  449.         max-width: 1000px !important;
  450.         margin: 30px auto !important;
  451.     }
  452.     .apple-space-overview .category-page .ask-a-question-container
  453.       .j-form input[type="text"] {
  454.         padding: 10px 10px 10px 50px !important;
  455.         width: 94% !important;
  456.     }
  457.     .apple-space-overview .category-page .ask-a-question-footer {
  458.         margin: 40px 0px !important; }
  459.    
  460.     /* contact apple support */
  461.     .apple-space-overview .section-eyebrow { font-size: 24px !important; }
  462.     .apple-space-overview .section-header {
  463.         font-size: 22px !important;
  464.         margin: 0px 0px 30px !important;
  465.     }
  466.        
  467.    
  468.     /* -------------------------------------------------------------------------------
  469.         THREAD LIST BROWSER
  470.     */
  471.  
  472.     /* ------------------
  473.         community overview
  474.     */                                                                        /* NEW */
  475.     .category-latest .category-latest-container .category-latest-row {
  476.         margin: 0px !important;
  477.         padding: 5px 0px !important;
  478.     }
  479.     .category-latest .category-latest-container
  480.       .category-latest-row .discussion-metadata
  481.         {
  482.         margin: 5px 0px !important;
  483.         }
  484.     .category-latest .category-latest-container .category-latest-row
  485.       .discussion-title a {
  486.         font-size: 100% !important;
  487.         font-weight: 500 !important;
  488.         color: rgb(0, 136, 204) !important;
  489.         /* background-color: antiquewhite !important;/**/
  490.     }
  491.     .category-latest .category-latest-container .category-latest-row:nth-child(odd) {
  492.         background: rgb(247, 247, 247) !important;
  493.     }
  494.     .category-latest .category-latest-container .category-latest-row .read-full {
  495.         display: none !important;
  496.     }
  497.     .category-latest .category-latest-container .category-latest-row
  498.       .discussion-metadata .cell {
  499.         margin-right: 15px !important;
  500.     }
  501.     .category-latest .category-latest-container .category-latest-row
  502.       .discussion-metadata .cell a {
  503.         color: rgb(0, 136, 204) !important;
  504.         text-decoration: none !important;
  505.         /* background-color: antiquewhite !important;/**/
  506.     }
  507.    
  508.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar {
  509.         margin: 0px 70px 10px 0px !important;
  510.     }
  511.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar
  512.       .ask-a-question-space-icon {
  513.         width: 128px !important;
  514.         height: 128px !important;
  515.     }
  516.     .apple-space-overview #body-apple .list-page .ask-a-question-wrapper
  517.       .community-siblings {
  518.         padding: 5px 0px !important;
  519.         font-size: 20px !important;
  520.     }
  521.  
  522.     /* content filter (by type (solved|recommended|unanswered) & category) */
  523.     .jive-content-filter {
  524.         width: 20% !important;
  525.         max-width: 250px !important;
  526.         min-width: 100px !important;
  527.         padding: 0px 10px 0px 0px !important;
  528.     }
  529.     .jive-content-filter h2 {
  530.         margin-bottom: 15px !important;
  531.         font-weight: 500 !important;
  532.     }
  533.     .jive-content-filter ul li { margin: 3px 0px !important; }
  534.     .jive-content-filter ul li:nth-child(odd)
  535.         { background: rgb(247, 247, 247) !important; }
  536.     .jive-content-filter ul li a.jive-content-filter-highlight
  537.         { background: rgb(230, 240, 230) !important; }
  538.     /* ------------------ */
  539.    
  540.  
  541.     /* show author name in 'Latest activity' column in detailed list view of threads */
  542.     td.j-td-date > span { display : inherit !important; }
  543.  
  544.     /* main section */
  545.     #j-main { padding: 0px !important; }
  546.  
  547.     /* table cell title */
  548.     .jive-table td.jive-table-cell-title { padding: 5px !important; }
  549.        
  550.     /* thread list view column widths */                                            
  551.     .j-browse-details .j-td-title { max-width: none !important; }
  552. /*  ======   .j-browse-details .j-td-date {
  553.         width: auto !important;
  554.         max-width: 20% !important;
  555.     }*/
  556.    
  557.     /* thread list view: read thread font weight
  558.                                                            NEW (feature restored) */
  559.     /* I'll go with dark blue.  In an earlier implementation of ASC,
  560.        the bolded fond wasn't that noticeable, so
  561.        a dark blue was picked.  Might as well stay with it.                    0.2 */
  562.  /*   .j-browse-details .j-td-title strong { font-weight: 600 !important; }  */
  563.        
  564.   /* span.curent-page,
  565.     span.j-pagination.pagination.botom span.class.current-page
  566.     {font-size: 32px !important;
  567.     background-color: burlywood !important;}*/
  568.    
  569.     /* ================================================= */
  570.     /* list of discussions adjustment for narrow windows */
  571.     @media all and ( min-width: 500px ) and ( max-width: 1099px ) {
  572.         /* ------------------
  573.             Treatment for narrow window
  574.             Hide Like and Bookmark columns in thread list view if
  575.               viewport width <= 1098 (= 1265 - 166)
  576.         */      
  577.            
  578.          /*    Table headers to ditch: like & bookmark headers.
  579.             th + th hits 2 or more td's! Hence, it hits the lower td's.
  580.             So, you need to fix up the lower td's. */
  581.         .j-browse-details .j-td-likes,
  582.         .j-browse-details .j-td-bookmarks { display: none !important; }
  583.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th,
  584.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th + th
  585.             { display: none !important; }
  586.         /* Let the element behave like a <td> element
  587.            And recover from the ditch above.  */
  588.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr >
  589.           th + th + th + th {
  590.             /*background-color: antiquewhite !important;/**/
  591.             display: table-cell !important; }
  592.        
  593.         /* status
  594.            Vertical align table cells. Hassle.
  595.            For details on how, see: http://vanseodesign.com/css/vertical-centering/ */
  596.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon  {            
  597.             display:inline-block;
  598.             white-space: normal !important;
  599.             vertical-align: middle !important;
  600.             display:table-cell !important;}
  601.        
  602.          /* title */
  603.         .j-browse-details .j-td-title {
  604.            padding-top: 10px !important;
  605.            padding-bottom: 10px !important;
  606.            /*background-color: pink !important;/**/
  607.          }
  608.        
  609.         .j-browse-details .j-td-title
  610.           p.j-browse-content-location.font-color-meta-light {                  
  611.             margin-bottom: 0  !important;
  612.             /*background-color: antiquewhite !important;/**/
  613.         }
  614.        
  615.        
  616.     } /* end of media */
  617.  
  618.  
  619.     /* ================================================= */
  620.     /* list of discussions adjustment for small windows found on lanscaped smart phones
  621.                 all and ( min-width: 400px ) and ( max-width: 499px )*/
  622.     @media all and ( max-width: 499px )
  623.     {
  624.         /* ------------------
  625.             Treatment for small window
  626.         */  
  627.        
  628.         /* status, Title & Latest activite (time)
  629.            Vertical align table cells. Hassle.
  630.            For details on how, see: http://vanseodesign.com/css/vertical-centering/ */
  631.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon ,
  632.         .j-browse-details .j-td-title,
  633.         .j-browse-details .j-td-date
  634.         {            
  635.             display:inline-block;
  636.             white-space: normal !important;
  637.             vertical-align: middle !important;
  638.             display:table-cell !important;}
  639.        
  640.         table.j-browse-list {
  641.             table-layout: fixed !important;
  642.             margin-top: 20px !important;
  643.             /*background-color: yellow !important;/**/}
  644.        
  645.         /* data columns to ditch.
  646.            fyi: I think apple got rid of likes. */
  647.         .j-browse-details .j-td-likes,
  648.         .j-browse-details .j-td-bookmarks {
  649.            display: none !important;
  650.             /* background-color: yellow !important;/**/
  651.           }
  652.        
  653.        
  654.         /* problem with addressing first and second columns,
  655.            because of the colspan="2" in
  656.            header row.  */
  657.          .j-browse-details > table.j-browse-list > thead.j-rc4 > tr  {
  658.             display:none !important;
  659.         }
  660.              
  661.          /* status */
  662.          div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon {  
  663.             width: 20px !important;/**/
  664.             padding-left: 0 !important;
  665.             padding-right: 3px !important;
  666.             /*background-color: pink !important;/**/
  667.          }
  668.  
  669.          /* replies */
  670.         div.j-browse-details > table.j-browse-list > tbody > tr >  td.j-td-replies {
  671.             width: 20px !important;/**/
  672.             font-size: 12px !important;/**/
  673.             background-color: antiquewhite !important;/**/  
  674.         }
  675.          /* views */
  676.         div.j-browse-details > table.j-browse-list > tbody > tr >  td.j-td-views {
  677.             width: 32px !important;/**/
  678.             font-size: 12px !important;/**/
  679.             background-color: cornsilk !important;/**/
  680.         }      
  681.         /* Latest activity (date) */
  682.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-date {
  683.            width: 110px !important;/**/
  684.            font-size: 12px !important;/**/
  685.            /*background-color: antiquewhite!important;/**/
  686.           }
  687.         /* Actions */
  688.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-actions {
  689.            width: 24px !important;/**/          
  690.            /* overflow:hidden !important; /**/
  691.            /* background-color: silver !important;/**/
  692.           }
  693.  
  694.        
  695.        /* Try to get rid of the userid.  Hard because of lack of addressability to the
  696.           words in ... to ...
  697.           This strange combo seems the best we can do. */
  698.        .j-browse-details .j-td-title p.j-browse-content-location.font-color-meta-light
  699.         {                  
  700.             margin-bottom: 0  !important;
  701.             /*display: none !important;*/
  702.             visibility: hidden !important;/**/
  703.             /*background-color: antiquewhite !important;/**/
  704.         }
  705.         .j-browse-details
  706.           .j-td-title p.j-browse-content-location.font-color-meta-light a:nth-child(1){    
  707.             margin-bottom: 0  !important;
  708.             /*display: inline !important;/**/
  709.             visibility:  visible !important;/**/
  710.             /*background-color: pink !important;/**/
  711.         }
  712.         .j-browse-details
  713.           .j-td-title p.j-browse-content-location.font-color-meta-light a:nth-child(2){    
  714.             margin-bottom: 0  !important;
  715.             display: none !important;/**/
  716.             /*visibility:  visible !important;/**/
  717.             /*background-color: cornsilk !important;/**/
  718.         }      
  719.        
  720.     } /* end of media */
  721.  
  722.    
  723.     /* ================================================= */
  724.     /* list of discussions adjustment for small windows found on
  725.        potraited smart phones */
  726.     @media all and ( max-width: 399px )
  727.     {
  728.         /* ------------------
  729.             Treatment for small window
  730.         */  
  731.        
  732.         /* lot of other apps do not have padding (margin) on smart phones. */
  733.         div#body-apple {
  734.             padding-left: 2px !important;
  735.             padding-right: 2px !important;
  736.         }
  737.        
  738.          /* status */
  739.          div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon {  
  740.             padding-right: 1px !important;
  741.             /*background-color: pink !important;/**/
  742.          }
  743.          /* title */
  744.          div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-title a  {
  745.            font-size: 13px !important;
  746.            /* background-color: yellow !important;/**/
  747.          }
  748.          div.j-browse-details > table.j-browse-list > tbody >
  749.            tr > td.j-td-title div  p a {  
  750.            font-size: 11px !important;
  751.          }
  752.        
  753.         /* status */
  754.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon span {
  755.            /* background-color: teal!important;/**/
  756.         }
  757.            
  758.         /* Latest activity (date) */
  759.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-date {
  760.            width: 40px !important;/**/
  761.            font-size: 12px !important;/**/
  762.            /*background-color: antiquewhite!important;/**/
  763.           }
  764.         /* Actions */
  765.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-actions {
  766.            width: 20px !important;/**/  
  767.            /* Vertical align table cells. Hassle. */
  768.            display:inline-block;
  769.            white-space: normal !important;
  770.            vertical-align: middle !important;
  771.            display:table-cell !important;    
  772.            /*background-color: silver !important;/**/
  773.           }        
  774.              
  775.     } /* end of media all and ( max-width: 399px ) */
  776.  
  777.     /* user name link */
  778.     .jive-username-link { text-transform: none !important; }                        
  779.  
  780.     /* threads list view table tr td  */                                  /* CHANGED */
  781.     .j-browse-details-tbody tr td { padding: 2px !important; } /* */
  782.  
  783.     /* threads list view left most icon */                                /* NEW */
  784.     .j-browse-details-tbody .j-td-icon { padding: 0px 6px 0px !important; }
  785.    
  786.     /* communities list view table tr td */
  787.     .jive-communities-listing table tr td { padding: 5px !important; }
  788.    
  789.     /* thumbnails view width */
  790.     .j-browse-content .j-thumb-view,
  791.     .j-browse-places .j-browse-thumbnails,
  792.     .j-browse-people .j-browse-thumbnails { width: 100% !important; }
  793.    
  794.     /* thumbnail view list item margin */                                          
  795.     .j-browse-content .j-thumb-view > li,
  796.     .j-browse-places .j-browse-thumbnails > li { margin-right: 20px !important; }
  797.    
  798.     /* thumbnail view article font size */                                 /* NEW */
  799.     .j-thumb article { font-size: inherit !important; }
  800.    
  801.     /* thunbnail view article header height */                             /* NEW */
  802.     .j-content-thumb header { height: 22px !important; }
  803.  
  804.     /* thumbnail view article header font size */                          /* NEW */
  805.     .j-thumb header h4.shrunk { font-size: 80% !important; }
  806.     .j-browse-content .j-content-thumb header .icon {
  807.         font-size: 16px !important;
  808.         margin: 0px 8px 0px 0px !important;
  809.     }
  810.    
  811.     /* thumbnail view article height */                                    /* NEW */
  812.     .j-browse-content .j-content-thumb article { height: 120px !important; }
  813.    
  814.     /* thumbnail view footer */                                            /* NEW */
  815.     .j-browse-content .j-content-thumb.j-thumb footer {
  816.       padding: 4px 0px 0px !important; }  
  817.  
  818.    
  819.     /* social actions row */
  820.     .apple-social-actions-wrapper { margin-right: 0px !important; }
  821.     .j-thread .j-social-actions { margin-right: 40px !important; }
  822.  
  823.     /* apple header, subheader row ("Find helpful contents..." etc )*/              
  824.     #apple-full-subheader,
  825.     #apple-activity-subheader {
  826.         padding: 0px 40px 15px !important;
  827.         margin-bottom: 15px !important;
  828.     }
  829.     #apple-full-header h2,
  830.     #apple-activity-header h2 { padding: 0px 40px !important; }
  831.  
  832.     /* page header */
  833.     .j-body-place #jive-body > header.j-page-header {
  834.         margin-left: 40px !important;
  835.         margin-right: 40px !important;
  836.         width: auto !important;
  837.     }
  838.    
  839.     /* pagenation */                                                         /* NEW */
  840.     .j-pagination-prevnext > .j-pagination-prev,
  841.     .j-pagination-prevnext > .j-pagination-next { font-size: 0px !important; }  
  842.    
  843.    
  844.     /* browser filter row */
  845.     #j-browse-filters { margin-bottom: 5px !important; }
  846.  
  847.     /* browser controls row */
  848.     .j-type-row { margin-bottom: 0px !important; }
  849.  
  850.     /* browser controls content types (All Contents|User Tips|Discussions) width */
  851.     #js-browse-controls .j-type-row .j-content-types { width: 90% !important; }
  852.    
  853.     /* browser controls view toggle (Thumbnails|Details) width */
  854.     #js-browse-controls #j-item-view-toggle {
  855.         width: 10% !important;
  856.         display: table !important;
  857.     }
  858.  
  859.     /* content filter row (All|Open|Answered|Threads) */
  860.     .j-content-filter {
  861.         background: white !important;
  862.         margin-bottom: 10px !important;
  863.     }  
  864.    
  865.     /* container canvas */
  866.     .j-contained {
  867.         margin-left: 40px !important;
  868.         margin-right: 40px !important;
  869.     }
  870.  
  871.     /* more search results available */
  872.     #j-more-search-results-available { padding: 10px !important; }
  873.    
  874.     /* misc */
  875.     .jive-widget { margin-bottom: 10px !important; }
  876.     .j-column { margin-bottom: 10px !important; }
  877.    
  878.     /* ================================================= */
  879.     /* for both medium and large displays */
  880.     @media all and ( min-width: 400px )
  881.     {
  882.         /* display titles */
  883.         thead.j-rc4.u-hide--small.u-hide--tablet{
  884.             display:table-header-group !important;/**/
  885.             /*background-color: yellow !important; /**/
  886.         }
  887.        
  888.     }
  889.  
  890.  
  891.     /* ================================================= */
  892.     @media all and ( min-width: 1265px )
  893.     {
  894.         /* ------------------
  895.             Treatment for wide window
  896.             Method 1 (minimum optimisation)
  897.    
  898.             Adjust thread list table's shift and margin to maximize its width.
  899.         */                                                                              
  900.         .j-layout-sl.j-browse-content .j-column-wrap-l {
  901.             margin-left: -166px !important; }
  902.         .j-layout-sl.j-browse-content .j-column-l { margin-left: 166px !important; }
  903.         .j-layout-sl.j-browse-content .j-column-s { width: 166px !important; }
  904.     } /* media all and ( min-width: 1265px ) */
  905.  
  906.    
  907.      /* ================================================= */
  908.     @media all and ( max-width: 1265px )
  909.     {
  910.         /* ------------------
  911.             Treatment for narrow window
  912.             Method 2 (more beneficial to narrow window but has disadvantage
  913.             for wide window)
  914.            
  915.             Let thread list table have full width but not exceed 1019px to make
  916.             room for sidebar ui (filters & actions).  If window is wide enough
  917.             (>=1265px), sidebar ui is displayed next to thread list table,          
  918.             otherwise it is displayed below or above it (depending upon its
  919.             document tree order).
  920.            
  921.             * sidebar width (constant)    = 166px
  922.             * thread table max width      = 1019px
  923.             * canvas margin-left          = 40px
  924.             * canvas margin-right         = 40px
  925.             ---------------------------------------
  926.             * total                       = 1265px
  927.         */                                                                              
  928.         .j-layout-sl.j-browse-content .j-column-wrap-l {
  929.             max-width: 1019px !important; }
  930.         .j-layout-sl.j-browse-content .j-column-wrap-l { margin-left: 0px !important; }
  931.         .j-layout-sl.j-browse-content .j-column-l      { margin-left: 0px !important; }
  932.         .j-layout-sl.j-browse-content .j-column-s      { width: 166px !important; }
  933.     }  /* media all and ( max-width: 1265px ) */
  934.  
  935.  
  936.     /* ------------------
  937.         Swap left-right positions of thread list table and sidebar ui
  938.         (filters & actions)
  939.     */                                                                              
  940.     /* let thread list table float left */
  941.     .j-layout-sl.j-browse-content .j-column-wrap-l,
  942.     .j-layout-sl.j-browse-places .j-column-wrap-l { float: left !important; }
  943.  
  944.     /* let sidebar ui float right */
  945.     .j-layout-sl.j-browse-content .j-column-s,
  946.     .j-layout-sl.j-browse-places .j-column-s { float: right !important; }
  947.     /* ------------------ */
  948.  
  949.  
  950.     /* ------------------
  951.         leader board
  952.     */
  953.     /* .jive-widget.jive-box.j-rc5.jive-widget-leaderboardwidget */
  954.    
  955. /*
  956.     .jive-widget-leaderboardwidget {display: none !important; }                    
  957. */
  958.  
  959.     .jive-widget-leaderboardwidget { max-width: 1000px !important; }                        
  960.     .jive-widget-leaderboardwidget .j-bigtab-nav .j-tabbar
  961.         { padding-top: 10px !important; }
  962.     .jive-widget-leaderboardwidget .jive-widget-topmembers.split-columns ul li
  963.         { min-height: 0px !important; }
  964.     .jive-widget-leaderboardwidget .top-member-username,
  965.     .jive-widget-leaderboardwidget .top-member-username *
  966.         { font-size: inherit !important; }
  967.     .jive-widget-leaderboardwidget .top-member-username
  968.         { margin-left: 15px !important; }
  969.     .jive-widget-leaderboardwidget .user-level-points {
  970.         font-size: 18px !important;
  971.         margin: 14px 0px !important;
  972.         width: 60px !important;
  973.         height: 30px !important;
  974.         padding: 8px 0px 0px !important;
  975.     }
  976.     .jive-widget-leaderboardwidget .top-member-profile-info { width: 80% !important; }
  977.     .jive-widget-leaderboardwidget .top-member-profile-info > a {
  978.         border-radius: 0% !important;
  979.         width: 60px !important;
  980.         height: 60px !important;
  981.     }
  982.     .jive-widget-leaderboardwidget .top-member-username a.jiveTT-hover-user
  983.         { width: auto !important; }
  984.     .jive-widget-leaderboardwidget .pagination-class { margin-top: 30px !important; }
  985.     /* ------------------ */
  986.  
  987.  
  988.     /* article list
  989.         .j-rc5 is used to identify this list
  990.         e.g., https://discussions.apple.com/article/HT1939 */                      
  991.     .j-layout-sl.j-browse-content.j-rc5 #jive-body-maincol {
  992.         margin: 0px 0px 0px 166px !important; }
  993.  
  994.  
  995.     /* --------------------------------------------------------------------------------
  996.         THREAD CONTENT BROWSER
  997.     */
  998.     /* thread header */
  999.     .apple-thread-header {
  1000.         width: auto !important;
  1001.         margin-bottom: 10px !important;
  1002.         margin-left: 40px !important;
  1003.     }
  1004.  
  1005.     /* thread message */                                                   /* NEW */
  1006.     .j-thread .jive-content .j-thread-post .jive-rendered-content {
  1007.         font-size:   inherit !important;
  1008.     }
  1009.     /* Used for margins around all replies  
  1010.             .j-thread #body-apple .all-replies-container,
  1011.    
  1012.             Used for margins around tinymce
  1013.             .j-thread #body-apple .addReply
  1014.    
  1015.     */
  1016.     .j-thread #body-apple .jive-thread-messages h2.helpful-allreply,
  1017.     .j-thread #body-apple #helpful-container,
  1018.     .j-thread #body-apple .j-thread-post > header .j-post-author,
  1019.     .j-thread #body-apple #j-main #jive-breadcrumb,
  1020.      /* Used for margins around all replies */
  1021.     .j-thread #body-apple .all-replies-container
  1022.     {
  1023.         max-width: inherit !important;
  1024.         margin: 10px 40px !important;
  1025.     }
  1026.    
  1027.     .j-inresponse-to {
  1028.         font-size: inherit !important;
  1029.     }
  1030.    
  1031.     .j-thread .jive-content .j-thread-post > header,
  1032.     .j-thread .jive-content .j-thread-post > h3.header {
  1033.         margin: 15px 0px 10px 0px !important;
  1034.     }
  1035.  
  1036.     /* Adjust orginal question */
  1037.    
  1038.     /* Ajust start position of question on left 03.1 */
  1039.     .j-thread-post section.j-original-message div {padding: 0 !important;}
  1040.    
  1041.     /* title of question. 0.31 */
  1042.     .j-thread-post section.j-original-message h1 {
  1043.         max-width: inherit !important;
  1044.         margin: 0px 60px 20px 60px !important;
  1045.         /* background-color: turquoise !important; /* */
  1046.     }
  1047.    
  1048.     /* Question text */
  1049.     .j-thread-post section.j-original-message .jive-rendered-content {
  1050.         max-width: inherit !important;
  1051.         margin: 0px 25px !important;
  1052.         /* background-color: lightblue !important; /* */
  1053.     }
  1054.    
  1055.     /* original poster profile header */
  1056.     .j-thread .jive-content .j-thread-post > header.js-original-header {
  1057.         max-width: inherit !important;
  1058.         margin: 0px 40px !important;
  1059.         padding: 5px !important;
  1060.         /* background-color: pink !important; /* */
  1061.     }
  1062.    
  1063.  
  1064.     .j-original-message .jive-rendered-content p {
  1065.         font-size:   inherit !important;
  1066.     }
  1067.    
  1068.  
  1069.     /* Q mark */
  1070.     .j-original-message h1 .q-marker {
  1071.         left: -60px !important;
  1072.         font-size: 32px !important;
  1073.     }
  1074.    
  1075.  
  1076.     /* answer rollup */                                                    /* NEW */
  1077.     .j-answer-rollup.span-full-width {
  1078.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  1079.         padding-bottom: 10px !important;
  1080.         margin: 20px 0px 0px 0px !important;
  1081.         border: 1px solid rgb(45, 184, 71) !important;
  1082.     }
  1083.     .j-inline-correct-answer {
  1084.         padding: 0px !important;
  1085.         max-width: inherit !important;
  1086.         margin: 0px 10px !important;
  1087.     }
  1088.     .j-inline-correct-answer section {
  1089.         margin: 10px 0px !important;
  1090.     }
  1091.     /* A mark */
  1092.     .j-inline-correct-answer .answer-marker {
  1093.         left: 0px !important;
  1094.         font-size: 32px !important;
  1095.     }
  1096.    
  1097.  
  1098.     /* persistent question shown at top */                                 /* NEW */
  1099.     .persist-question.persist { display: none !important; }
  1100.  
  1101.    
  1102.     /* Solved and Helpful marker text */                                   /* NEW */
  1103.     .j-thread-post header .j-correct-text,
  1104.     .j-thread-post h3.header .j-correct-text,
  1105.     .j-thread-post header .j-helpful-text,
  1106.     .j-thread-post h3.header .j-helpful-text {
  1107.         font-size: 22px !important;
  1108.         background: none repeat scroll 0% 0% transparent !important;
  1109.         border-style: none !important;
  1110.         margin: 0px !important;
  1111.         padding: 10px !important;
  1112.     }
  1113.  
  1114.    
  1115.     /* thread content */                                                   /* CHANGED */
  1116.     .j-thread .jive-content { margin: 0px 10px 0px 10px !important; }
  1117.  
  1118.    
  1119.     /* thread replies ul */
  1120.     ul.jive-discussion-replies.jive-discussion-indent-0 { margin: 0px !important; }
  1121.    
  1122.     /* thread reply li */
  1123.     .jive-discussion-replies li.reply { margin-top: 15px !important; }
  1124.  
  1125.  
  1126.  
  1127.  
  1128.     /* orgininal poster comment background */                              /* NEW */
  1129.     .original-poster-comment {
  1130.         background: none repeat scroll 0% 0% rgb(247, 247, 237) !important;
  1131.         top:    0px !important;
  1132.         right:  0px !important;
  1133.         bottom: 0px !important;
  1134.         left:   0px !important;
  1135.     }
  1136.  
  1137.  
  1138.     /* pagenation */                                                       /* NEW */
  1139.     .j-thread .jive-thread-messages .j-pagination {
  1140.         margin: 30px 0px !important;
  1141.     }
  1142.  
  1143.  
  1144.  
  1145.     .j-inline-promoted-helpful-answer p {
  1146.         margin: 0px !important;
  1147.     }
  1148.     .j-inline-promoted-helpful-answer header .reply-date,
  1149.     .j-inline-promoted-helpful-answer h3.header .reply-date,
  1150.     .j-inline-recommended-answer header .reply-date,
  1151.     .j-inline-recommended-answer h3.header .reply-date {
  1152.         font-size: inherit !important;
  1153.         margin: 10px 0px !important;
  1154.     }
  1155.     .j-inline-promoted-helpful-answer header .j-helpful-text,
  1156.     .j-inline-promoted-helpful-answer h3.header .j-helpful-text,
  1157.     .j-inline-recommended-answer header .j-helpful-text,
  1158.     .j-inline-recommended-answer h3.header .j-helpful-text {
  1159.         font-size: 22px !important;
  1160.         background: none repeat scroll 0% 0% transparent !important;
  1161.         border-style: none !important;
  1162.         margin: 0px !important;
  1163.     }
  1164.     .j-inline-promoted-helpful-answer section .reply-body,
  1165.     .j-inline-recommended-answer section .reply-body {
  1166.         font-size: inherit !important;
  1167.         margin-bottom: 20px !important;
  1168.     }
  1169.     .j-inline-promoted-helpful-answer section,
  1170.     .j-inline-recommended-answer section {
  1171.         padding: 0px 20px !important;
  1172.     }
  1173.     #helpful-container { padding-top: 0px !important; }
  1174.     #helpful-container hr { margin: 10px !important; }
  1175.     #helpful-container .more-answers { margin: 0px !important; }
  1176.     #helpful-container .more-answers * { font-size: 24px !important; }
  1177.  
  1178.  
  1179.     /* inline correct answer, helpful answer background */                 /* NEW */
  1180.     div[itemprop="acceptedAnswer"] {
  1181.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  1182.     }
  1183.     .j-thread .jive-content.j-helpful,
  1184.     .j-thread .jive-content.j-helpful.j-op {
  1185.         background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  1186.     }
  1187.  
  1188.  
  1189.     /* switch between 'hellpful replies only' and 'all replies' */         /* NEW */
  1190.     .jive-thread-messages .helpful-all-switch * {  
  1191.         font-size: 24px !important;
  1192.     }
  1193.     .jive-thread-messages .helpful-all-switch li.inactive {
  1194.         padding: 0px !important;
  1195.         top: 32px !important;
  1196.     }
  1197.     .jive-thread-messages .helpful-all-switch li.inactive span.menu {
  1198.         width: auto  !important;
  1199.         min-width: 160px !important;
  1200.         padding: 5px  !important;
  1201.         text-align: center !important;
  1202.     }
  1203.    
  1204.  
  1205.     /* thread content footer profile */                                    /* NEW */
  1206.     .j-thread-post section.j-original-message footer .footer-profile {
  1207.         margin-right: 10px !important;
  1208.     }
  1209.     .j-thread-post footer .footer-profile {
  1210.         margin-right: -10px !important;
  1211.     }
  1212.     .j-thread-post footer .footer-profile .j-status-level {
  1213.         padding: 0px 10px 0px 0px !important;
  1214.     }
  1215.     .j-thread-post footer .footer-profile .username,
  1216.     .j-thread-post footer .footer-profile .jive-username-link {
  1217.        /* padding: 0px 10px 0px 10px !important; 0.2 */
  1218.         max-width: 250px !important;
  1219.     }
  1220.     .j-inline-correct-answer footer .footer-profile .j-status-levels,
  1221.     .j-inline-promoted-helpful-answer footer .footer-profile .j-status-levels,
  1222.     .j-inline-recommended-answer footer .footer-profile .j-status-levels {
  1223.         padding: 0px 10px 0px 0px !important;
  1224.     }
  1225.     .j-inline-correct-answer footer .footer-profile .username,
  1226.     .j-inline-promoted-helpful-answer footer .footer-profile .username,
  1227.     .j-inline-recommended-answer footer .footer-profile .username {
  1228.         padding: 0px 10px 0px 10px !important;
  1229.         max-width: 250px !important;
  1230.     }
  1231.  
  1232.  
  1233.     /* text wrap in header */
  1234.     .j-thread-post > header .j-post-author { white-space: normal !important; }      
  1235.    
  1236.     /* thread post section (message body) */
  1237.     .j-thread-post section {
  1238.         padding: 0px 20px !important;
  1239.         margin-bottom: 15px !important;                                   /* CHANGED */
  1240.     }
  1241.    
  1242.  
  1243.     /* thread rendered content */
  1244.     .jive-rendered-content { padding-bottom: 4px !important; }
  1245.    
  1246.     /* thread rendered content quote & pre */
  1247.     .jive-rendered-content .jive-quote,
  1248.     .jive-rendered-content .jive-pre {
  1249.         margin: 5px 15px !important;
  1250.     }
  1251.  
  1252.     /* thread reply footer (Return to Community | Go to original post) */
  1253.     #jive-thread-reply-footer { margin-top: 10px !important; }
  1254.    
  1255.     /* more like this links, incomming links */
  1256.     #apple-related-threads { margin: 0px 40px !important; }
  1257.     #apple-related-threads .j-box { margin-bottom: 0px !important; }
  1258.     .j-icon-list li { padding: 3px 0px 3px 22px !important; }
  1259.  
  1260.     /* related articles */                                                          
  1261.     .apple-sidebar-property {
  1262.         width: auto !important;
  1263.         padding-left: 0px !important;
  1264.     }
  1265.     .jive-box-body.jive-sidebar-body.jive-sidebar-body-related-articles
  1266.         { padding: 15px 0px !important; }
  1267.    
  1268.  
  1269.     /* ------------------
  1270.         staus level, expertise, level points
  1271.     */
  1272.     /* status level expertise tile */
  1273.     .j-status-level.expertise-tile,
  1274.     .status-tile.expertise-tile { display: none !important; }                  
  1275.    
  1276.     /* status level level points */
  1277.     .j-status-level .level-points span { display: inherit !important; }            
  1278.     .j-status-level .level-points { white-space: inherit !important; }              
  1279.     /* ------------------ */
  1280.  
  1281.  
  1282.     /* --------------------------------------------------------------------------------
  1283.         INLINE EDITOR
  1284.     */
  1285.     /* editor */
  1286.     .jive-discussion-replies li.addReply { margin: 50px 40px 0px !important; }
  1287.  
  1288.  
  1289.     /* --------------------------------------------------------------------------------
  1290.         ADVANCED EDITOR
  1291.     */
  1292.  
  1293.     /* content area */
  1294.     .j-thread.jive-body-formpage #body-apple .j-form {
  1295.         max-width: inherit !important;
  1296.         margin: 0px auto 20px !important;
  1297.         width: inherit !important;
  1298.     }
  1299.     .j-thread .jive-content.jive-create-thread,
  1300.     .jive-body-formpage-document .jive-content.doc-page {
  1301.         margin: 0px 40px !important;
  1302.         padding: 0px !important;
  1303.     }
  1304.  
  1305.     /* editor panel */
  1306.     .j-thread .jive-content.jive-create-thread #jive-compose-title,
  1307.     .j-thread .jive-content.jive-create-thread
  1308.       .jive-editor-panel.jive-large-editor-panel,
  1309.     .jive-body-formpage-document .jive-content.doc-page #jive-compose-title,
  1310.     .jive-body-formpage-document .jive-content.doc-page
  1311.       .jive-editor-panel.jive-large-editor-panel {
  1312.         margin: 0px !important; }
  1313.  
  1314.     /* line height in editor
  1315.    
  1316.        I've tracked down a copy/paste error that happens in the editor if you decide
  1317.        to rearrange things.  Typically the cut and pasted text inherits an unwanted
  1318.        fixed size which isn't displayed in the editor and can be missed after
  1319.        submission. This issue can be suppressed by not explicitly setting the font
  1320.        size of the editor area.   turingtest2
  1321.          https://discussions.apple.com/docs/DOC-10241
  1322.     tt2's July 30th version
  1323.     .tiny_mce_content {font-size: inherit !important}  
  1324.     What I have
  1325.     body.tiny_mce_content { line-height: inherit !important; } */
  1326.    
  1327.     /* tinymce input area.  Stamp out all white
  1328.        area around top and bottom of editor */
  1329.     /* Subject input area for new post */
  1330.     div#jive-compose-title input#subject,
  1331.     .addReply .jive-thread-reply-inline,
  1332.     /* input field
  1333.        Should the page be refreshed. >> > syntax highlighting becomes
  1334.        invisible :-( BUG */
  1335.     /* antiquewhite azure lightskyblue lightsteelblue snow wheat whitesmoke */
  1336.     div.rte_wrap.tiny_mce_content  {
  1337.         background-color: oldlace !important;
  1338.     }/**/
  1339.  
  1340.  
  1341.     /* replying to */
  1342.     p.jive-replying-to { padding: 20px 0px !important; }
  1343.     .jive-body-formpage-comment .jive-thread-message
  1344.         { margin: 0px 40px 0px 80px !important; }
  1345.  
  1346.     /* reply to avatar */
  1347.     .j-thread-post header .j-post-avatar {
  1348.         position: absolute !important;
  1349.         top: 0px !important;
  1350.         left: -50px !important;
  1351.         width: auto !important;
  1352.     }
  1353.    
  1354.     /* buttons (Reply|Cancel) 0,2
  1355.     .j-publishbar,
  1356.     .jive-body-formpage .jive-composebuttons { margin: 20px 40px 0px !important; } */
  1357.  
  1358.  
  1359.     /* --------------------------------------------------------------------------------
  1360.         ACTIVITY STREAM
  1361.     */
  1362.     /* activity entry */
  1363.     .j-act-entry { padding: 5px 0px 10px 100px !important; }
  1364.  
  1365.     /* activity title */
  1366.     .j-body-home .j-act-title { padding: 5px 0px 5px 24px !important; }
  1367.  
  1368.     /* activity body & comment */                                                  
  1369.     .j-body-home .j-act-init { padding: 5px 0px 10px 100px !important; }
  1370.     .apple-activity-comments-wrapper { margin-left: 0px !important; }
  1371.  
  1372.     /* Like list */
  1373.     .j-act-grouped .j-act-g-item { padding: 3px !important; }
  1374.    
  1375.    
  1376.     /* --------------------------------------------------------------------------------
  1377.         SEARCH RESULTS
  1378.     */
  1379.     /* search result entry */
  1380.     .j-search-results-main-container .j-search-result { padding: 10px !important; }
  1381.  
  1382.  
  1383.     /* --------------------------------------------------------------------------------
  1384.         DOC (USER TIP)
  1385.     */                                                                              
  1386.     /* user tip canvas */
  1387.     .jive-body-content.j-doc .j-column-wrap-l { margin: 0px 40px !important; }
  1388.  
  1389.     /* user tip border etc */                                            /* NEW */
  1390.     .j-doc .jive-content {
  1391.         margin: 0px !important;
  1392.      /*   margin-left: 150px !important; */
  1393.         padding: 10px !important;
  1394.         border: thin dotted !important;
  1395.     }
  1396.  
  1397.  
  1398.     /* ---------------------------------------------------------------------------------
  1399.         BLOG (MODERATOR TIP)  NEW */
  1400.    
  1401.     /* blog canvas */
  1402.     .jive-body-content.j-blog .j-column-wrap-l { margin: 0px 40px !important; }
  1403.    
  1404.     /* blog border etc */
  1405.     .jive-content-blog {
  1406.         margin: 0px !important;
  1407.         padding: 10px !important;
  1408.         border: thin dotted !important;
  1409.         border-radius: 0px !important;
  1410.     }
  1411.  
  1412.  
  1413.     /* ---------------------------------------------------------------------------------
  1414.         UNAUTHORIZED (WARNING)
  1415.     NEW */
  1416.                                                                                        
  1417.     /* unauthorized error message */
  1418.     .jive-body-warn.jive-body-unathorized #j-main { margin: 0px 40px !important; }
  1419.  
  1420.    
  1421.     /* --------------------------------------------------------------------------------
  1422.         PROFILE
  1423.     */                                                                              
  1424.     /* header & navigation bar (Bio|Activity|People|Content|Communities|Bookmarks) */
  1425.     .j-view-profile .j-page-header { padding: 10px 40px !important; }
  1426.     .j-bigtab-nav { margin: 10px 40px !important; }
  1427.    
  1428.     /* filter ui current selection blue marker */                         /* NEW */
  1429.     .j-view-profile .j-second-nav ul > li.active {
  1430.         display: none !important;
  1431.     }
  1432.  
  1433.     /* ------------------
  1434.         Bio
  1435.     */
  1436.     .j-layout-l .j-column-wrap-l { width: 100% !important; }
  1437.    
  1438.     /* ------------------
  1439.         profile specialties and awards
  1440.     */
  1441.     /* profile status container for specialties and awards */       /* REFINED (rule) */
  1442.     .jive-view-profile .profile-status-container { display: none !important; }
  1443.  
  1444.     /* profile modal note status row for specialties and awards */
  1445.     .status-row { display: none !important; }                                      
  1446.     /* ------------------ */
  1447.  
  1448.  
  1449.     /* ------------------
  1450.         Content
  1451.     */                                                                      /* NEW */
  1452.     /* browser control ui */
  1453.     .j-view-profile .j-layout-sl.j-browse-content .j-column-s #js-browse-controls {
  1454.         margin: 25px 0px 0px -166px !important;
  1455.     }
  1456. } /* end */
  1457.  
  1458. /* ==============================================  
  1459.    Revise the display of posts in a Thread.      0.2
  1460.    Each of these cases may have one or more post after:
  1461.      -- Question only
  1462.      -- Question with answer
  1463.      -- Question with helpful
  1464.      -- Question with answer and helpful
  1465.    examples:
  1466.    https://discussions.apple.com/thread/7583029
  1467.    https://communities.apple.com/pt/thread/4531
  1468.    https://communities.apple.com/pt/thread/4705
  1469.  
  1470.   */
  1471. @-moz-document
  1472.    url-prefix(https://discussions.apple.com/thread),
  1473.    url-prefix(https://discussions.apple.com/message),
  1474.    url-prefix(https://discussions.apple.com/update-advanced-comment.jspa),
  1475.    url-prefix(https://discussionsjapan.apple.com/thread),
  1476.    url-prefix(https://discussionsjapan.apple.com/message),
  1477.    url-prefix(https://discussionsjapan.apple.com/update-advanced-comment.jspa),
  1478.    url-prefix(https://discussionskorea.apple.com/thread),
  1479.    url-prefix(https://discussionskorea.apple.com/message),
  1480.    url-prefix(https://discussionskorea.apple.com/update-advanced-comment.jspa),
  1481.    url-prefix(https://communities.apple.com/es/thread),  
  1482.    url-prefix(https://communities.apple.com/es/message),  /* I have not see an es message */
  1483.    url-prefix(https://communities.apple.com/es/update-advanced-comment.jspa),
  1484.    url-prefix(https://communities.apple.com/pt/thread),
  1485.    url-prefix(https://communities.apple.com/pt/message),
  1486.    url-prefix(https://communities.apple.com/pt/update-advanced-comment.jspa) {
  1487.        
  1488.         /* Debug to identify which page we found.  Place our ukiyo-e. */      
  1489.  /*   h1, h2, h3 {    
  1490.           background-color: aqua !important;      
  1491.           border: 2px dashed black !important;    
  1492.          }
  1493.    */
  1494.       /* significant classes and selecters  0.21
  1495.          To select in Question and posible answer and helpful
  1496.          Starts with times stamp.  Example "Jul 5, 2016 11:44 PM in response to Ferd II"
  1497.          Doesn't include original poster info.
  1498.            section.j-original-message
  1499.        
  1500.          to select all replies
  1501.            div.all-replies-container
  1502.            ul-jive-discussion-replies.jive-discussion-flat.jive-discussion-indent-0
  1503.       */
  1504.       /* Place the poster info to the left of the post for medium and large windows.
  1505.          Let poster info above the the post for a small window such as found on a smart
  1506.          phone. 0.30 */
  1507.  
  1508.  /* ================================================= */
  1509. /* for small windows such as a smart phone.   0.30 */      
  1510. @media all and (max-width: 499px) {
  1511.    
  1512.      /* adjust margin for smart phone screen here.  Different margin adjust is done for larger screens
  1513.         just below.  More adjustments to element are made after moving of poster info for larger
  1514.         windows. */
  1515.    
  1516.      /* thread message border.  All message except question it seems. */
  1517.      .jive-discussion-replies li.reply .jive-thread-message {
  1518.          margin-left: 0px  !important;      /* There is some other margin to prevent going all the way
  1519.                                                to the left margin. */
  1520.       }
  1521.    
  1522.      /* thread original messeage (question) */                                        
  1523.      .j-thread-post section.j-original-message {
  1524.          margin: 0px 30px 0px 30px  !important;
  1525.        }
  1526.    
  1527. }
  1528.  
  1529. /* ================================================= */      
  1530. /* For medium and large size windows... */
  1531. @media all and (min-width: 500px) {
  1532.    
  1533.    
  1534.                
  1535.     /* Indent reply so that it stands out.
  1536.        Used for margins around tinymce's playground */
  1537.     .j-thread #body-apple .addReply
  1538.     {
  1539.         max-width: inherit !important;
  1540.         margin: 10px 40px !important;
  1541.     }
  1542.    
  1543.      /* thread message border.  All message except question it seems.   0.30 */
  1544.      .jive-discussion-replies li.reply .jive-thread-message {
  1545.          margin-left: 80px  !important;      
  1546.       }
  1547.      
  1548.      /* thread original messeage (question) */                                          /* 0.30 */
  1549.      .j-thread-post section.j-original-message {
  1550.        margin: 0px 30px 0px 110px  !important;
  1551.        }
  1552.      
  1553.     /* Move who wrote the question back to where it was before!
  1554.          Will appear to the left of the question text box. */
  1555.  
  1556.       /* Avatar #1 of Original Poster 0.31 */
  1557.       header.js-original-header  img.jive-avatar {
  1558.            position: absolute !important;
  1559.            top: -20px !important;
  1560.            left: 15px !important;
  1561.            width: 75px !important;
  1562.            height: 75px !important;  
  1563.            /*background-color: yellow !important; /**/  
  1564.          }
  1565.  
  1566.       /* Let questioner's info escape the box  */
  1567.       div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden
  1568.         { overflow: visible !important; }
  1569.      
  1570.        /* html for user's name
  1571.          <strong itemprop="author"
  1572.               itemscope=""
  1573.               itemtype="http://schema.org/Person">
  1574.            <a rel="nofollow"
  1575.               href="/people/rccharles"
  1576.               data-externalid=""
  1577.               data-username="rccharles"
  1578.               data-avatarid="1095"
  1579.               id="jive-99999999999999999999999"
  1580.               data-userid="999999"
  1581.               data-presence="null"
  1582.               class="jiveTT-hover-user jive-username-link">rccharles</a>
  1583.           </strong>
  1584.        */
  1585.       /* move questioner to left of post 0.21 0.31 */
  1586.       header.js-original-header.apple-overflow-hidden  div.j-post-author a  {
  1587.           position: absolute !important;
  1588.           top: -40px !important;
  1589.           left: 10px !important;
  1590.           text-align: center !important;
  1591.           width: 120px !important;  
  1592.           font-weight: 400 !important;  /* don't bold */  
  1593.           /*background-color: greenyellow !important; /**/
  1594.          }        
  1595.  
  1596.      /* questioner's points icon. fyi: position: absolute didn't work here.   === 0.22 *0.31 0.32 */
  1597.      div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden
  1598.        span.status-image img.svg {
  1599.          margin-top: 40px !important;
  1600.          margin-left: -40px !important;
  1601.          max-width:30px;
  1602.          max-height:30px;
  1603.          width: auto;
  1604.          height: auto;
  1605.          }  
  1606.  
  1607.       /* questioner's points whole area.  Actual coding:
  1608.          <span class="level-points">Level 6
  1609.              <span>(8,266 points)</span>
  1610.          </span>
  1611.          0.22
  1612.       */
  1613.       div.status-container span.j-status-level:not(.community-manager) span.level-points
  1614.         {
  1615.           position: absolute !important;
  1616.           top: 70px !important;
  1617.           left: -94px !important;    /* shove level # off the left of window.  
  1618.                                         Need to save space. */        
  1619.           width: 150px !important;
  1620.           text-align: center !important;
  1621.           text-indent: -114px !important;
  1622.           font-size: 12px !important;
  1623.           line-height: 12px !important;
  1624.           /*background-color: turquoise !important; /* */
  1625.          }  
  1626.       /* actual number of points 0.22 */
  1627.       div.status-container span.j-status-level:not(.community-manager) span.level-points span {
  1628.           margin-left: 40px !important;
  1629.           display: inline !important;                    
  1630.           /*background-color: yellow !important; /* */
  1631.          }  
  1632.        
  1633.       /* Community host.  css is a little different
  1634.            <span class="j-status-level community-manager">
  1635.                <span class="status-image">
  1636.                     <img
  1637.                         class="svg"              
  1638.                         src="/6.0.3.0d25e296/resources/images/status/ph-usermoderator.png?vid=20160707"                                
  1639.                         alt="">
  1640.                </span>
  1641.                <span class="level-points"> Community Hosts
  1642.                </span>
  1643.            </span>
  1644.        
  1645.            0.22 */
  1646.       header.js-original-header.apple-overflow-hidden span.j-status-level.community-manager
  1647.         span.level-points {
  1648.           position: absolute !important;
  1649.           top: 144px !important;
  1650.           left: -95px !important;    
  1651.           font-size: 12px !important;
  1652.           line-height: 12px !important;
  1653.           text-align: center !important;
  1654.           width: 120px !important;
  1655.          }  
  1656.      
  1657.       /* Time of question.  Where to place after moving info to the side.  0.22 */
  1658.       /* move time questioner made question  to after questioner name */
  1659.       /*  div#body-apple section.j-original-message p.meta-posted  {
  1660.            position: absolute !important;
  1661.            top: -12px !important;
  1662.            left: 280px !important;          
  1663.          } */
  1664.    
  1665.       /* Leave some space above the bottons and below the text. */
  1666.       /* div#body-apple section.j-original-message  div.thread-actions
  1667.         { margin-top: 20px !important;} */
  1668.      
  1669.      /* For some reason, maybe overflow: visible, wrecks some tags positioning, fix up. */
  1670.      /* Move folling and tool icon back to where they were */
  1671.      ul.apple-social-actions-toolbar  { margin-top: -45px !important; }
  1672.  
  1673.        
  1674.       /* Move who wrote a post ( just relpies ) back to where it was before!
  1675.          ------------------------------------------------------------------
  1676.          some tags do not move in question in answer or helpful in answer.
  1677.          Avatar 0.21 0.31*/
  1678.          div.all-replies-container ul.jive-discussion-replies a img.jive-avatar
  1679.          {
  1680.            position: absolute !important;
  1681.            top: -0px !important;
  1682.            left: -102px !important;
  1683.            width: 55px !important;
  1684.            height: 55px !important;
  1685.            /*background-color: turquoise !important; /**/
  1686.          }
  1687.        /* username 0.21 */  
  1688.        div.message-profile span.username {
  1689.            position: absolute !important;
  1690.            top: 59px !important;
  1691.            left: -136px !important;
  1692.            font-size: 13px !important;
  1693.            line-height: 13px !important;
  1694.            text-align: center !important;
  1695.            width: 125px !important;
  1696.            padding: 0px !important;
  1697.            /*background-color: turquoise !important;/**/
  1698.          }
  1699.        
  1700.        /* Points icon on the Reply post 0.21 0.32*/
  1701.        div.message-profile span.status-image {
  1702.            position: absolute !important;
  1703.            top: 76px !important;
  1704.            left: -80px !important;
  1705.            /*background-color: turquoise !important;/**/
  1706.          }
  1707.      
  1708.      div.message-profile span.status-image img[alt="Community Manager"],
  1709.      div.message-profile span.status-image img[alt="Level 9"],
  1710.      div.message-profile span.status-image img[alt="Level 10"]{
  1711.            position: absolute !important;
  1712.            top: 0px !important;
  1713.            left: -4px !important;
  1714.            max-width:34px;
  1715.            max-height:34px;
  1716.            width: auto;
  1717.            height: auto;
  1718.          /*background-color: pink !important;/**/
  1719.          }/**/
  1720.        
  1721.        /* time of posting.
  1722.           example: Jun 13, 2016 10:48 AM in response to Eric Root  0.21
  1723.        */
  1724.        div.j-thread-post.j-rc4 > h3 + div.message-profile + span.j-inresponse-to
  1725.            {margin-top: -12px !important;} /* eyeball to be the same as botton spacing */
  1726.        
  1727.        /*
  1728.        <div class="profile-status-container">
  1729.            <span class="j-status-level ">
  1730.                 <span class="status-image">
  1731.                     <img class="svg"
  1732.                          src="/6.0.3.0023f1fc20161101/themes/apple_0.7.0/img/status/level5.svg"
  1733.                          alt="Level 5" title="Level 5">
  1734.                 </span>
  1735.                <span class="level-points">Level 5
  1736.                    <span>(4,154 points)</span>
  1737.                </span>
  1738.            </span>
  1739.    
  1740.            level number hid by slidding of window    0.21 0.32*/
  1741.      
  1742.       div.message-profile span.j-status-level:not(.community-manager) span.level-points
  1743.         {
  1744.           position: absolute !important;
  1745.           top: 101px !important;
  1746.           left: -130px !important; /* shove level # off the left of window.  
  1747.                                       Need to save space.*/        
  1748.           width: 500px !important;
  1749.           text-align: center !important;
  1750.           text-indent: -465px !important;
  1751.           font-size: 12px !important;
  1752.           line-height: 12px !important;
  1753.           /*background-color: pink !important;/**/
  1754.          }
  1755.    
  1756.       /* points.  move to a visible spot 0.21 0.32 */
  1757.    
  1758.       div#jive-body div.message-profile span.j-status-level:not(.community-manager) span.level-points span {
  1759.           margin-left: 40px !important;
  1760.           display: inline !important;                  
  1761.           /*background-color: yellow !important; /* */
  1762.          }  
  1763.        
  1764.        /* span::before{ content: "           . ";}   */
  1765.  
  1766.        
  1767.         /* Community host.  css is a little different
  1768.            <span class="j-status-level community-manager">
  1769.                <span class="status-image">
  1770.                     <img
  1771.                         class="svg"              
  1772.                         src="/6.0.3.0d25e296/resources/images/status
  1773.                              /ph-usermoderator.png?vid=20160707"                                
  1774.                         alt="">
  1775.                </span>
  1776.                <span class="level-points"> Community Hosts
  1777.                </span>
  1778.            </span>
  1779.        
  1780.            0.21 */
  1781.         div.message-profile span.j-status-level.community-manager span.level-points {
  1782.           position: absolute !important;
  1783.           top: 114px !important;
  1784.           left: -130px !important;    
  1785.           font-size: 12px !important;
  1786.           line-height: 12px !important;
  1787.           text-align: center !important;
  1788.           width: 120px !important;
  1789.          }      
  1790.        
  1791.    
  1792.        
  1793.      /* Mess with answer in question who made post information */
  1794.        
  1795.      /* Seemed the "Posted on ..." in the Answer inside the question is in the answer box
  1796.         when it should be in the footer section :-(.   Do a force adjust. Bug fix. */
  1797.      div.j-inline-correct-answer section p.meta-posted {margin-left: -20px  !important;}
  1798.    
  1799.      
  1800.      /* Move avatar and username.  */  
  1801.      /* answer inside question. Here is the html we have to work with :-(  
  1802.        <a class="username jiveTT-hover-user"
  1803.           rel="nofollow"
  1804.           href="/people/Hiroto"
  1805.           data-userid="999999"
  1806.           data-externalid=""
  1807.           data-avatarid="999999"
  1808.           data-username="Hiroto">
  1809.           <img class="jive-avatar" src="/people/Hiroto/avatar/40.png" data-height="40"
  1810.               alt="Hiroto" title="Hiroto" style="outline: none;" height="40" width="40">Hiroto
  1811.        </a>
  1812.      */
  1813.     /* avatar #2 adjust avatar after move of the a tag. */
  1814.     div.j-inline-correct-answer  img.jive-avatar {
  1815.            width: 66px !important;
  1816.            height: 66px !important;
  1817.            margin-top: -120px !important;
  1818.            margin-left: -70px !important;
  1819.            /*background-color: turquoise !important; /**/
  1820.          }
  1821.        
  1822.      /* Username
  1823.             overflow: hidden !important;
  1824.             text-overflow: ellipsis !important;
  1825.      */  
  1826.      div.j-inline-correct-answer div.footer-profile a.username.jiveTT-hover-user {
  1827.            position: absolute !important;
  1828.            top: 70px !important;
  1829.            left: -142px !important;
  1830.            font-size: 13px !important;
  1831.            line-height: 13px !important;
  1832.            text-align: center !important;
  1833.            width: 120px !important;
  1834.            padding: 0px !important;
  1835.            display:block !important;
  1836.            overflow: visible !important;
  1837.          }
  1838.          
  1839.      /* points icon within answer inside question */
  1840.      section.j-original-message div.j-inline-correct-answer div.footer-profile span.status-image img.svg {
  1841.            position: absolute !important;
  1842.            top:  0px !important;
  1843.            left: -15px !important;
  1844.          }  
  1845.        
  1846.      /* points */  
  1847.      div.j-inline-correct-answer div.footer-profile span.level-points > span {
  1848.            position: absolute !important;
  1849.            top: 114px !important;
  1850.            left: -148px !important;
  1851.            font-size: 12px !important;
  1852.            line-height: 12px !important;
  1853.            text-align: center !important;
  1854.            width: 120px !important;
  1855.          }  
  1856.        
  1857.      /* answer points icon in regular reply area */
  1858.      div.all-replies-container div.j-inline-correct-answer div.footer-profile span.status-image img.svg {
  1859.            position: absolute !important;
  1860.            top:  16px !important;
  1861.            left: -10px !important;
  1862.          }  
  1863.    
  1864.        
  1865.      /* Avatar # 3 Move avatar */
  1866.      /* helpful inside question */
  1867.      div.j-inline-promoted-helpful-answer  img.jive-avatar{
  1868.            position: absolute !important;
  1869.            top: 5px !important;
  1870.            left: -96px !important;
  1871.            width: 66px !important;
  1872.            height: 66px !important;
  1873.            /*background-color: pink !important; /**/
  1874.          }
  1875.            
  1876.        
  1877.       /* points icon */
  1878.       div.j-inline-promoted-helpful-answer div.footer-profile span.j-status-levels img {
  1879.            position: absolute !important;
  1880.            top:  76px !important;
  1881.            left: -74px !important;
  1882.          }
  1883.        
  1884.       /* points */
  1885.       div.j-inline-promoted-helpful-answer div.footer-profile span.level-points > span {
  1886.            position: absolute !important;
  1887.            top: 108px !important;
  1888.            left: -100px !important;
  1889.            font-size: 12px !important;
  1890.            line-height: 12px !important;
  1891.          }  
  1892.  
  1893. } /* end of moving posters to the left of the message <------------- */
  1894.        
  1895.        
  1896.      /* Comman for all window sizes in disaplay of posts. */
  1897.        
  1898.      /* thread original messeage (question) */                                          /* 0.30 NEW */
  1899.      /* #FFFFCC  parchment #EDF7E8 light green answered  */
  1900.      .j-thread-post section.j-original-message {
  1901.            /* margin: 0px 30px 0px 110px  !important; */      
  1902.          padding: 15px 10px !important;
  1903.          border-style: dotted !important;
  1904.          border-width: thin !important; /* thin */
  1905.          background: none repeat scroll 0% 0% #FFFFCC !important;  /* parchment */
  1906.        }
  1907.      
  1908.      /* Reply button  */
  1909.      .j-thread-post section .thread-actions {
  1910.          max-width: inherit !important;
  1911.          margin: 0px 25px 0px 0px !important;
  1912.        }
  1913.    
  1914.      /* lower metadata "Posted on ..."  */
  1915.      .meta-posted {
  1916.          max-width: inherit !important;
  1917.          margin: 10px 25px 20px 0px !important;  /* margin-left: 0px   */
  1918.          font-size: 16px !important;    
  1919.        }
  1920.        
  1921.      /* thread message border.  All message except question it seems.   0.30 NEW */
  1922.      .jive-discussion-replies li.reply .jive-thread-message {
  1923.          border-style: dotted !important;
  1924.          border-width: thin !important;
  1925.          /* margin-left: 80px  !important;  */    
  1926.        }    
  1927.        
  1928.      /* promoted helpful answer and prompted recommended answer */                      /* 0.3 NEW */
  1929.      /* Doesn't seem to have any effect :-( */
  1930.      .j-inline-promoted-helpful-answer,
  1931.      .j-inline-recommended-answer {
  1932.          background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  1933.          padding: 15px 10px 5px 10px !important;
  1934.          margin: 0px 10px 15px 80px !important;
  1935.          /* background-color: turquoise !important; */
  1936.          border-style: dotted !important;
  1937.          border-width: thin !important;
  1938.        }
  1939.    
  1940.      /* ditch line between original post and first reply post
  1941.         No need since since setting background-color in orginal post 8-5-2016 */
  1942.      div ul.jive-discussion-replies.jive-discussion-flat.jive-discussion-indent-0 {
  1943.          border-top: 0px !important; }
  1944.      
  1945.      /* Tighten up double paragraphs spacing.  I put in a blank paragraph to
  1946.         separate "real" paragraphs  
  1947.           https://discussions.apple.com/message/30333231#30333231 */
  1948.      .j-thread .jive-content .j-thread-post section p,
  1949.      .j-thread .jive-content .j-thread-post section .jive-rendered-content p,
  1950.      .j-thread .jive-content .j-thread-post section.j-original-message .jive-rendered-content p {
  1951.          min-height: 0px !important;
  1952.      }
  1953.  
  1954.      /* Let's make the paragraph text a little more compact. */
  1955.      p[style="min-height: 8pt; height: 8pt; padding: 0px;"] { height: 0.6em !important; }
  1956.        
  1957.      /* the control that shows all replies, and forces the display of all replies
  1958.         when they might otherwise be hidden. Thanks turingtest2, London, UK  */
  1959.      .helpful-allreply {display: none !important;}                  /* Hide helpful/all reply switch */
  1960.      #helpful-container {display: none !important;}                 /* Hide helpful block */
  1961.      .all-replies-container {display: inherit !important;}          /* Display all replies block */
  1962.  
  1963.      /*You can hide the copies of any solved/recommended answers that appear immediately
  1964.        below the question with:   turingtest2 */
  1965.      .j-answer-rollup {display: none !important;}                         /* Hide solved/recommended block */
  1966.  
  1967.      /* No more link popup on simple edit.  turingtest2  
  1968.        .-.-.-.-.-.-.-.- */
  1969.      /*  .popOverContent {display: none !important;}          /* Suppress pop-up link editor */  
  1970.        
  1971.      /* For buttons without the black background like cancel
  1972.         Color picker
  1973.         http://www.w3schools.com/colors/colors_picker.asp */
  1974.          /* "I have this question too" on question */
  1975.      span.j-social-action.black-button.j-disabled,
  1976.      div.jive-composebuttons button.j-btn-global,
  1977.      span a.black-button.jive-acclaim-likelink,  /* question button */
  1978.      div.j-inline-correct-answer footer a.action-button,  /* answer button */
  1979.      span.js-acclaim-container.acclaim-container a /* response button */
  1980.        {
  1981.          padding: 7px 7px !important;
  1982.          color:  #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  1983.          font-size: 14px !important;
  1984.          line-height: 14px !important;
  1985.          background-color: #f2f2f2 !important;
  1986.  
  1987.        }
  1988.        
  1989.      /* "I have this question too" on question.
  1990.         Why was opacity 0.5 on this button but not others? */
  1991.      span.j-social-action.black-button.j-disabled {opacity: 1 !important;}
  1992.        
  1993.      /* button in reponse */
  1994.      div.all-replies-container .jive-thread-helpful-btn {
  1995.          color: #0288CC !important;  /* light blue */
  1996.          background-color: #f2f2f2 !important;    
  1997.        }
  1998.  
  1999.      /* Upper tool icon pulldwon */
  2000.      ul#jive-action-sidebar-tab-list_thread-actions-tab *,
  2001.           /* Lower tool icon pulldwon */
  2002.      ul.apple-thread-options.js-toggle-thread-actions li *,
  2003.           /* change lower button text from grey to light blue. */
  2004.      a.discussionPermaLink
  2005.      /* span.jive-icon-sml.jive-icon-warn */{  color: #0288CC !important;  /* light blue */}
  2006.        
  2007.      /* Make all lower buttons the same. Who ever heard of different size buttons? */  
  2008.        
  2009.          /* save reply, button you get to save an edit of a post */
  2010.      div.jive-composebuttons button#submitButton.j-btn-callout,  /* post button on edit of orginal post */
  2011.          /* Correct answer.  Isn't as bad as the reply button, but might as well use the
  2012.             same set of rule, even if we do not need all. may not be correct button :-( */
  2013.      div.jive-thread-reply-btn-correct a,
  2014.          /* Following; upper right 0.31 */
  2015.      a#jive-link-thread-following.following-button,  /* no box */
  2016.          /* alternative state of following button, follow */
  2017.      a#jive-link-thread-startFollowing.button.follow-button,
  2018.          /* action button with the V */
  2019.      a.apple-actions-link,  /* not working */
  2020.          /* Tone down Reply Button */
  2021.          /* footer div.footer-toplevel-actions a .discussionAdd, */
  2022.      .discussionAdd,
  2023.          /* clicking on Reply to get the inputput, this is the save */
  2024.      div input.jive-form-button-save.j-btn-callout,
  2025.           /* clicking on Reply to get the inputput, this is the cancel */
  2026.      div input.jive-form-button-cancel{
  2027.          background-image: none !important; ;   /* bye, bye gradiant */
  2028.          background-color: #f2f2f2 !important;
  2029.          color: #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  2030.          padding: 7px !important;
  2031.          font-size: 14px !important;
  2032.          line-height: 14px !important;
  2033.          margin-bottom: 8px !important;
  2034.        }
  2035.      
  2036.      /*  save reply, button you get to save an edit of a post. touch up
  2037.        https://discussions.apple.com/update-advanced-comment.jspa?id=30347987 */
  2038.      div#body-apple button#submitButton.j-btn-callout { margin-left: 20px !important; }
  2039.    
  2040.        
  2041.      /* Following button, upper right. Might as well box it for consistancy 0.31 */
  2042.      a#jive-link-thread-following.following-button  {
  2043.          border-style: solid !important;
  2044.          border-width: thin !important;
  2045.          border-color: #9b9b9b !important; /* grey, Apple's color */
  2046.          padding: 6px 6px 8px 28px !important;
  2047.        }
  2048.        
  2049.      
  2050.      
  2051.      /* Check icon with Following.  Move to the left of following. */
  2052.      span.following-check.icon.icon-check {
  2053.          margin-left: -10px !important;
  2054.          margin-top: -7px !important;
  2055.        }
  2056.        
  2057.      /* Tool icon button upper left, right of Following button */
  2058.      a#apple-actions-link { padding: 4px 6px 4px !important; }
  2059.      
  2060.      /* Tool icon button lower left. same row as reply button */
  2061.      a.js-toggle-thread-options.thread-options  { padding: 4px 4px 4px !important; }
  2062.            
  2063.      /* Tool box upper right */
  2064.      ul.apple-social-actions-toolbar li.apple-actions {height: 28px !important;}
  2065.        
  2066.      /* User machine and operating system info from profile
  2067.         Make metadata font size the same. */
  2068.      section.j-original-message p.jive-model-info-display {
  2069.          font-size: 16px !important;
  2070.          margin-left: 0px !important;
  2071.        }
  2072.        
  2073.      /* hover */
  2074.           /* "I have this question too" on question */
  2075.      span.j-social-action.black-button.j-disabled:hover,
  2076.           /* Following; upper right */
  2077.      a#jive-link-thread-following.button.following-button:hover,      
  2078.        /* post button on edit of orginal post */
  2079.      div.jive-composebuttons button#submitButton.j-btn-callout:hover,
  2080.           /* cancel button on edit of orginal post */
  2081.      div.jive-composebuttons button.j-btn-global:hover,
  2082.           /* clicking on Reply to get the input, this is the save */    
  2083.      div input.jive-form-button-save.j-btn-callout:hover,
  2084.           /* clicking on Reply to get the inputput, this is the cancel */
  2085.      div input.jive-form-button-cancel:hover,
  2086.        /* Reply button hover state */
  2087.        .discussionAdd:hover{ border-color: #0288CC !important; }
  2088.        
  2089.          
  2090. /* ================================================= */
  2091. /* Only for narrow width windows. */
  2092. @media all and ( min-width: 500px ) and ( max-width: 1265px ) {
  2093.     /* let a little space to the left of the navigation bar. */      
  2094.     div .j-column.j-column-s nav  {  
  2095.         margin-left: 0px !important;      
  2096.         margin-top: 20px !important;  /* max of margin-bottom of
  2097.                                          proceeding line and margin-top */    
  2098.         }  
  2099.    
  2100.     .j-thread #body-apple .thread-container-wrapper
  2101.     {
  2102.         max-width: inherit !important;
  2103.         margin: 10px 40px !important;
  2104.     }
  2105.            
  2106.   } /* end of media */
  2107.  
  2108.  
  2109. /* ================================================= */
  2110. /* Only for small windows cell phones and cell phones in lanscape mode. */
  2111.    @media all and (max-width: 499px) {
  2112.       /* the once upon a time sidebar */
  2113.       li.j-browse-filter-group-item.js-browse-filter-group-item a.js-select-link {
  2114.           height: 16px !important;
  2115.           /*background-color: antiquewhite !important;/**/}
  2116.    
  2117.       /* let a little space to the left of the navigation bar. */      
  2118.       div .j-column.j-column-s nav  {  
  2119.           margin-left: 0px !important;      
  2120.           margin-top: 50px !important;  /* max of margin-bottom of proceeding line
  2121.                                          and margin-top */  
  2122.           /*background-color: azure !important;/**/
  2123.         }  
  2124.    
  2125.     /* was sidebar now moved to horizontal */
  2126.     div.j-column.j-column-s nav.j-second-nav {    
  2127.         margin-bottom: 10px !important;
  2128.         /*background-color: red !important;/**/}
  2129.    
  2130.     /* Seems to be a blank line below [Following] */
  2131.     .j-thread #body-apple div.thread-container-wrapper
  2132.       {
  2133.         max-width: inherit !important;
  2134.         margin: 0px 5px !important;
  2135.         /*background-color: green !important;/**/
  2136.       }
  2137.      
  2138.       /*  Question Q: */
  2139.      .j-thread #body-apple div.j-thread-post section.j-original-message
  2140.        h1 span.q-marker
  2141.       {
  2142.         margin-top: -12px !important;
  2143.         /*background-color: bisque !important;/**/
  2144.       }
  2145.    
  2146.      /*  Question Title */
  2147.      .j-thread #body-apple div.j-thread-post section.j-original-message h1
  2148.       {
  2149.         display: inline !important;
  2150.         font-size: 20px !important;
  2151.         /*background-color: bisque !important;/**/
  2152.       }
  2153.    
  2154.      /* Text in orginal post */
  2155.      .j-thread #body-apple div.j-thread-post section.j-original-message span div.jive-rendered-content
  2156.       {
  2157.         margin-top:10px !important;
  2158.         display: inline !important;
  2159.         /*background-color: bisque !important;/**/
  2160.       }
  2161.   } /* end of media */
  2162.        
  2163.        
  2164. /* ================================================= */
  2165. /* Only for narrow width windows. */
  2166. @media all and ( min-width: 321px ) and ( max-width: 499px ) {
  2167.        
  2168.     /* let a little space to the left of the navigation bar. */      
  2169.         div .j-column.j-column-s nav  {  
  2170.         margin-left: 0px !important;      
  2171.         margin-top: 20px !important;  /* max of margin-bottom of proceeding line and margin-top */    
  2172.     }  
  2173.            
  2174.     .j-thread #body-apple .thread-container-wrapper
  2175.     {
  2176.         max-width: inherit !important;
  2177.     }
  2178.      
  2179.      .j-thread #body-apple .thread-container-wrapper,
  2180.      .j-thread #body-apple div.jive-content.j-op,    
  2181.      /* Original post info */
  2182.      .j-thread #body-apple div.j-thread-post header.js-original-header,
  2183.      /* Replies */
  2184.      .j-thread #body-apple div.all-replies-container,
  2185.      /*  Question */
  2186.      .j-thread #body-apple div.j-thread-post section.j-original-message
  2187.       {
  2188.         margin: 10px 10px !important;
  2189.         /*background-color: bisque !important;/**/
  2190.       }
  2191.        
  2192.    
  2193.   } /* end of media */
  2194.        
  2195.        
  2196. /* ================================================= */
  2197. /* adjustment for display of posts in a discussion for small screen
  2198.    found on smart phones */
  2199. @media all and (max-width: 320px) {
  2200.            
  2201.      .j-thread #body-apple div.jive-content.j-op,    
  2202.      /* Original post info */
  2203.      .j-thread #body-apple div.j-thread-post header.js-original-header,
  2204.      /* Replies */
  2205.      .j-thread #body-apple div.all-replies-container,
  2206.      /*  Question */
  2207.      .j-thread #body-apple div.j-thread-post section.j-original-message
  2208.       {
  2209.         margin: 5px 5px !important;
  2210.         /*background-color: bisque !important;/* light brownish red */
  2211.       }
  2212.    
  2213.      /* reply button */
  2214.      .j-thread #body-apple div.thread-actions  
  2215.      {
  2216.         width: 95% !important;
  2217.         /*background-color: lemonchiffon !important;/**/
  2218.      }
  2219.    
  2220. } /* end of media */
  2221.  
  2222.        
  2223. } /* @-moz-document for responses */
  2224.  
  2225.  
  2226.  
  2227. /* =======================================================================================
  2228.    For ASC web pages with a sidebar shown on narrow window, make the side bar
  2229.    horizontal. Adjusts the column sizes in lists.
  2230.    adding more @-moz-document callouts prevents collateral damage
  2231.    to other web pages when css class and id conflicts.
  2232.    example pages:
  2233.      https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread]
  2234.      https://discussions.apple.com/community/ipad/ipad_in_business_and_education/content
  2235.         ?filterID=contentstatus[published]~objecttype~objecttype[thread]
  2236.      https://communities.apple.com/es/community/ipad/using_ipad/content?filterID=
  2237.         contentstatus[published]~objecttype~objecttype[thread]
  2238.      https://communities.apple.com/pt/people/espa%C3%B1ol.rccharles/content?manage=true
  2239.    avoid:
  2240.      https://communities.apple.com/pt/search.jspa
  2241.  https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread]
  2242.    */
  2243.      
  2244. @-moz-document
  2245.    url-prefix(https://discussions.apple.com/content),
  2246.    url-prefix(https://discussions.apple.com/community),
  2247.    url-prefix(https://discussions.apple.com/people),
  2248.    url-prefix(https://discussionsjapan.apple.com/content),
  2249.    url-prefix(https://discussionsjapan.apple.com/community),
  2250.    url-prefix(https://discussionsjapan.apple.com/people),
  2251.    url-prefix(https://discussionskorea.apple.com/content),
  2252.    url-prefix(https://discussionskorea.apple.com/community),
  2253.    url-prefix(https://discussionskorea.apple.com/people),
  2254.    url-prefix(https://communities.apple.com/es/content),    
  2255.    url-prefix(https://communities.apple.com/es/community/),
  2256.    url-prefix(https://communities.apple.com/es/people),  
  2257.    url-prefix(https://communities.apple.com/pt/content),
  2258.    url-prefix(https://communities.apple.com/pt/community/),
  2259.    url-prefix(https://communities.apple.com/pt/people) {  
  2260.     /* ================================================= */
  2261.    @media all and (max-width: 499px) {
  2262.        li.j-browse-filter-group-item.js-browse-filter-group-item a.js-select-link
  2263.          {height: 16px !important;}
  2264.        }
  2265.        
  2266.      /* ================================================= */
  2267.     @media all and (max-width: 1265px)  {
  2268.      /* Debug to identify which page we found.  Place our ukiyo-e. */      
  2269.    /*  h1, h2, h3, #apple-site-title > a:nth-child(1), #j-globalNav-bg {    
  2270.           background-color:yellow !important;
  2271.           border: 2px dashed black !important;    
  2272.          }  */
  2273.        
  2274.     /* ------------------      
  2275.        Treatment for narrow window      
  2276.        Method 1 (minimum optimisation)      
  2277.      
  2278.        Places
  2279.        
  2280.        https://discussions.apple.com/places
  2281.        
  2282.        Adjust community list table's shift and margin to maximize its width.      
  2283.     */                                                                            
  2284.     /* ------------------ (currently commented out)      
  2285.     .j-layout-sl.j-browse-places .j-column-wrap-l { margin-left: -166px !important; }      
  2286.     .j-layout-sl.j-browse-places .j-column-l      { margin-left: 166px !important; }      
  2287.     .j-layout-sl.j-browse-places .j-column-s      { width: 166px !important; }      
  2288.     ------------------ */      
  2289.     /* ------------------      
  2290.         Treatment for narrow window      
  2291.         Method 2 (more beneficial to narrow window but has disadvantage for wide window)      
  2292.          
  2293.         Let community list table have full width but not exceed 1019px to make room for      
  2294.         sidebar ui (filters & actions).  If window is wide enough (>=1265px), sidebar ui      
  2295.         is displayed next to community list table, otherwise it is displayed below or
  2296.         above it (depending upon its document tree order).      
  2297.          
  2298.         * sidebar width (constant)    = 166px      
  2299.         * community table max width   = 1019px      
  2300.         * canvas margin-left          = 40px      
  2301.         * canvas margin-right         = 40px      
  2302.         ---------------------------------------      
  2303.         * total                       = 1265px      
  2304.     */                                                                              
  2305.     /* ------------------ (currently active) */      
  2306.     .j-layout-sl.j-browse-places .j-column-wrap-l { max-width: 1019px !important; }      
  2307.     .j-layout-sl.j-browse-places .j-column-wrap-l { margin-left: 0px !important; }      
  2308.     .j-layout-sl.j-browse-places .j-column-l      { margin-left: 0px !important; }      
  2309.     .j-layout-sl.j-browse-places .j-column-l      { padding-left: 0px !important; }      
  2310.     .j-layout-sl.j-browse-places .j-column-s      { width: 166px !important; }          
  2311.     /* ------------------ */      
  2312.        
  2313.     /* See if we can position "start ad discussion, Write a user tip" bottom  
  2314.        bar a little better */    
  2315.     .j-box {    
  2316.         margin-top: 40px !important;    
  2317.         float: right !important;}    
  2318.        
  2319.    
  2320.     /* Turn verical nav list into a horizontal nav list to save vertical space.    
  2321.         This nav bar appear above the list of dicussions in the Your Content page.    
  2322.         It appears below in the list of discussions page.    
  2323.         A larger screen has room for vertical navigation, so let along. */    
  2324.  
  2325.     /* We need to make room for the horizontal nav bar.  A floating right, the area to the left    
  2326.        is blank anyway. */    
  2327.     .j-layout-sl.j-browse-content .j-column-s        
  2328.         { width: 95% !important; }  /* let more room for horizontal navigation 0.64 */    
  2329.      
  2330.      
  2331.     /* make nav bar horizontal amoung other things. */    
  2332.     div .j-column.j-column-s nav ul li {  
  2333.       float: left !important;    /* makes the list items horizontal */    
  2334.       width: 120px !important;  /* width of each link */          
  2335.       text-align: center !important;    
  2336.       margin-left: 0 !important;    
  2337.       padding-left: 0 !important;    
  2338.     }
  2339.        
  2340.     /* Piddle around so as to center the text. Straight trial and error. */
  2341.     li.j-browse-filter-group-item.js-browse-filter-group-item a.js-select-link {
  2342.         padding-top:5px !important;
  2343.         padding-bottom: 5px !important;
  2344.         /* background-color: bisque !important;/* light brownish red */}
  2345.        
  2346.      /* Piddle around so as to center the text for the user's content. Straight trial and error.
  2347.         For some reason this text is two lines height which makes for a disjoint box. */
  2348.      nav.j-second-nav ul li[data-filter-id="draft"] a.js-select-link,
  2349.      nav.j-second-nav ul li[data-filter-id="contentstatus\[published\]" ] a.js-select-link,
  2350.      nav.j-second-nav ul li[data-filter-id="participated"] a.js-select-link,
  2351.      nav.j-second-nav ul li[data-filter-id="following"] a.js-select-link,
  2352.      nav.j-second-nav ul li[data-filter-id="historyarchetype\[content\]"] a.js-select-link,
  2353.      nav.j-second-nav ul li[data-filter-id="all"] a.js-select-link {
  2354.         height: 28px !important;
  2355.         /*background-color: yellow !important; /**/
  2356.         }
  2357.            
  2358.    /* after making the navigating link horizontal, the blue overlay box doesn't immediately  
  2359.       jump to the draft box.  After clicking on any of the other links, the blue box    
  2360.       parks on the draft box and will not move.  The function must be implemented in javascript which  
  2361.       cannot be changed from css. In the May 2016 ASC, the blue box moves correct when the sidebar
  2362.       is moved to the right.  Still broken for horizontal. Purge it.    
  2363.       Upper nav bar on your content */    
  2364.       /* https://discussions.apple.com/people/<apple-id>/content */    
  2365.     body.jive-view-profile.j-view-profile.j-view-profile-nonself.other .j-second-nav > ul:nth-child(1) > li:last-child,    
  2366.        body.j-body-yourwork.other li.active:last-child {display: none !important;}    
  2367.        
  2368.    /* Found another blue overlay box.    
  2369.       https://discussions.apple.com/people/<ASC_id>/content?manage=true */    
  2370.     body.jive-view-profile.j-view-profile.j-view-profile-self.other li.active:last-child {display: none !important;}    
  2371.      
  2372.     /* style the link (a tag) inside the li    
  2373.        Put a box around the links.  Complete box makes for a dark middle Line. So, leave  
  2374.        off left line but for righ most link. Do the best we can    
  2375.        ASC box grey-line color #d7d7d7 also seems like grey #eaeaea */    
  2376.     div .j-column.j-column-s nav li a {  
  2377.        border: 1px solid #d7d7d7 !important;    
  2378.        border-left: none !important;  /* avoid double border lines for middle items */    
  2379.        padding-left: 0 !important;    
  2380.     }
  2381.    
  2382.     /* Fill in the first box with a line on the left */    
  2383.     /* Upper nav bar on your content  
  2384.        The fill in on the left of the first-child doesn't seem to be working.  
  2385.        Tried several
  2386.        different ways of addressing the left border.  No workie.
  2387.        https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread] */    
  2388.     /* https://discussions.apple.com/people/<apple-id>/content?manage=true */    
  2389.     div .j-column.j-column-s nav li:first-child a,
  2390.     /* https://discussions.apple.com/people/<apple-id>/content */    
  2391.     /* lower nav bar, see here:    
  2392.        https://discussions.apple.com/community/ipad/ipad_in_business_and_education  
  2393.             /content?filterID=contentstatus[published]~objecttype~objecttype[thread] */    
  2394.     body.j-body-place.other li.j-browse-filter-group-item:first-child {    
  2395.        border-left: 1px solid #d7d7d7 !important;  /* avoid double border
  2396.                                                       lines for middle items */    
  2397.     }  
  2398.        
  2399.     /* Hover. horizontal nav bar */
  2400.     div .j-column.j-column-s nav li a:hover {  
  2401.         border-color: #42aaff !important;  /* light blue */    
  2402.       }  
  2403.          
  2404.   } /* media */
  2405.  
  2406.      
  2407. } /* @-moz-document url-prefix for sidebar */
  2408.  
  2409. /* ==============================================
  2410.    Leave the login window footer alone. So, turn these fields back on.    
  2411.     */      
  2412. @-moz-document    
  2413.     url-prefix(https://discussions.apple.com/people/),      
  2414.     url-prefix(https://discussions.apple.com/welcome),      
  2415.     url-prefix(https://discussionsjapan.apple.com/people/),        
  2416.     url-prefix(https://discussionsjapan.apple.com/welcome/),      
  2417.     url-prefix(https://discussionskorea.apple.com/people/),      
  2418.     url-prefix(https://discussionskorea.apple.com/welcome/),
  2419.     url-prefix(https://communities.apple.com/es/people),  
  2420.     url-prefix(https://communities.apple.com/es/welcome),      
  2421.     url-prefix(https://communities.apple.com/pt/people),
  2422.     url-prefix(https://communities.apple.com/pt/welcome)  {        
  2423.    
  2424.         /* legalistic bomblast on login window*/      
  2425.         #globaldisclaimer.sosumi {display: inherit !important; }            
  2426.         /* path to here */      
  2427.         #j-footer #breadcrumbs {display: inherit !important; }      
  2428.         /* apple product info */      
  2429.         p.gf-buy {display: inherit !important; }          
  2430. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement