Advertisement
rccharles

combined dec 25th 2016 Christmas #2

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