Making WordPress.org

Changeset 4227


Ignore:
Timestamp:
10/12/2016 07:35:47 PM (8 years ago)
Author:
ocean90
Message:

Breathe: Add some basic styling for handbooks's "Table of Contents" box.

See #1825.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/style.css

    r4217 r4227  
    599599}
    600600
     601/** Table of Contents */
     602.post-type-archive-handbook div.table-of-contents,
     603.single-handbook div.table-of-contents {
     604    float: right;
     605    width: 250px;
     606    background: #f7f7f7;
     607    border: 1px solid #eee;
     608    margin: 0 0 15px 15px;
     609    z-index: 1;
     610    position: relative;
     611    color: #555d66;
     612}
     613
     614@media (min-width: 971px) {
     615    .post-type-archive-handbook div.table-of-contents,
     616    .single-handbook div.table-of-contents {
     617        margin: -15px -30px 15px 15px;
     618    }
     619}
     620
     621.post-type-archive-handbook div.table-of-contents h2,
     622.single-handbook div.table-of-contents h2,
     623.post-type-archive-handbook div.table-of-contents h3,
     624.single-handbook div.table-of-contents h3 {
     625    margin: 0;
     626    padding: 8px 0;
     627    text-align: center;
     628    font-size: 1.3em;
     629    color: #32373c;
     630}
     631
     632.post-type-archive-handbook ul.items,
     633.single-handbook ul.items {
     634    margin: 0 0 8px;
     635    list-style-type: none;
     636    padding: 0 15px;
     637}
     638
     639.post-type-archive-handbook ul.items li,
     640.single-handbook ul.items li {
     641    padding-bottom: 6px;
     642}
     643
     644.post-type-archive-handbook ul.items li ul li,
     645.post-type-archive-handbook ul.items li ul li ul li,
     646.single-handbook ul.items li ul li,
     647.single-handbook ul.items li ul li ul li {
     648    padding-bottom: 0;
     649}
     650
     651.post-type-archive-handbook ul.items li a,
     652.single-handbook ul.items li a {
     653    color: #555d66;
     654}
     655
     656.post-type-archive-handbook ul.items li a:hover,
     657.single-handbook ul.items li a:hover {
     658    color: #0073aa;
     659    text-decoration: underline;
     660}
     661
     662.toc-heading:target {
     663    border-left: 5px solid #0073aa;
     664    padding-left: 5px;
     665    margin-left: -10px;
     666}
     667
     668@media (max-width: 480px) {
     669    .post-type-archive-handbook div.table-of-contents,
     670    .single-handbook div.table-of-contents {
     671        display: none;
     672    }
     673}
Note: See TracChangeset for help on using the changeset viewer.