123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* For treemenu.js */
- .treemenu li {
- list-style: none;
- }
- .treemenu .toggler {
- cursor: pointer;
- }
- .treemenu .toggler:before {
- display: inline-block;
- margin-right: 2pt;
- }
- li.tree-empty > .toggler {
- color: #aaa;
- }
- li.tree-empty > .toggler:before {
- content: "";
- }
- li.tree-closed > .toggler:before {
- content: "+";
- }
- li.tree-opened > .toggler:before {
- content: "\2212";
- }
- * {
- list-style: none;
- }
- .tree {
- width: 220px;
- margin: 10px auto;
- }
- .tree li,
- .tree li > a,
- .tree li > span {
- padding: 3pt 0pt 3pt 0pt;
- border-radius: 4px;
- font-size: 13px;
- color: #555555;
- }
- .tree li a {
- text-decoration: none;
- line-height: 8pt;
- border-radius: 4px;
- }
- .tree li a:hover {
- background-color: #2fa4e7;
- color: #fff;
- text-decoration: underline;
- cursor: pointer;
- }
- .active {
- background-color: #34495E;
- color: white;
- }
- .active a {
- color: #fff;
- }
- .tree li a.active:hover {
- background-color: #34BC9D;
- }
- .span3 {
- height:620px;
- overflow-y: scroll;
- width: 20%
- }
- .span9 {
- height: 620px;
- width: 75%;
- overflow-y: scroll;
- }
- .span9 h4 {
- margin-left:10px;
- }
- .span9 h5 {
- margin-left: 15px;
- }
- .span9 p {
- margin-left: 20px;
- line-height: 25px;
- }
- .span9 img {
- margin-top:5px;
- margin-bottom:10px;
- }
- .tree li ul {
- -webkit-padding-start: 20px;
- }
|