openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

openrat-navigation.less (747B)


      1 /*   N a v i g a t i o n   */
      2 
      3 #navigation {
      4 
      5     ul.or-navtree-list {
      6 
      7         list-style-type: none;
      8         margin: 0;
      9         padding: 0;
     10 
     11         ul {
     12             margin-left: 18px;
     13         }
     14         .or-navtree-node-control {
     15             width: 18px;
     16             min-width: 18px;
     17             height: 18px;
     18             float: left;
     19             cursor: pointer;
     20         }
     21         .or-navtree-node {
     22             margin: 0;
     23             padding: 0;
     24             line-height: 18px;
     25             font-weight: normal;
     26             white-space: nowrap;
     27 
     28             &.or-navtree-node--selected {
     29                 font-weight: bold;
     30                 & > div > a {
     31                     font-weight: bold;
     32                 }
     33             }
     34         }
     35 
     36     }
     37 
     38 }
     39