Advertisement
rccharles

ASC may 2016 look beta-O update

Jul 6th, 2016
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 76.77 KB | None | 0 0
  1. /*
  2.     custom styles for Apple Support Communities board system introduced in 2016-06
  3.  
  4.     Copyright 2014, 2016 Hiroto,  et. al.      
  5.      
  6.     GNU General Public License      
  7.      
  8.     This program is free software: you can redistribute it and/or modify      
  9.     it under the terms of the GNU General Public License as published by      
  10.     the Free Software Foundation,  version 3      
  11.      
  12.     This program is distributed in the hope that it will be useful,      
  13.     but WITHOUT ANY WARRANTY; without even the implied warranty of      
  14.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the      
  15.     GNU General Public License for more details.      
  16.      
  17.     For a copy of the GNU General Public License      
  18.     see <http://www.gnu.org/licenses/>.        
  19.      
  20.     For more information on how to install this css and what the css does, see:      
  21.     https://discussions.apple.com/docs/DOC-7501      
  22.  
  23.     v0.2 by rccharles
  24.         - scrolling of large code blocks "advanced >> plain"
  25.         - reformat buttons
  26.         - nav list to horizontal for small windows
  27.         - option to sink legalistic bombblast.
  28.             Look for .~.~.~.~.~.~.~. then uncomment the three lines following
  29.         - expanded the display of posts in a discussion to view all posts.  Thanks turingtest2
  30.         - colored backgrounds for posts
  31.         - turingtest2's fix for copy & paste in tinyMCE
  32.         - turingtest2's fix to get rid of answered and helpfuls at the top of every page.
  33.         - light blue in tool icon pulldowns
  34.         - link popup on simple edit
  35.             Look for -.-.-.-.-.-.-.- then uncomment the line following
  36.         - Move who replied to the left margin.
  37.         - Move original poster's info to the left margin
  38.    
  39.    
  40.     v0.11
  41.         - introduced @media rules in THREAD LIST BROWSER and PLACES sections:
  42.             @media all and ( max-width: X ) rule
  43.             @media all and ( min-width: Y ) rule
  44.        
  45.         - added, refined and fixed rules in various sections, which include but not limited to
  46.             BODY
  47.                 - changed #body-apple {width: 100%} to {width: auto}, which is essential to
  48.                   prevent horizontal scroller from appearing in narrow window environment.
  49.             TEXT > font
  50.                 - added rules to use fine local font in lieu of illegible remote font
  51.             ASC TOP PAGE
  52.                 - added rules on 'search or ask a question', 'featured topics' etc
  53.             COMMUNITIES CATEGORIES OVERVIEW
  54.                 - new section
  55.             THREAD LIST BROWSER > community overview
  56.                 - added and refined rules (treating filter ui layout)
  57.             PROFILE > content
  58.                 - new subsection (treating browser control ui layout)
  59.             BLOG
  60.                 - new section
  61.             UNAUTHORIZED
  62.                 - new section
  63.  
  64.     v0.10d
  65.         - draft
  66.  
  67.     written by Hiroto, 2016-06
  68. */
  69. @-moz-document
  70.     domain(communities.apple.com),  /* Português & Spanish */
  71.     domain(discussions.apple.com),
  72.     domain(discussionsjapan.apple.com),
  73.     domain(discussionskorea.apple.com),
  74.     domain(discussionschinese.apple.com)
  75. {
  76.     /* ------------------------------------------------------------------------------------------------
  77.         BODY
  78.     */
  79.     body.j-body-welome,             /* Welcome */
  80.     body.j-body-place,              /* Community */
  81.     body.j-body-yourwork,           /* Content */
  82.     body.j-body-home,               /* Activity */
  83.     body.j-body-yourconnections,    /* People */
  84.     body.j-body-preferences,        /* Preferences */
  85.     body.jive-body-content,         /* Thread */
  86.     body.jive-body-search,          /* Search */
  87.     body.jive-view-profile          /* Profile */
  88.     {                                                                              
  89.         background: white  !important;
  90.     }
  91.     body {
  92.         min-width: 0px !important;
  93.     }
  94.    
  95.     /* Note: #body-apple is a div the covers the whole document.  So, it overrides the body tag. */
  96.     #body-apple {
  97.         width: auto !important;
  98.         min-width: 0px !important;
  99.         background: #f2f2f2  !important;
  100.     }
  101.     #globalheader { display: none !important; }                                    
  102.     #global-nav-wrapper {display: none !important; }                                
  103.     #globalfooter,
  104.     #globaldisclaimer { width: 80% !important; }                                    
  105.  
  106.    
  107.  
  108.     /* ------------------------------------------------------------------------------------------------
  109.         TEXT
  110.     */                                                                                      /* NEW */
  111.     body {
  112.         font-size: 16px !important;
  113.         font-weight: 400 !important;
  114.         line-height: 1.25 !important;
  115.     }
  116.     body * {
  117.         /* font-size: inherit !important; */
  118.        font-weight: inherit !important; /*  turns off bolding. 0.2 */
  119.        line-height: inherit !important;
  120.     }
  121.    
  122.  
  123.    
  124.     /* font
  125.        
  126.          
  127.           lang | remote font name
  128.           -----|-----------------
  129.             ja | "Apple TP"
  130.             ko | "Yoon Gothic"
  131.             zh | "PingHei"
  132.             en | "Myriad Set Pro"
  133.             es | "Myriad Set Pro"
  134.             pt | "Myriad Set Pro"
  135.     */                                                                                      /* NEW (experimental) */
  136. /*
  137.     * { font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif !important; }
  138. */
  139.     [lang|="ja"] * {
  140.         font-family: "Hiragino Kaku Gothic Pro", "Meiryo",
  141.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  142.     }
  143.     [lang|="ko"] * {
  144.         font-family: "Apple Gothic", "HY Gulim", "MalgumGothic", "HY Dotum", "Lexi Gulim",
  145.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  146.     }
  147.     [lang|="zh"] * {
  148.         font-family: "STHeitiSC-Light",
  149.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  150.     }
  151.     [lang|="en"] *,
  152.     [lang|="es"] *,
  153.     [lang|="pt"] * {
  154.         font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  155.     }
  156.    
  157.     /* Start 0.2 additions */
  158.    
  159.    
  160.     /* Reduce white space in user tips */
  161.     /* Put bolding back.  body * is too strong above.  Hack strong back! */
  162.     strong {
  163.         font-weight: bold !important;}
  164.    
  165.     /* No line after Communities.  Waste of space and doesn't separate anything.
  166.            https://discussions.apple.com/community/mac_os/mac_os_x_technologies/content  */
  167.     div#j-header-wrap header nav#j-globalNav-bg {border-bottom: 0px !important; }
  168.    
  169.  
  170.  
  171.     /* ??? */
  172.      select#j-sort.form-cell.form-dropdown option {
  173.          padding: 5px 6px 5px 8px !important;
  174.          font-size: 14px !important;
  175.          width: 180px !important;      /* Was 220px */
  176.         color:green !important;
  177.        }
  178.                                                                                    
  179.     /* highlights in dark blue unread posts when logged in.  v0.6      
  180.      
  181.     All your posts      
  182.         https://discussions.apple.com/content?filterID=participated~objecttype~objecttype[thread]        
  183.      
  184.     Discussions you authored      
  185.         https://discussions.apple.com/content?filterID=contentstatus[published]~objecttype~objecttype[thread]        
  186.      
  187.     To see the discussions you have read and not read in a community      
  188.     The suffix to use for any ASC forum, placed after the basic link to any forum, it's      
  189.         /content?filterID=contentstatus[published]~objecttype~objecttype[thread]      
  190.      
  191.     for iPhone community this would be:      
  192.         https://discussions.apple.com/community/iphone/using_iphone/content
  193.             ?filterID=contentstatus[published]~objecttype~objecttype[thread]        
  194.      
  195.      
  196.     */  
  197.     .j-td-title strong {
  198.         color:#191970 !important;
  199.         font-weight: normal !important;}  
  200.    
  201.     /* Prevent capitalization of user names there. (Mine becomes Turingtest2 on that page and
  202.       nowhere else, which is daft!) */
  203.     .jive-username-link {text-transform: none !important;}        /* Remove username capitalization */
  204.          
  205.    
  206.  
  207.     /* Scroll code listings.  set max-height of syntax highlighted code in thread      
  208.        content browser   */      
  209.     .jive-rendered-content .dp-highlighter {    
  210.        max-height: 500px !important;      
  211.        overflow: auto !important;      
  212.     }                                                                                  
  213.     /* Scroll code listings. set max-heiht of pre code (visible when javascript is disabled)  */      
  214.     .jive-rendered-content pre {      
  215.        max-height: 500px !important;      
  216.        overflow: auto !important;      
  217.     }  
  218.    
  219.     /* Rambling footer stuff will be sunk              
  220.        no more legalistic bomblast.
  221.        Read about Apple's worries on the Welcome page.
  222.        .~.~.~.~.~.~.~. */      
  223. /*  footer #globaldisclaimer {display: none !important; } */        
  224.     /* Not a complete path to here, so why be misleading */      
  225. /*  footer nav.footer-breadory {display: none !important; }    */      
  226.     /* Guess by now folks know how to buy an apple product */      
  227. /*  p.gf-buy {display: none !important; } */    
  228.    
  229.     /* end 0.2 additions */
  230.    
  231.     /* preseve monospace for pre.jive-pre */
  232.     pre.jive-pre { font-family: monospace !important; }
  233.  
  234.    
  235.     /* ------------------------------------------------------------------------------------------------
  236.         ASC HEADER, FOOTER AREA
  237.     */
  238.     #j-header,
  239.     #j-compact-header,
  240.     #j-footer { width: 100% !important; }
  241.    
  242.     /* navigation header (Apple Support Communities ...) */
  243.     #j-header-wrap {
  244.         padding: 0px 40px !important;
  245.         margin: 0px 0px 15px !important;
  246.     }
  247.     #j-globalNav-bg {
  248.         padding: 0pX !important;
  249.         margin: 0px !important;
  250.         width: auto !important;                                                             /* NEW */
  251.     }
  252.     #j-satNav { overflow: visible !important; }
  253.  
  254.     #j-header-wrap { margin-bottom: 50px !important; }                                      /* NEW */
  255.     #apple-full-header { margin: 10px 0px 0px !important; }                                 /* NEW */
  256.     #second-row {                                                                           /* NEW */
  257.         padding-top: 25px !important;
  258.         height: 30px !important;
  259.     }
  260.  
  261.     /* announcement */                                                                      /* NEW */
  262.     #jive-alert {
  263.         width: auto !important;
  264.         max-width: inherit !important;
  265.         margin: -20px 40px 10px !important;
  266.     }
  267.     .j-thread #jive-alert {
  268.         margin: -50px 40px 10px !important;
  269.     }
  270.     .jive-body-formpage.j-thread #jive-alert {
  271.         margin: -30px 40px 10px !important;
  272.     }
  273.    
  274.     /* breadcrumb */                                                                        /* NEW */
  275.     #jive-breadcrumb {
  276.         width: auto !important;
  277.         margin-right: 40px !important;
  278.         position: relative !important;
  279.    
  280.     }
  281.    
  282.     /* footter */                                                                           /* NEW */
  283.     .j-js-footer-wrap {
  284.         width: auto !important;
  285.         min-width: 0px !important;
  286.     }
  287.     footer#j-footer {
  288.         width: auto !important;
  289.         min-width: 0px !important;
  290.     }
  291.  
  292.  
  293.     /* ------------------------------------------------------------------------------------------------
  294.         ASC TOP PAGE
  295.     */
  296.     .j-body-welcome #jive-alert { margin: 0px 40px !important; }
  297.     .j-body-welcome .hero-container img { width: auto !important; }
  298.     .j-body-welcome.j-body-home [id|=jive-widgetframe] > .content-large {
  299.         text-align: center !important;
  300.         overflow-x: auto !important;
  301.         overflow-y: hidden !important;
  302.     }
  303.     .apple-communities {
  304.         display: inline-block !important;
  305.         width: auto !important;
  306.         text-align: left !important;
  307.     }
  308.  
  309.     /* search or ask a question */
  310.     .ask-a-question-container .j-form input[type="text"] { width: 90% !important; }
  311.  
  312.     /* featured topics */
  313.     .jive-widget-featuredcontentwidget h2 {
  314.         font-size: 28px !important;
  315.     }
  316.     .jive-widget-featuredcontentwidget .content-large .featured-content-header {
  317.         padding-bottom: 30px !important;
  318.     }
  319.     .jive-widget-featuredcontentwidget .content-large .featured-content-header p.sub-title {
  320.         margin: 10px 0px 20px !important;
  321.     }
  322.     .jive-widget-featuredcontentwidget .featured-list-container {
  323.         max-width: 1000px !important;
  324.     }
  325.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-row {
  326.         margin-bottom: 20px !important;
  327.         border-style: dotted !important;
  328.         border-width: thin !important;
  329.     }
  330.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-user {
  331.         margin: 0px 10px !important;
  332.     }
  333.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc {
  334.         margin: 0px 10px !important;
  335.     }
  336.     .jive-widget-featuredcontentwidget h4.title {
  337.         font-size: 18px !important;
  338.         margin: 10px 0px !important;
  339.         text-decoration: underline !important;
  340.     }
  341.     .jive-widget-featuredcontentwidget .rating-row,
  342.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc blockquote,
  343.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc .user-metadata {
  344.         margin-bottom: 10px !important;
  345.     }
  346.    
  347.     /* new to communities? */
  348.     .on-boarding .on-boarding-header h2 {
  349.         font-size: 28px !important;
  350.         margin: 0px 0px 25px !important;
  351.     }
  352.     .on-boarding .img-container { margin: 0px auto 30px !important; }
  353.    
  354.     /* how-to grid */
  355.     .on-boarding > .grid-display {
  356.         margin-top: 40px !important;
  357.         padding: 20px 0px !important;
  358.         max-width: 1000px !important;
  359.         display: inline-block !important;
  360.     }
  361.     .on-boarding .row .column h3 {
  362.         margin: 0px 30px 20px !important;
  363.         max-height: 50% !important;
  364.     }  
  365.  
  366.  
  367.     /* ------------------------------------------------------------------------------------------------
  368.         COMMUNITIES CATEGORIES OVERVIEW
  369.     */                                                                                      /* NEW */
  370.     /* communities description */
  371.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image {
  372.         width: 200px !important;
  373.         position: absolute !important;
  374.         z-index: -1 !important;
  375.     }
  376.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image img {
  377.         width: 200px !important;
  378.         height: 200px !important;
  379.     }
  380.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description {
  381.         margin-bottom: 45px !important;
  382.     }
  383.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description h1 {
  384.         font-size: 28px !important;
  385.         margin: 30px 0px !important;
  386.     }  
  387.    
  388.     /* top communities */
  389.     .apple-space-overview  h2.community-title {
  390.         font-size: 24px !important;
  391.         margin: 0px 0px 20px !important;
  392.     }
  393.     .apple-space-overview .category-latest-header h3 {
  394.         font-size: 22px !important;
  395.         margin: 0px 0px 20px !important;
  396.     }
  397.     .apple-space-overview .category-latest h3,
  398.     .apple-space-overview .category-latest h4 { font-size: 20px !important; }
  399.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large       { padding: 10px !important; }
  400.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large > nav { padding-top: 0px !important; }
  401.     .apple-space-overview .jive-widget-recentcontentfilterwidget {
  402.         padding-bottom: 10px !important;
  403.         margin-bottom: 0px !important;
  404.     }
  405.    
  406.     /* search for more topics */
  407.     .apple-space-overview .category-page .ask-a-question-header {
  408.         margin-top: 20px !important;
  409.         width: auto !important;
  410.     }
  411.     .apple-space-overview .category-page .ask-a-question-header h2 { font-size: 24px !important; }
  412.     .apple-space-overview .category-page .ask-a-question-container {
  413.         width: 80% !important;
  414.         max-width: 1000px !important;
  415.         margin: 30px auto !important;
  416.     }
  417.     .apple-space-overview .category-page .ask-a-question-container .j-form input[type="text"] {
  418.         padding: 10px 10px 10px 50px !important;
  419.         width: 94% !important;
  420.     }
  421.     .apple-space-overview .category-page .ask-a-question-footer { margin: 40px 0px !important; }
  422.    
  423.     /* contact apple support */
  424.     .apple-space-overview .section-eyebrow { font-size: 24px !important; }
  425.     .apple-space-overview .section-header {
  426.         font-size: 22px !important;
  427.         margin: 0px 0px 30px !important;
  428.     }
  429.        
  430.    
  431.     /* ------------------------------------------------------------------------------------------------
  432.         THREAD LIST BROWSER
  433.     */
  434.  
  435.     /* ------------------
  436.         community overview
  437.     */                                                                                      /* NEW */
  438.     .category-latest .category-latest-container .category-latest-row {
  439.         margin: 0px !important;
  440.         padding: 5px 0px !important;
  441.     }
  442.     .category-latest .category-latest-container .category-latest-row .discussion-metadata {
  443.         margin: 5px 0px !important;
  444.     }
  445.     .category-latest .category-latest-container .category-latest-row .discussion-title a {
  446.         font-size: 100% !important;
  447.         font-weight: 500 !important;
  448.         color: rgb(0, 136, 204) !important;
  449.     }
  450.     .category-latest .category-latest-container .category-latest-row:nth-child(odd) {
  451.         background: rgb(247, 247, 247) !important;
  452.     }
  453.     .category-latest .category-latest-container .category-latest-row .read-full {
  454.         display: none !important;
  455.     }
  456.     .category-latest .category-latest-container .category-latest-row .discussion-metadata .cell {
  457.         margin-right: 15px !important;
  458.     }
  459.     .category-latest .category-latest-container .category-latest-row .discussion-metadata .cell a {
  460.         color: rgb(0, 136, 204) !important;
  461.         text-decoration: none !important;
  462.     }
  463.    
  464.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar {
  465.         margin: 0px 70px 10px 0px !important;
  466.     }
  467.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar .ask-a-question-space-icon {
  468.         width: 128px !important;
  469.         height: 128px !important;
  470.     }
  471.     .apple-space-overview #body-apple .list-page .ask-a-question-wrapper .community-siblings {
  472.         padding: 5px 0px !important;
  473.         font-size: 20px !important;
  474.     }
  475.  
  476.     /* content filter (by type (solved|recommended|unanswered) & category) */
  477.     .jive-content-filter {
  478.         width: 20% !important;
  479.         max-width: 250px !important;
  480.         min-width: 100px !important;
  481.         padding: 0px 10px 0px 0px !important;
  482.     }
  483.     .jive-content-filter h2 {
  484.         margin-bottom: 15px !important;
  485.         font-weight: 500 !important;
  486.     }
  487.     .jive-content-filter ul li { margin: 3px 0px !important; }
  488.     .jive-content-filter ul li:nth-child(odd) { background: rgb(247, 247, 247) !important; }
  489.     .jive-content-filter ul li a.jive-content-filter-highlight { background: rgb(230, 240, 230) !important; }
  490.     /* ------------------ */
  491.    
  492.  
  493.     /* show author name in 'Latest activity' column in detailed list view of threads */
  494.     td.j-td-date > span { display : inherit !important; }
  495.  
  496.     /* main section */
  497.     #j-main { padding: 0px !important; }
  498.  
  499.     /* table cell title */
  500.     .jive-table td.jive-table-cell-title { padding: 5px !important; }
  501.        
  502.     /* thread list view column widths */                                            
  503.     .j-browse-details .j-td-title { max-width: none !important; }
  504.     .j-browse-details .j-td-date {
  505.         width: auto !important;
  506.         max-width: 20% !important;
  507.     }
  508.    
  509.     /* thread list view: read thread font weight */                                         /* NEW (feature restored) */
  510.     /* I'll go with dark blue.  In an earlier implementation of ASC, the bolded fond wasn't that noticeable, so
  511.        a dark blue was picked.  Might as well stay with it.                                    0.2 */
  512.  /*   .j-browse-details .j-td-title strong { font-weight: 600 !important; }  */
  513.    
  514.  
  515.     @media all and ( max-width: 1099px )
  516.     {
  517.         /* ------------------
  518.             Treatment for narrow window
  519.             Hide Like and Bookmark columns in thread list view if viewport width <= 1098 (= 1265 - 166)
  520.         */                                                                              
  521.         .j-browse-details .j-td-likes,
  522.         .j-browse-details .j-td-bookmarks { display: none !important; }
  523.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th,
  524.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th + th { display: none !important; }
  525.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th + th + th { display: table-cell !important; }
  526.     }
  527.  
  528.    
  529.     /* user name link */
  530.     .jive-username-link { text-transform: none !important; }                        
  531.  
  532.     /* threads list view table tr td  */                                                    /* CHANGED */
  533.     .j-browse-details-tbody tr td { padding: 2px !important; }
  534.  
  535.     /* threads list view left most icon */                                                  /* NEW */
  536.     .j-browse-details-tbody .j-td-icon { padding: 0px 6px 0px !important; }
  537.    
  538.     /* communities list view table tr td */
  539.     .jive-communities-listing table tr td { padding: 5px !important; }
  540.    
  541.     /* thumbnails view width */
  542.     .j-browse-content .j-thumb-view,
  543.     .j-browse-places .j-browse-thumbnails,
  544.     .j-browse-people .j-browse-thumbnails { width: 100% !important; }
  545.    
  546.     /* thumbnail view list item margin */                                          
  547.     .j-browse-content .j-thumb-view > li,
  548.     .j-browse-places .j-browse-thumbnails > li { margin-right: 20px !important; }
  549.    
  550.     /* thumbnail view article font size */                                                  /* NEW */
  551.     .j-thumb article { font-size: inherit !important; }
  552.    
  553.     /* thunbnail view article header height */                                              /* NEW */
  554.     .j-content-thumb header { height: 22px !important; }
  555.  
  556.     /* thumbnail view article header font size */                                           /* NEW */
  557.     .j-thumb header h4.shrunk { font-size: 80% !important; }
  558.     .j-browse-content .j-content-thumb header .icon {
  559.         font-size: 16px !important;
  560.         margin: 0px 8px 0px 0px !important;
  561.     }
  562.    
  563.     /* thumbnail view article height */                                                     /* NEW */
  564.     .j-browse-content .j-content-thumb article { height: 120px !important; }
  565.    
  566.     /* thumbnail view footer */                                                             /* NEW */
  567.     .j-browse-content .j-content-thumb.j-thumb footer { padding: 4px 0px 0px !important; }  
  568.  
  569.    
  570.     /* social actions row */
  571.     .apple-social-actions-wrapper { margin-right: 0px !important; }
  572.     .j-thread .j-social-actions { margin-right: 40px !important; }
  573.  
  574.     /* apple header, subheader row ("Find helpful contents..." etc )*/              
  575.     #apple-full-subheader,
  576.     #apple-activity-subheader {
  577.         padding: 0px 40px 15px !important;
  578.         margin-bottom: 15px !important;
  579.     }
  580.     #apple-full-header h2,
  581.     #apple-activity-header h2 { padding: 0px 40px !important; }
  582.  
  583.     /* page header */
  584.     .j-body-place #jive-body > header.j-page-header {
  585.         margin-left: 40px !important;
  586.         margin-right: 40px !important;
  587.         width: auto !important;
  588.     }
  589.    
  590.     /* pagenation */                                                                        /* NEW */
  591.     .j-pagination-prevnext > .j-pagination-prev,
  592.     .j-pagination-prevnext > .j-pagination-next { font-size: 0px !important; }  
  593.    
  594.    
  595.     /* browser filter row */
  596.     #j-browse-filters { margin-bottom: 5px !important; }
  597.  
  598.     /* browser controls row */
  599.     .j-type-row { margin-bottom: 0px !important; }
  600.  
  601.     /* browser controls content types (All Contents|User Tips|Discussions) width */
  602.     #js-browse-controls .j-type-row .j-content-types { width: 90% !important; }
  603.    
  604.     /* browser controls view toggle (Thumbnails|Details) width */
  605.     #js-browse-controls #j-item-view-toggle {
  606.         width: 10% !important;
  607.         display: table !important;
  608.     }
  609.  
  610.     /* content filter row (All|Open|Answered|Threads) */
  611.     .j-content-filter {
  612.         background: white !important;
  613.         margin-bottom: 10px !important;
  614.     }  
  615.    
  616.     /* container canvas */
  617.     .j-contained {
  618.         margin-left: 40px !important;
  619.         margin-right: 40px !important;
  620.     }
  621.  
  622.     /* more search results available */
  623.     #j-more-search-results-available { padding: 10px !important; }
  624.    
  625.     /* misc */
  626.     .jive-widget { margin-bottom: 10px !important; }
  627.     .j-column { margin-bottom: 10px !important; }
  628.  
  629.  
  630.     @media all and ( min-width: 1265px )
  631.     {
  632.         /* ------------------
  633.             Treatment for narrow window
  634.             Method 1 (minimum optimisation)
  635.    
  636.             Adjust thread list table's shift and margin to maximize its width.
  637.         */                                                                              
  638.         .j-layout-sl.j-browse-content .j-column-wrap-l { margin-left: -166px !important; }
  639.         .j-layout-sl.j-browse-content .j-column-l      { margin-left: 166px !important; }
  640.         .j-layout-sl.j-browse-content .j-column-s      { width: 166px !important; }
  641.     }
  642.     @media all and ( max-width: 1265px )
  643.     {
  644.         /* ------------------
  645.             Treatment for narrow window
  646.             Method 2 (more beneficial to narrow window but has disadvantage for wide window)
  647.            
  648.             Let thread list table have full width but not exceed 1019px to make room for sidebar ui (filters & actions).
  649.             If window is wide enough (>=1265px), sidebar ui is displayed next to thread list table,
  650.             otherwise it is displayed below or above it (depending upon its document tree order).
  651.            
  652.             * sidebar width (constant)    = 166px
  653.             * thread table max width      = 1019px
  654.             * canvas margin-left          = 40px
  655.             * canvas margin-right         = 40px
  656.             ---------------------------------------
  657.             * total                       = 1265px
  658.         */                                                                              
  659.         .j-layout-sl.j-browse-content .j-column-wrap-l { max-width: 1019px !important; }
  660.         .j-layout-sl.j-browse-content .j-column-wrap-l { margin-left: 0px !important; }
  661.         .j-layout-sl.j-browse-content .j-column-l      { margin-left: 0px !important; }
  662.         .j-layout-sl.j-browse-content .j-column-s      { width: 166px !important; }
  663.     }
  664.  
  665.  
  666.     /* ------------------
  667.         Swap left-right positions of thread list table and sidebar ui (filters & actions)
  668.     */                                                                              
  669.     /* let thread list table float left */
  670.     .j-layout-sl.j-browse-content .j-column-wrap-l,
  671.     .j-layout-sl.j-browse-places .j-column-wrap-l { float: left !important; }
  672.  
  673.     /* let sidebar ui float right */
  674.     .j-layout-sl.j-browse-content .j-column-s,
  675.     .j-layout-sl.j-browse-places .j-column-s { float: right !important; }
  676.     /* ------------------ */
  677.  
  678.  
  679.     /* ------------------
  680.         leader board
  681.     */
  682.     /* .jive-widget.jive-box.j-rc5.jive-widget-leaderboardwidget */
  683.    
  684. /*
  685.     .jive-widget-leaderboardwidget {display: none !important; }                    
  686. */
  687.  
  688.     .jive-widget-leaderboardwidget { max-width: 1000px !important; }                        
  689.     .jive-widget-leaderboardwidget .j-bigtab-nav .j-tabbar { padding-top: 10px !important; }
  690.     .jive-widget-leaderboardwidget .jive-widget-topmembers.split-columns ul li { min-height: 0px !important; }
  691.     .jive-widget-leaderboardwidget .top-member-username,
  692.     .jive-widget-leaderboardwidget .top-member-username * { font-size: inherit !important; }
  693.     .jive-widget-leaderboardwidget .top-member-username { margin-left: 15px !important; }
  694.     .jive-widget-leaderboardwidget .user-level-points {
  695.         font-size: 18px !important;
  696.         margin: 14px 0px !important;
  697.         width: 60px !important;
  698.         height: 30px !important;
  699.         padding: 8px 0px 0px !important;
  700.     }
  701.     .jive-widget-leaderboardwidget .top-member-profile-info { width: 80% !important; }
  702.     .jive-widget-leaderboardwidget .top-member-profile-info > a {
  703.         border-radius: 0% !important;
  704.         width: 60px !important;
  705.         height: 60px !important;
  706.     }
  707.     .jive-widget-leaderboardwidget .top-member-username a.jiveTT-hover-user { width: auto !important; }
  708.     .jive-widget-leaderboardwidget .pagination-class { margin-top: 30px !important; }
  709.     /* ------------------ */
  710.  
  711.  
  712.     /* article list
  713.         .j-rc5 is used to identify this list
  714.         e.g., https://discussions.apple.com/article/HT1939 */                      
  715.     .j-layout-sl.j-browse-content.j-rc5 #jive-body-maincol { margin: 0px 0px 0px 166px !important; }
  716.  
  717.  
  718.     /* ------------------------------------------------------------------------------------------------
  719.         THREAD CONTENT BROWSER
  720.     */
  721.     /* thread header */
  722.     .apple-thread-header {
  723.         width: auto !important;
  724.         margin-bottom: 10px !important;
  725.         margin-left: 40px !important;
  726.     }
  727.  
  728.     /* thread message */                                                                    /* NEW */
  729.     .j-thread .jive-content .j-thread-post .jive-rendered-content {
  730.         font-size:   inherit !important;
  731.     }
  732.     .j-thread #body-apple .jive-thread-messages h2.helpful-allreply,
  733.     .j-thread #body-apple #helpful-container,
  734.     .j-thread #body-apple .j-thread-post > header .j-post-author,
  735.     .j-thread #body-apple .thread-container-wrapper,
  736.     .j-thread #body-apple .all-replies-container,
  737.     .j-thread #body-apple #j-main #jive-breadcrumb,
  738.     .j-thread #body-apple .addReply,
  739.     .j-thread #body-apple #jive-body-intro-content {
  740.         max-width: inherit !important;
  741.         margin: 10px 40px !important;
  742.     }
  743.     .j-inresponse-to {
  744.         font-size: inherit !important;
  745.     }
  746.     .j-thread .jive-content .j-thread-post > header,
  747.     .j-thread .jive-content .j-thread-post > h3.header {
  748.         margin: 15px 0px 10px 0px !important;
  749.     }
  750.  
  751.  
  752.  
  753.     .j-thread-post section.j-original-message h1 {
  754.         max-width: inherit !important;
  755.         margin: 0px 60px 20px 60px !important;
  756.     }
  757.     .j-thread-post section.j-original-message .jive-rendered-content {
  758.         max-width: inherit !important;
  759.         margin: 0px 25px !important;
  760.     }
  761.    
  762.     /* original poster profile header */
  763.     .j-thread .jive-content .j-thread-post > header.js-original-header {
  764.         max-width: inherit !important;
  765.         margin: 0px 40px !important;
  766.         padding: 5px !important;
  767.     }
  768.    
  769.  
  770.     .j-original-message .jive-rendered-content p {
  771.         font-size:   inherit !important;
  772.     }
  773.    
  774.  
  775.     /* Q mark */
  776.     .j-original-message h1 .q-marker {
  777.         left: -60px !important;
  778.         font-size: 32px !important;
  779.     }
  780.    
  781.  
  782.     /* answer rollup */                                                                     /* NEW */
  783.     .j-answer-rollup.span-full-width {
  784.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  785.         padding-bottom: 10px !important;
  786.         margin: 20px 0px 0px 0px !important;
  787.         border: 1px solid rgb(45, 184, 71) !important;
  788.     }
  789.     .j-inline-correct-answer {
  790.         padding: 0px !important;
  791.         max-width: inherit !important;
  792.         margin: 0px 10px !important;
  793.     }
  794.     .j-inline-correct-answer section {
  795.         margin: 10px 0px !important;
  796.     }
  797.     /* A mark */
  798.     .j-inline-correct-answer .answer-marker {
  799.         left: 0px !important;
  800.         font-size: 32px !important;
  801.     }
  802.    
  803.  
  804.     /* persistent question shown at top */                                                  /* NEW */
  805.     .persist-question.persist { display: none !important; }
  806.  
  807.    
  808.     /* Solved and Helpful marker text */                                                    /* NEW */
  809.     .j-thread-post header .j-correct-text,
  810.     .j-thread-post h3.header .j-correct-text,
  811.     .j-thread-post header .j-helpful-text,
  812.     .j-thread-post h3.header .j-helpful-text {
  813.         font-size: 22px !important;
  814.         background: none repeat scroll 0% 0% transparent !important;
  815.         border-style: none !important;
  816.         margin: 0px !important;
  817.         padding: 10px !important;
  818.     }
  819.  
  820.    
  821.     /* thread content */                                                                    /* CHANGED */
  822.     .j-thread .jive-content { margin: 0px 10px 0px 10px !important; }
  823.  
  824.    
  825.     /* thread replies ul */
  826.     ul.jive-discussion-replies.jive-discussion-indent-0 { margin: 0px !important; }
  827.    
  828.     /* thread reply li */
  829.     .jive-discussion-replies li.reply { margin-top: 15px !important; }
  830.  
  831.  
  832.  
  833.  
  834.     /* orgininal poster comment background */                                               /* NEW */
  835.     .original-poster-comment {
  836.         background: none repeat scroll 0% 0% rgb(247, 247, 237) !important;
  837.         top:    0px !important;
  838.         right:  0px !important;
  839.         bottom: 0px !important;
  840.         left:   0px !important;
  841.     }
  842.  
  843.  
  844.     /* pagenation */                                                                        /* NEW */
  845.     .j-thread .jive-thread-messages .j-pagination {
  846.         margin: 30px 0px !important;
  847.     }
  848.  
  849.  
  850.  
  851.     .j-inline-promoted-helpful-answer p {
  852.         margin: 0px !important;
  853.     }
  854.     .j-inline-promoted-helpful-answer header .reply-date,
  855.     .j-inline-promoted-helpful-answer h3.header .reply-date,
  856.     .j-inline-recommended-answer header .reply-date,
  857.     .j-inline-recommended-answer h3.header .reply-date {
  858.         font-size: inherit !important;
  859.         margin: 10px 0px !important;
  860.     }
  861.     .j-inline-promoted-helpful-answer header .j-helpful-text,
  862.     .j-inline-promoted-helpful-answer h3.header .j-helpful-text,
  863.     .j-inline-recommended-answer header .j-helpful-text,
  864.     .j-inline-recommended-answer h3.header .j-helpful-text {
  865.         font-size: 22px !important;
  866.         background: none repeat scroll 0% 0% transparent !important;
  867.         border-style: none !important;
  868.         margin: 0px !important;
  869.     }
  870.     .j-inline-promoted-helpful-answer section .reply-body,
  871.     .j-inline-recommended-answer section .reply-body {
  872.         font-size: inherit !important;
  873.         margin-bottom: 20px !important;
  874.     }
  875.     .j-inline-promoted-helpful-answer section,
  876.     .j-inline-recommended-answer section {
  877.         padding: 0px 20px !important;
  878.     }
  879.     #helpful-container { padding-top: 0px !important; }
  880.     #helpful-container hr { margin: 10px !important; }
  881.     #helpful-container .more-answers { margin: 0px !important; }
  882.     #helpful-container .more-answers * { font-size: 24px !important; }
  883.  
  884.  
  885.     /* inline correct answer, helpful answer background */                                  /* NEW */
  886.     div[itemprop="acceptedAnswer"] {
  887.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  888.     }
  889.     .j-thread .jive-content.j-helpful,
  890.     .j-thread .jive-content.j-helpful.j-op {
  891.         background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  892.     }
  893.  
  894.  
  895.     /* switch between 'hellpful replies only' and 'all replies' */                          /* NEW */
  896.     .jive-thread-messages .helpful-all-switch * {  
  897.         font-size: 24px !important;
  898.     }
  899.     .jive-thread-messages .helpful-all-switch li.inactive {
  900.         padding: 0px !important;
  901.         top: 32px !important;
  902.     }
  903.     .jive-thread-messages .helpful-all-switch li.inactive span.menu {
  904.         width: auto  !important;
  905.         min-width: 160px !important;
  906.         padding: 5px  !important;
  907.         text-align: center !important;
  908.     }
  909.    
  910.  
  911.     /* thread content footer profile */                                                     /* NEW */
  912.     .j-thread-post section.j-original-message footer .footer-profile {
  913.         margin-right: 10px !important;
  914.     }
  915.     .j-thread-post footer .footer-profile {
  916.         margin-right: -10px !important;
  917.     }
  918.     .j-thread-post footer .footer-profile .j-status-level {
  919.         padding: 0px 10px 0px 0px !important;
  920.     }
  921.     .j-thread-post footer .footer-profile .username,
  922.     .j-thread-post footer .footer-profile .jive-username-link {
  923.        /* padding: 0px 10px 0px 10px !important; 0.2 */
  924.         max-width: 250px !important;
  925.     }
  926.     .j-inline-correct-answer footer .footer-profile .j-status-levels,
  927.     .j-inline-promoted-helpful-answer footer .footer-profile .j-status-levels,
  928.     .j-inline-recommended-answer footer .footer-profile .j-status-levels {
  929.         padding: 0px 10px 0px 0px !important;
  930.     }
  931.     .j-inline-correct-answer footer .footer-profile .username,
  932.     .j-inline-promoted-helpful-answer footer .footer-profile .username,
  933.     .j-inline-recommended-answer footer .footer-profile .username {
  934.         padding: 0px 10px 0px 10px !important;
  935.         max-width: 250px !important;
  936.     }
  937.  
  938.  
  939.     /* text wrap in header */
  940.     .j-thread-post > header .j-post-author { white-space: normal !important; }      
  941.    
  942.     /* thread post section (message body) */
  943.     .j-thread-post section {
  944.         padding: 0px 20px !important;
  945.         margin-bottom: 15px !important;                                                     /* CHANGED */
  946.     }
  947.    
  948.  
  949.     /* thread rendered content */
  950.     .jive-rendered-content { padding-bottom: 4px !important; }
  951.    
  952.     /* thread rendered content quote & pre */
  953.     .jive-rendered-content .jive-quote,
  954.     .jive-rendered-content .jive-pre {
  955.         margin: 5px 15px !important;
  956.     }
  957.  
  958.     /* thread reply footer (Return to Community | Go to original post) */
  959.     #jive-thread-reply-footer { margin-top: 10px !important; }
  960.    
  961.     /* more like this links, incomming links */
  962.     #apple-related-threads { margin: 0px 40px !important; }
  963.     #apple-related-threads .j-box { margin-bottom: 0px !important; }
  964.     .j-icon-list li { padding: 3px 0px 3px 22px !important; }
  965.  
  966.     /* related articles */                                                          
  967.     .apple-sidebar-property {
  968.         width: auto !important;
  969.         padding-left: 0px !important;
  970.     }
  971.     .jive-box-body.jive-sidebar-body.jive-sidebar-body-related-articles { padding: 15px 0px !important; }
  972.    
  973.  
  974.     /* ------------------
  975.         staus level, expertise, level points
  976.     */
  977.     /* status level expertise tile */
  978.     .j-status-level.expertise-tile,
  979.     .status-tile.expertise-tile { display: none !important; }                  
  980.    
  981.     /* status level level points */
  982.     .j-status-level .level-points span { display: inherit !important; }            
  983.     .j-status-level .level-points { white-space: inherit !important; }              
  984.     /* ------------------ */
  985.  
  986.  
  987.     /* ------------------------------------------------------------------------------------------------
  988.         INLINE EDITOR
  989.     */
  990.     /* editor */
  991.     .jive-discussion-replies li.addReply { margin: 50px 40px 0px !important; }
  992.  
  993.  
  994.     /* ------------------------------------------------------------------------------------------------
  995.         ADVANCED EDITOR
  996.     */
  997.  
  998.     /* content area */
  999.     .j-thread.jive-body-formpage #body-apple .j-form {
  1000.         max-width: inherit !important;
  1001.         margin: 0px auto 20px !important;
  1002.         width: inherit !important;
  1003.     }
  1004.     .j-thread .jive-content.jive-create-thread,
  1005.     .jive-body-formpage-document .jive-content.doc-page {
  1006.         margin: 0px 40px !important;
  1007.         padding: 0px !important;
  1008.     }
  1009.  
  1010.  
  1011.     /* editor panel */
  1012.     .j-thread .jive-content.jive-create-thread #jive-compose-title,
  1013.     .j-thread .jive-content.jive-create-thread .jive-editor-panel.jive-large-editor-panel,
  1014.     .jive-body-formpage-document .jive-content.doc-page #jive-compose-title,
  1015.     .jive-body-formpage-document .jive-content.doc-page .jive-editor-panel.jive-large-editor-panel { margin: 0px !important; }
  1016.  
  1017.     /* line height in editor
  1018.    
  1019.        I've tracked down a copy/paste error that happens in the editor if you decide to rearrange things.
  1020.        Typically the cut and pasted text inherits an unwanted fixed size which isn't displayed in the
  1021.        editor and can be missed after submission. This issue can be suppressed by not explicitly setting
  1022.        the font size of the editor area.   turingtest2
  1023.          https://discussions.apple.com/docs/DOC-10241
  1024.     */
  1025.     body.tiny_mce_content { line-height: inherit !important; }
  1026.  
  1027.     /* replying to */
  1028.     p.jive-replying-to { padding: 20px 0px !important; }
  1029.     .jive-body-formpage-comment .jive-thread-message { margin: 0px 40px 0px 80px !important; }
  1030.  
  1031.     /* reply to avatar */
  1032.     .j-thread-post header .j-post-avatar {
  1033.         position: absolute !important;
  1034.         top: 0px !important;
  1035.         left: -50px !important;
  1036.         width: auto !important;
  1037.     }
  1038.    
  1039.     /* buttons (Reply|Cancel) 0,2
  1040.     .j-publishbar,
  1041.     .jive-body-formpage .jive-composebuttons { margin: 20px 40px 0px !important; } */
  1042.  
  1043.  
  1044.     /* ------------------------------------------------------------------------------------------------
  1045.         ACTIVITY STREAM
  1046.     */
  1047.     /* activity entry */
  1048.     .j-act-entry { padding: 5px 0px 10px 100px !important; }
  1049.  
  1050.     /* activity title */
  1051.     .j-body-home .j-act-title { padding: 5px 0px 5px 24px !important; }
  1052.  
  1053.     /* activity body & comment */                                                  
  1054.     .j-body-home .j-act-init { padding: 5px 0px 10px 100px !important; }
  1055.     .apple-activity-comments-wrapper { margin-left: 0px !important; }
  1056.  
  1057.     /* Like list */
  1058.     .j-act-grouped .j-act-g-item { padding: 3px !important; }
  1059.    
  1060.    
  1061.     /* ------------------------------------------------------------------------------------------------
  1062.         SEARCH RESULTS
  1063.     */
  1064.     /* search result entry */
  1065.     .j-search-results-main-container .j-search-result { padding: 10px !important; }
  1066.  
  1067.  
  1068.     /* ------------------------------------------------------------------------------------------------
  1069.         DOC (USER TIP)
  1070.     */                                                                              
  1071.     /* user tip canvas */
  1072.     .jive-body-content.j-doc .j-column-wrap-l { margin: 0px 40px !important; }
  1073.  
  1074.     /* user tip border etc */                                                               /* NEW */
  1075.     .j-doc .jive-content {
  1076.         margin: 0px !important;
  1077.      /*   margin-left: 150px !important; */
  1078.         padding: 10px !important;
  1079.         border: thin dotted !important;
  1080.     }
  1081.  
  1082.  
  1083.     /* ------------------------------------------------------------------------------------------------
  1084.         BLOG (MODERATOR TIP)
  1085.     */                                                                                      /* NEW */                                                                      
  1086.     /* blog canvas */
  1087.     .jive-body-content.j-blog .j-column-wrap-l { margin: 0px 40px !important; }
  1088.    
  1089.     /* blog border etc */
  1090.     .jive-content-blog {
  1091.         margin: 0px !important;
  1092.         padding: 10px !important;
  1093.         border: thin dotted !important;
  1094.         border-radius: 0px !important;
  1095.     }
  1096.  
  1097.  
  1098.     /* ------------------------------------------------------------------------------------------------
  1099.         UNAUTHORIZED (WARNING)
  1100.     */                                                                                      /* NEW */                                                                      
  1101.     /* unauthorized error message */
  1102.     .jive-body-warn.jive-body-unathorized #j-main { margin: 0px 40px !important; }
  1103.  
  1104.    
  1105.     /* ------------------------------------------------------------------------------------------------
  1106.         PROFILE
  1107.     */                                                                              
  1108.     /* header & navigation bar (Bio|Activity|People|Content|Communities|Bookmarks) */
  1109.     .j-view-profile .j-page-header { padding: 10px 40px !important; }
  1110.     .j-bigtab-nav { margin: 10px 40px !important; }
  1111.    
  1112.     /* filter ui current selection blue marker */                                           /* NEW */
  1113.     .j-view-profile .j-second-nav ul > li.active {
  1114.         display: none !important;
  1115.     }
  1116.  
  1117.     /* ------------------
  1118.         Bio
  1119.     */
  1120.     .j-layout-l .j-column-wrap-l { width: 100% !important; }
  1121.    
  1122.     /* ------------------
  1123.         profile specialties and awards
  1124.     */
  1125.     /* profile status container for specialties and awards */                               /* REFINED (rule) */
  1126.     .jive-view-profile .profile-status-container { display: none !important; }
  1127.  
  1128.     /* profile modal note status row for specialties and awards */
  1129.     .status-row { display: none !important; }                                      
  1130.     /* ------------------ */
  1131.  
  1132.  
  1133.     /* ------------------
  1134.         Content
  1135.     */                                                                                      /* NEW */
  1136.     /* browser control ui */
  1137.     .j-view-profile .j-layout-sl.j-browse-content .j-column-s #js-browse-controls {
  1138.         margin: 25px 0px 0px -166px !important;
  1139.     }
  1140. } /* end */
  1141.  
  1142. /* ==============================================  
  1143.    Revise the display of posts in a Thread.      0.2
  1144.    Each of these cases may have one or more post after:
  1145.      -- Question only
  1146.      -- Question with answer
  1147.      -- Question with helpful
  1148.      -- Question with answer and helpful
  1149.    examples:
  1150.    https://discussions.apple.com/thread/7583029
  1151.    https://communities.apple.com/pt/thread/4531
  1152.    https://communities.apple.com/pt/thread/4705
  1153.  
  1154.   */
  1155. @-moz-document
  1156.    url-prefix(https://discussions.apple.com/thread),
  1157.    url-prefix(https://discussions.apple.com/message),
  1158.    url-prefix(https://discussions.apple.com/update-advanced-comment.jspa),
  1159.    url-prefix(https://discussionsjapan.apple.com/thread),
  1160.    url-prefix(https://discussionsjapan.apple.com/message),
  1161.    url-prefix(https://discussionsjapan.apple.com/update-advanced-comment.jspa),
  1162.    url-prefix(https://discussionskorea.apple.com/thread),
  1163.    url-prefix(https://discussionskorea.apple.com/message),
  1164.    url-prefix(https://discussionskorea.apple.com/update-advanced-comment.jspa),
  1165.    url-prefix(https://communities.apple.com/es/thread),  
  1166.    url-prefix(https://communities.apple.com/es/message),  /* I have not see an es message */
  1167.    url-prefix(https://communities.apple.com/es/update-advanced-comment.jspa),
  1168.    url-prefix(https://communities.apple.com/pt/thread),
  1169.    url-prefix(https://communities.apple.com/pt/message),
  1170.    url-prefix(https://communities.apple.com/pt/update-advanced-comment.jspa) {
  1171.        
  1172.         /* Debug to identify which page we found.  Place our ukiyo-e. */      
  1173.  /*   h1, h2, h3 {    
  1174.           background-color: aqua !important;      
  1175.           border: 2px dashed black !important;    
  1176.          }
  1177.    */
  1178.       /* significant classes and selecters
  1179.          To select in Question and posible answer and helpful
  1180.            section.j-original-message
  1181.        
  1182.          to select all replies
  1183.            div.all-replies-container
  1184.            ul-jive-discussion-replies.jive-discussion-flat.jive-discussion-indent-0
  1185.       */
  1186.        
  1187.             /* Move who wrote the question back to where it was before!
  1188.          Will appear to the left of the question text box. */
  1189.  
  1190.       /* Avatar */
  1191.       header.js-original-header  img.jive-avatar {
  1192.            position: absolute !important;
  1193.            top: 30px !important;
  1194.            left: 15px !important;
  1195.            width: 66px !important;
  1196.            height: 66px !important;      
  1197.          }
  1198.  
  1199.       /* Let questioner's info escape the box  */
  1200.       div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden { overflow: visible !important; }
  1201.      
  1202.        /* html for user's name
  1203.          <strong itemprop="author"
  1204.               itemscope=""
  1205.               itemtype="http://schema.org/Person">
  1206.            <a rel="nofollow"
  1207.               href="/people/rccharles"
  1208.               data-externalid=""
  1209.               data-username="rccharles"
  1210.               data-avatarid="1095"
  1211.               id="jive-99999999999999999999999"
  1212.               data-userid="999999"
  1213.               data-presence="null"
  1214.               class="jiveTT-hover-user jive-username-link">rccharles</a>
  1215.           </strong>
  1216.        */
  1217.       /* questioner's name. movement. */
  1218.       span.j-post-author strong  {
  1219.           position: absolute !important;
  1220.           top: 80px !important;
  1221.           left: -96px !important;
  1222.           text-align: center !important;
  1223.           width: 120px !important;
  1224.          }  
  1225.       /* questioner's name. text adjustment */
  1226.       span.j-post-author strong  a {
  1227.           font-weight: 400 !important;
  1228.           font-size: 13px !important;
  1229.           line-height: 13px !important;
  1230.          }  
  1231.  
  1232.      /* questioner's points icon. fyi: position: absolute didn't work here.  */
  1233.      div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden span.status-image img.svg {
  1234.          margin-top: 100px !important;
  1235.          margin-left: -50px !important;
  1236.          }  
  1237.  
  1238.       /* questioner's points.  Actual coding:
  1239.          <span class="level-points">Level 6
  1240.              <span>(8,266 points)</span>
  1241.          </span>
  1242.       */
  1243.       div.status-container span.level-points {
  1244.           position: absolute !important;
  1245.           top: 134px !important;
  1246.           left: -152px !important;    /* shove level # off the left of window.  Need to save space. */
  1247.          }  
  1248.       div.status-container span.level-points span {
  1249.           display: inline !important;  
  1250.           font-size: 12px !important;
  1251.           line-height: 12px !important;
  1252.           text-align: center !important;
  1253.           width: 120px !important;  /* doesn't seem to have an effect. */
  1254.          /* background-color: yellow !important; */
  1255.          }  
  1256.      
  1257.      /* For some reason, maybe overflow: visible, wrecks some tags positioning, fix up. */
  1258.      /* Move folling and tool icon back to where they were */
  1259.      ul.apple-social-actions-toolbar  { margin-top: -45px !important; }
  1260.      
  1261.       /* Move who wrote a post ( just relpies ) back to where it was before!
  1262.          some tags do not move in question in answer or helpful in answer.
  1263.          Avatar */
  1264.        div.footer-profile span.image-container img {
  1265.            position: absolute !important;
  1266.            top: -12px !important;
  1267.            left: -105px !important;
  1268.            width: 66px !important;
  1269.            height: 66px !important;
  1270.          }
  1271.  
  1272.        div.all-replies-container div.footer-profile span.username {
  1273.            position: absolute !important;
  1274.            top: 58px !important;
  1275.            left: -136px !important;
  1276.            font-size: 13px !important;
  1277.            line-height: 13px !important;
  1278.            text-align: center !important;
  1279.            width: 125px !important;
  1280.            padding: 0px !important;
  1281.          }
  1282.        
  1283.        /* Points icon */
  1284.        div.footer-profile span.status-image {
  1285.            position: absolute !important;
  1286.            top: 83px !important;
  1287.            left: -82px !important;
  1288.          }
  1289.      
  1290.        div.footer-profile span.level-points > span {
  1291.            position: absolute !important;
  1292.            top: 115px !important;
  1293.            left: -116px !important;
  1294.            font-size: 12px !important;
  1295.            line-height: 12px !important;
  1296.          }
  1297.        
  1298.    
  1299.        
  1300.      /* thread original messeage (question) */                                          /* NEW */
  1301.      /* #FFFFCC  parchment #EDF7E8 light green answered  */
  1302.      .j-thread-post section.j-original-message {
  1303.          margin: 0px 30px 0px 110px  !important;
  1304.          padding: 15px 10px !important;
  1305.          border-style: dotted !important;
  1306.          border-width: thin !important;
  1307.          background: none repeat scroll 0% 0% #FFFFCC !important;  /* parchment */
  1308.        }
  1309.      
  1310.      /* Reply button  */
  1311.      .j-thread-post section .thread-actions {
  1312.          max-width: inherit !important;
  1313.          margin: 0px 25px 0px 0px !important;
  1314.        }
  1315.    
  1316.      /* lower metadata "Posted on ..."  */
  1317.      .meta-posted {
  1318.          max-width: inherit !important;
  1319.          margin: 10px 25px 20px 0px !important;  /* margin-left: 0px   */
  1320.          font-size: 16px !important;    
  1321.        }
  1322.        
  1323.      /* Mess with answer in question who made post information */
  1324.        
  1325.      /* Seemed the "Posted on ..." in the Answer inside the question is in the answer box
  1326.         when it should be in the footer section :-(.   Do a force adjust. Bug fix. */
  1327.      div.j-inline-correct-answer section p.meta-posted {margin-left: -20px  !important;}
  1328.    
  1329.      
  1330.      /* Move avatar and username.  */  
  1331.      /* answer inside question. Here is the html we have to work with :-(  
  1332.        <a rel="nofollow" href="/people/Hiroto" data-userid="999999" data-externalid="" data-avatarid="999999"
  1333.               data-username="Hiroto" class="username jiveTT-hover-user">
  1334.           <img class="jive-avatar" src="/people/Hiroto/avatar/40.png" data-height="40"
  1335.               alt="Hiroto" title="Hiroto" style="outline: none;" height="40" width="40">Hiroto
  1336.        </a>
  1337.      */
  1338.     /* adjust avator after move of the a tag. */
  1339.     div.j-inline-correct-answer div.footer-profile img.jive-avatar {
  1340.            width: 66px !important;
  1341.            height: 66px !important;
  1342.            margin-top: -70px !important;
  1343.            margin-left: 30px !important;
  1344.          }
  1345.        
  1346.      /* Username */  
  1347.      div.j-inline-correct-answer div.footer-profile a.username.jiveTT-hover-user {
  1348.            position: absolute !important;
  1349.            top: 70px !important;
  1350.            left: -142px !important;
  1351.            font-size: 13px !important;
  1352.            line-height: 13px !important;
  1353.            text-align: center !important;
  1354.            width: 120px !important;
  1355.            padding: 0px !important;
  1356.            display:block !important;
  1357.            overflow: visible !important;
  1358.          }
  1359.        
  1360.      /* points icon within answer inside question */
  1361.      section.j-original-message div.j-inline-correct-answer div.footer-profile span.status-image img.svg {
  1362.            position: absolute !important;
  1363.            top:  0px !important;
  1364.            left: -15px !important;
  1365.          }  
  1366.        
  1367.      /* points */  
  1368.      div.j-inline-correct-answer div.footer-profile span.level-points > span {
  1369.            position: absolute !important;
  1370.            top: 114px !important;
  1371.            left: -148px !important;
  1372.            font-size: 12px !important;
  1373.            line-height: 12px !important;
  1374.            text-align: center !important;
  1375.            width: 120px !important;
  1376.          }  
  1377.        
  1378.      /* answer points icon in regular reply area */
  1379.      div.all-replies-container div.j-inline-correct-answer div.footer-profile span.status-image img.svg {
  1380.            position: absolute !important;
  1381.            top:  16px !important;
  1382.            left: -10px !important;
  1383.          }  
  1384.    
  1385.        
  1386.      /* Move avatar */
  1387.      /* helpful inside question */
  1388.      div.j-inline-promoted-helpful-answer div.footer-profile img.jive-avatar{
  1389.            position: absolute !important;
  1390.            top: 5px !important;
  1391.            left: -96px !important;
  1392.            width: 66px !important;
  1393.            height: 66px !important;
  1394.          }
  1395.            
  1396.        
  1397.       /* points icon */
  1398.       div.j-inline-promoted-helpful-answer div.footer-profile span.j-status-levels img {
  1399.            position: absolute !important;
  1400.            top:  76px !important;
  1401.            left: -74px !important;
  1402.          }
  1403.        
  1404.       /* points */
  1405.       div.j-inline-promoted-helpful-answer div.footer-profile span.level-points > span {
  1406.            position: absolute !important;
  1407.            top: 108px !important;
  1408.            left: -100px !important;
  1409.            font-size: 12px !important;
  1410.            line-height: 12px !important;
  1411.          }  
  1412.        
  1413.      /* thread message border.  All message except question it seems.   NEW */
  1414.      .jive-discussion-replies li.reply .jive-thread-message {
  1415.          border-style: dotted !important;
  1416.          border-width: thin !important;
  1417.          margin-left: 80px  !important;      
  1418.       }
  1419.        
  1420.      /* promoted helpful answer and prompted recommended answer */                      /* NEW */
  1421.      .j-inline-promoted-helpful-answer,
  1422.      .j-inline-recommended-answer {
  1423.          background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  1424.          padding: 15px 10px 5px 10px !important;
  1425.          margin: 0px 10px 15px 80px !important;
  1426.          border-style: dotted !important;
  1427.          border-width: thin !important;
  1428.        }
  1429.    
  1430.      /* Tighten up double paragraphs spacing.  I put in a blank paragraph to separate "real"
  1431.         paragraphs  
  1432.           https://discussions.apple.com/message/30333231#30333231 */
  1433.      .j-thread .jive-content .j-thread-post section p,
  1434.      .j-thread .jive-content .j-thread-post section .jive-rendered-content p,
  1435.      .j-thread .jive-content .j-thread-post section.j-original-message .jive-rendered-content p {
  1436.         min-height: 0px !important;
  1437.      }
  1438.      p[style="min-height: 8pt; height: 8pt; padding: 0px;"] { height: 0.6em !important; }
  1439.      
  1440.      
  1441.      
  1442.      /* the control that shows all replies, and forces the display of all replies
  1443.         when they might otherwise be hidden. Thanks turingtest2, London, UK  */
  1444.      .helpful-allreply {display: none !important;}                        /* Hide helpful/all reply switch */
  1445.      #helpful-container {display: none !important;}                       /* Hide helpful block */
  1446.      .all-replies-container {display: inherit !important;}                /* Display all replies block */
  1447.  
  1448.      /*You can hide the copies of any solved/recommended answers that appear immediately
  1449.        below the question with:   turingtest2 */
  1450.      .j-answer-rollup {display: none !important;}                         /* Hide solved/recommended block */
  1451.  
  1452.      /* No more link popup on simple edit.  turingtest2  
  1453.        .-.-.-.-.-.-.-.- */
  1454.      /*  .popOverContent {display: none !important;}          /* Suppress pop-up link editor */  
  1455.        
  1456.      /* For buttons without the black background like cancel
  1457.         Color picker
  1458.         http://www.w3schools.com/colors/colors_picker.asp */
  1459.          /* "I have this question too" on question */
  1460.      span.j-social-action.black-button.j-disabled,
  1461.      div.jive-composebuttons button.j-btn-global,
  1462.      span a.black-button.jive-acclaim-likelink,  /* question button */
  1463.      div.j-inline-correct-answer footer a.action-button,  /* answer button */
  1464.      span.js-acclaim-container.acclaim-container a /* response button */
  1465.        {
  1466.          padding: 7px 7px !important;
  1467.          color:  #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  1468.          font-size: 14px !important;
  1469.          line-height: 14px !important;
  1470.          background-color: #f2f2f2 !important;
  1471.  
  1472.        }
  1473.        
  1474.      /* "I have this question too" on question.
  1475.         Why was opacity 0.5 on this button but not others? */
  1476.      span.j-social-action.black-button.j-disabled {opacity: 1 !important;}
  1477.        
  1478.      /* button in reponse */
  1479.      div.all-replies-container .jive-thread-helpful-btn {
  1480.          color: #0288CC !important;  /* light blue */
  1481.          background-color: #f2f2f2 !important;    
  1482.        }
  1483.  
  1484.            /* Upper tool icon pulldwon */
  1485.      ul#jive-action-sidebar-tab-list_thread-actions-tab *,
  1486.           /* Lower tool icon pulldwon */
  1487.      ul.apple-thread-options.js-toggle-thread-actions li *,
  1488.           /* change lower button text from grey to light blue. */
  1489.      a.discussionPermaLink
  1490.      /* span.jive-icon-sml.jive-icon-warn */{  color: #0288CC !important;  /* light blue */}
  1491.        
  1492.      /* Make all lower buttons the same. Who ever heard of different size buttons? */  
  1493.        
  1494.          /* save reply, button you get to save an edit of a post */
  1495.      div.jive-composebuttons button#submitButton.j-btn-callout,  /* post button on edit of orginal post */
  1496.          /* Correct answer.  Isn't as bad as the reply button, but might as well use the
  1497.             same set of rule, even if we do not need all. may not be correct button :-( */
  1498.      div.jive-thread-reply-btn-correct a,
  1499.          /* Following; upper right */
  1500.      a#jive-link-thread-following.button.following-button,  /* no box */
  1501.          /* alternative state of following button, follow */
  1502.      a#jive-link-thread-startFollowing.button.follow-button,
  1503.          /* action button with the V */
  1504.      a.apple-actions-link,  /* not working */
  1505.          /* Tone down Reply Button */
  1506.          /* footer div.footer-toplevel-actions a .discussionAdd, */
  1507.      .discussionAdd,
  1508.          /* clicking on Reply to get the inputput, this is the save */
  1509.      div input.jive-form-button-save.j-btn-callout,
  1510.           /* clicking on Reply to get the inputput, this is the cancel */
  1511.      div input.jive-form-button-cancel{
  1512.          background-image: none !important; ;   /* bye, bye gradiant */
  1513.          background-color: #f2f2f2 !important;
  1514.          color: #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  1515.          padding: 7px !important;
  1516.          font-size: 14px !important;
  1517.          line-height: 14px !important;
  1518.          margin-bottom: 8px !important;
  1519.        }
  1520.      
  1521.      /*  save reply, button you get to save an edit of a post. touch up
  1522.        https://discussions.apple.com/update-advanced-comment.jspa?id=30347987 */
  1523.      div#body-apple button#submitButton.j-btn-callout { margin-left: 20px !important; }
  1524.    
  1525.        
  1526.      /* Following button, upper right. Might as well box it for consistancy */
  1527.      a#jive-link-thread-following.button.following-button  {
  1528.          border-style: solid !important;
  1529.          border-width: thin !important;
  1530.          border-color: #9b9b9b !important; /* grey, Apple's color */
  1531.          padding: 6px 6px 8px 28px !important;
  1532.        }
  1533.        
  1534.      
  1535.      
  1536.      /* Check icon with Following.  Move to the left of following. */
  1537.      span.following-check.icon.icon-check {
  1538.          margin-left: -10px !important;
  1539.          margin-top: -7px !important;
  1540.        }
  1541.        
  1542.      /* Tool icon button upper left, right of Following button */
  1543.      a#apple-actions-link { padding: 4px 6px 4px !important; }
  1544.      
  1545.      /* Tool icon button lower left. same row as reply button */
  1546.      a.js-toggle-thread-options.thread-options  { padding: 4px 4px 4px !important; }
  1547.            
  1548.      /* Tool box upper right */
  1549.      ul.apple-social-actions-toolbar li.apple-actions {height: 28px !important;}
  1550.        
  1551.      /* User machine and operating system info from profile
  1552.         Make metadata font size the same. */
  1553.      section.j-original-message p.jive-model-info-display {
  1554.          font-size: 16px !important;
  1555.          margin-left: 0px !important;
  1556.        }
  1557.        
  1558.      /* hover */
  1559.           /* "I have this question too" on question */
  1560.      span.j-social-action.black-button.j-disabled:hover,
  1561.           /* Following; upper right */
  1562.      a#jive-link-thread-following.button.following-button:hover,      
  1563.        /* post button on edit of orginal post */
  1564.      div.jive-composebuttons button#submitButton.j-btn-callout:hover,
  1565.           /* cancel button on edit of orginal post */
  1566.      div.jive-composebuttons button.j-btn-global:hover,
  1567.           /* clicking on Reply to get the input, this is the save */    
  1568.      div input.jive-form-button-save.j-btn-callout:hover,
  1569.           /* clicking on Reply to get the inputput, this is the cancel */
  1570.      div input.jive-form-button-cancel:hover,
  1571.        /* Reply button hover state */
  1572.        .discussionAdd:hover{ border-color: #0288CC !important; }
  1573.        
  1574.   } /* @-moz-document for responses */
  1575.  
  1576.  
  1577. /* ==============================================  0.2
  1578.  
  1579.     User tips
  1580.       https://discussions.apple.com/docs/DOC-7501
  1581. */
  1582.  
  1583. @-moz-document
  1584.    url-prefix(https://discussions.apple.com/docs),
  1585.    url-prefix(https://discussionsjapan.apple.com/docs),
  1586.    url-prefix(https://discussionskorea.apple.com/docs),
  1587.    url-prefix(https://communities.apple.com/es/docs),  
  1588.    url-prefix(https://communities.apple.com/pt/tdocs) {
  1589.  
  1590.        
  1591.       /*     Debug to identify which page we found.  Place our ukiyo-e. */      
  1592.  /*  h1, h2, h3 {    
  1593.           background-color: aqua !important;      
  1594.           border: 2px dashed black !important;    
  1595.          }  */
  1596.              
  1597.       /* Following button, upper right. Might as well box it for consistancy  
  1598.         the > is the child selector. Must be a child of the parent. */
  1599.       ul.apple-social-actions-toolbar > li .following-button  {
  1600.           background-image: none !important; ;   /* bye, bye gradiant */
  1601.           background-color: #f2f2f2 !important;
  1602.           color: #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  1603.           padding: 7px !important;
  1604.           font-size: 14px !important;
  1605.           line-height: 14px !important;
  1606.           border-style: solid !important;
  1607.           border-width: thin !important;
  1608.           border-color: #9b9b9b !important; /* grey, Apple's color */
  1609.           padding: 6px 6px 8px 28px !important;
  1610.           margin-top: 4px !important;
  1611.        }
  1612.        
  1613.  
  1614.      /* Check icon with Following.  Move to the left of following. */
  1615.      span.following-check.icon.icon-check {margin-left: -10px !important; margin-top: -7px !important; }
  1616.        
  1617.      /* Tool icon button upper left, right of Following button */
  1618.      a#apple-actions-link {
  1619.          padding: 4px 6px 4px !important;
  1620.        
  1621.        }
  1622.      
  1623.      /* Tool icon button lower left. same row as reply button */
  1624.      a.js-toggle-thread-options.thread-options  { padding: 4px 4px 4px !important; }
  1625.            
  1626.      /* Tool box upper right */
  1627.      ul.apple-social-actions-toolbar li.apple-actions {
  1628.          height: 28px !important;
  1629.          margin-top: 4px !important;
  1630.          margin-right: 4px !important;
  1631.        }
  1632.          
  1633.   /* User tips also show an extra line after each paragraph which adversely affects a list written as paragraphs */
  1634.   p {margin-bottom: 0.1em;}  
  1635.    
  1636.       /* User tip reply button when saving a reply */
  1637.   div.jive-form-buttons input.j-btn-callout,
  1638.       /* User tip cancel button when making a reply */
  1639.   div.jive-form-buttons input.j-btn-callout + input{
  1640.          background-image: none !important; ;   /* bye, bye gradiant */
  1641.          background-color: white !important;  
  1642.          color: #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  1643.          padding: 7px !important;
  1644.          font-size: 14px !important;
  1645.          line-height: 14px !important;
  1646.        }
  1647.  
  1648.        
  1649.        
  1650.    /* Hovering thing */
  1651.    div.jive-form-buttons input.j-btn-callout:hover,
  1652.    div.jive-form-buttons input.j-btn-callout + input:hover { border-color: #0288CC !important; }  
  1653.        
  1654. }
  1655.  
  1656. /* ==============================================
  1657.    For ASC web pages with a sidebar shown on narrow window, make the side bar
  1658.    horizontal. Adjusts the column sizes in lists.
  1659.    adding more @-moz-document callouts prevents collateral damage
  1660.    to other web pages when css class and id conflicts.
  1661.    example pages:
  1662.      https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread]
  1663.      https://discussions.apple.com/community/ipad/ipad_in_business_and_education/content
  1664.         ?filterID=contentstatus[published]~objecttype~objecttype[thread]
  1665.      https://communities.apple.com/es/community/ipad/using_ipad/content?filterID=
  1666.         contentstatus[published]~objecttype~objecttype[thread]
  1667.      https://communities.apple.com/pt/people/espa%C3%B1ol.rccharles/content?manage=true
  1668.    avoid:
  1669.      https://communities.apple.com/pt/search.jspa
  1670.  
  1671.    */
  1672.      
  1673. @-moz-document
  1674.    url-prefix(https://discussions.apple.com/content),
  1675.    url-prefix(https://discussions.apple.com/community),
  1676.    url-prefix(https://discussions.apple.com/people),
  1677.    url-prefix(https://discussionsjapan.apple.com/content),
  1678.    url-prefix(https://discussionsjapan.apple.com/community),
  1679.    url-prefix(https://discussionsjapan.apple.com/people),
  1680.    url-prefix(https://discussionskorea.apple.com/content),
  1681.    url-prefix(https://discussionskorea.apple.com/community),
  1682.    url-prefix(https://discussionskorea.apple.com/people),
  1683.    url-prefix(https://communities.apple.com/es/content),    
  1684.    url-prefix(https://communities.apple.com/es/community/),
  1685.    url-prefix(https://communities.apple.com/es/people),  
  1686.    url-prefix(https://communities.apple.com/pt/content),
  1687.    url-prefix(https://communities.apple.com/pt/community/),
  1688.    url-prefix(https://communities.apple.com/pt/people) {  
  1689.    
  1690.     @media all and (max-width: 1265px)  {
  1691.      /* Debug to identify which page we found.  Place our ukiyo-e. */      
  1692.   /*    h1, h2, h3, #apple-site-title > a:nth-child(1) {    
  1693.            
  1694.           border: 2px dashed black !important;    
  1695.          }  */
  1696.        
  1697.     /* ------------------      
  1698.        Treatment for narrow window      
  1699.        Method 1 (minimum optimisation)      
  1700.      
  1701.        Places
  1702.        
  1703.        https://discussions.apple.com/places
  1704.        
  1705.        Adjust community list table's shift and margin to maximize its width.      
  1706.     */                                                                            
  1707.     /* ------------------ (currently commented out)      
  1708.     .j-layout-sl.j-browse-places .j-column-wrap-l { margin-left: -166px !important; }      
  1709.     .j-layout-sl.j-browse-places .j-column-l      { margin-left: 166px !important; }      
  1710.     .j-layout-sl.j-browse-places .j-column-s      { width: 166px !important; }      
  1711.     ------------------ */      
  1712.     /* ------------------      
  1713.         Treatment for narrow window      
  1714.         Method 2 (more beneficial to narrow window but has disadvantage for wide window)      
  1715.          
  1716.         Let community list table have full width but not exceed 1019px to make room for      
  1717.         sidebar ui (filters & actions).  If window is wide enough (>=1265px), sidebar ui      
  1718.         is displayed next to community list table, otherwise it is displayed below or
  1719.         above it (depending upon its document tree order).      
  1720.          
  1721.         * sidebar width (constant)    = 166px      
  1722.         * community table max width   = 1019px      
  1723.         * canvas margin-left          = 40px      
  1724.         * canvas margin-right         = 40px      
  1725.         ---------------------------------------      
  1726.         * total                       = 1265px      
  1727.     */                                                                              
  1728.     /* ------------------ (currently active) */      
  1729.     .j-layout-sl.j-browse-places .j-column-wrap-l { max-width: 1019px !important; }      
  1730.     .j-layout-sl.j-browse-places .j-column-wrap-l { margin-left: 0px !important; }      
  1731.     .j-layout-sl.j-browse-places .j-column-l      { margin-left: 0px !important; }      
  1732.     .j-layout-sl.j-browse-places .j-column-l      { padding-left: 0px !important; }      
  1733.     .j-layout-sl.j-browse-places .j-column-s      { width: 166px !important; }          
  1734.     /* ------------------ */      
  1735.        
  1736.     /* See if we can position "start ad discussion, Write a user tip" bottom  
  1737.        bar a little better */    
  1738.     .j-box {    
  1739.         margin-top: 40px !important;    
  1740.         float: right !important;}    
  1741.        
  1742.    
  1743.     /* Turn verical nav list into a horizontal nav list to save vertical space.    
  1744.         This nav bar appear above the list of dicussions in the Your Content page.    
  1745.         It appears below in the list of discussions page.    
  1746.         A larger screen has room for vertical navigation, so let along. */    
  1747.  
  1748.     /* We need to make room for the horizontal nav bar.  A floating right, the area to the left    
  1749.        is blank anyway. */    
  1750.     .j-layout-sl.j-browse-content .j-column-s        
  1751.         { width: 95% !important; }  /* let more room for horizontal navigation 0.64 */    
  1752.      
  1753.      
  1754.     /* make nav bar horizontal amoung other things. */    
  1755.     div .j-column.j-column-s nav ul li {  
  1756.       float: left !important;    /* makes the list items horizontal */    
  1757.       width: 120px !important;  /* width of each link */  
  1758.                                  /*  height: 30px !important;*/
  1759.                                  /* vertical-align: middle !important; */
  1760.        
  1761.       text-align: center !important;    
  1762.       margin-left: 0 !important;    
  1763.       padding-left: 0 !important;    
  1764.     }  
  1765.  
  1766.     li.j-browse-filter-group-item.js-browse-filter-group-item a.js-select-link {height: 30px !important;}
  1767.        
  1768.     /* let a little space to the left of the navigation bar. */      
  1769.         div .j-column.j-column-s nav  {  
  1770.         margin-left: 0px !important;      
  1771.         margin-top: 20px !important;  /* max of margin-bottom of proceeding line and margin-top */    
  1772.     }  
  1773.      
  1774.    /* after making the navigating link horizontal, the blue overlay box doesn't immediately  
  1775.       jump to the draft box.  After clicking on any of the other links, the blue box    
  1776.       parks on the draft box and will not move.  The function must be implemented in javascript which  
  1777.       cannot be changed from css. In the May 2016 ASC, the blue box moves correct when the sidebar is moved to the right.
  1778.       Still broken for horizontal. Purge it.    
  1779.       Upper nav bar on your content */    
  1780.       /* https://discussions.apple.com/people/<apple-id>/content */    
  1781.     body.jive-view-profile.j-view-profile.j-view-profile-nonself.other .j-second-nav > ul:nth-child(1) > li:last-child,    
  1782.        body.j-body-yourwork.other li.active:last-child {display: none !important;}    
  1783.        
  1784.    /* Found another blue overlay box.    
  1785.       https://discussions.apple.com/people/<ASC_id>/content?manage=true */    
  1786.     body.jive-view-profile.j-view-profile.j-view-profile-self.other li.active:last-child {display: none !important;}    
  1787.      
  1788.     /* style the link (a tag) inside the li    
  1789.        Put a box around the links.  Complete box makes for a dark middle Line. So, leave  
  1790.        off right line but for righ most link. Do the best we can    
  1791.        ASC box grey-line color #d7d7d7 also seems like grey #eaeaea */    
  1792.     div .j-column.j-column-s nav li a {  
  1793.        border: 1px solid #d7d7d7 !important;    
  1794.        border-left: none !important;  /* avoid double border lines for middle items */    
  1795.        padding-left: 0 !important;    
  1796.     }  
  1797.    
  1798.     /* Fill in the first box with a line on the left */    
  1799.     /* Upper nav bar on your content  
  1800.        https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread] */    
  1801.     body.j-body-yourwork.other li.j-browse-filter-group-item:first-child > a,  
  1802.     /* https://discussions.apple.com/people/<apple-id>/content?manage=true */    
  1803.     body.jive-view-profile.j-view-profile.j-view-profile-self other li.active:first-child > a,  
  1804.     /* https://discussions.apple.com/people/<apple-id>/content */    
  1805.     div .j-column.j-column-s nav.j-second-nav ul > li:first-child > a,  
  1806.     /* lower nav bar, see here:    
  1807.        https://discussions.apple.com/community/ipad/ipad_in_business_and_education  
  1808.             /content?filterID=contentstatus[published]~objecttype~objecttype[thread] */    
  1809.     body.j-body-place.other    li.j-browse-filter-group-item:first-child {    
  1810.        border-left: 1px solid #d7d7d7 !important;  /* avoid double border lines for middle items */    
  1811.     }  
  1812.        
  1813.        /* Hover. horizontal nav bar */
  1814.     div .j-column.j-column-s nav li a:hover {  
  1815.         border-color: #42aaff !important;  /* light blue */    
  1816.       }  
  1817.  
  1818.      
  1819.        
  1820.   } /* media */
  1821. } /* @-moz-document url-prefix for sidebar */
  1822.  
  1823. /* ==============================================
  1824.    Leave the login window footer alone. So, turn these fields back on.    
  1825.     */      
  1826. @-moz-document    
  1827.     url-prefix(https://discussions.apple.com/people/),      
  1828.     url-prefix(https://discussions.apple.com/welcome),      
  1829.     url-prefix(https://discussionsjapan.apple.com/people/),        
  1830.     url-prefix(https://discussionsjapan.apple.com/welcome/),      
  1831.     url-prefix(https://discussionskorea.apple.com/people/),      
  1832.     url-prefix(https://discussionskorea.apple.com/welcome/),
  1833.     url-prefix(https://communities.apple.com/es/people),  
  1834.     url-prefix(https://communities.apple.com/es/welcome),      
  1835.     url-prefix(https://communities.apple.com/pt/people),
  1836.     url-prefix(https://communities.apple.com/pt/welcome)  {        
  1837.    
  1838.         /* legalistic bomblast on login window*/      
  1839.         #globaldisclaimer.sosumi {display: inherit !important; }            
  1840.         /* path to here */      
  1841.         #j-footer #breadcrumbs {display: inherit !important; }      
  1842.         /* apple product info */      
  1843.         p.gf-buy {display: inherit !important; }          
  1844. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement