123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- // Forum Map
- // -------------------------
- .forum-map-category {
- background-color: @categoryBackground;
- border: 1px solid @categoryBorder;
- border-radius: @borderRadiusSmall;
- .box-shadow(0px 0px 0px 3px @categoryShadow);
- margin-bottom: @baseLineHeight;
- table {
- margin: 0px;
- caption {
- background-color: @categoryHeader;
- border: 1px solid @categoryBorder;
- border-radius: @borderRadiusSmall @borderRadiusSmall 0px 0px;
- margin: -1px;
- padding: (@fontSizeSmall / 3) (@fontSizeSmall - 2px);
- color: @grayDark;
- font-size: @fontSizeSmall;
- font-weight: bold;
- text-align: left;
- small {
- margin-left: @baseFontSize / 2;
- color: @grayLight;
- font-size: @fontSizeSmall;
- }
- }
-
- .forum-map-forum, .forum-map-subforum {
- h3 {
- margin: 0px;
- padding: 0px;
- font-size: @baseFontSize;
- line-height: @baseLineHeight;
- a:link, a:visited {
- color: @gray;
- }
- a:active, a:hover {
- color: @textColor;
- }
- }
- .forum-details {
- float: right;
- margin-top: (@baseLineHeight * -1) + 1px;
- color: @grayLight;
- font-size: @fontSizeSmall;
- strong, a {
- color: @gray;
- font-weight: normal
- }
- a:hover, a:active {
- color: @textColor;
- }
- strong.stat-increment {
- color: @green;
- }
- }
- }
- .forum-map-subforum {
- padding-left: @baseLineHeight * 0.75;
- span {
- &.tree-t, &.tree-l, &.tree-s, &.tree-i {
- display: inline-block;
- height: @baseLineHeight;
- width: @baseLineHeight * 0.5;
- }
- &.tree-t {
- border-left: 1px solid @grayLight;
- margin-right: 2px;
- span {
- border-top: 1px solid @grayLight;
- display: inline-block;
- height: 1px;
- width: 100%;
- margin-bottom: 3px;
- }
- }
- &.tree-l {
- margin-right: 4px;
- span {
- border-left: 1px solid @grayLight;
- border-bottom: 1px solid @grayLight;
- display: inline-block;
- height: @baseLineHeight * 0.5;
- width: 100%;
- margin-bottom: 3px;
- }
- }
- &.tree-i {
- border-left: 1px solid @grayLight;
- position: relative;
- top: 5px;
- margin-top: -5px;
- margin-right: 4px;
- }
- &.tree-s {
- height: 1px;
- width: (@baseLineHeight * 0.5) + 2px;
- margin-right: 4px;
- }
- }
- }
- }
- &.forum-map-category-important {
- caption {
- background-color: @red;
- border: 1px solid darken(@red, 10%);
- color: @white;
- text-shadow: 0px 1px 0px darken(@red, 25%);
- small {
- color: darken(@red, 40%);
- text-shadow: none;
- }
- }
- }
- &.forum-map-category-inverse {
- caption {
- background-color: @grayDark;
- border: 1px solid darken(@grayDark, 10%);
- color: @grayLighter;
- text-shadow: 0px 1px 0px darken(@black, 25%);
- small {
- color: lighten(@grayLight, 10%);
- text-shadow: none;
- }
- }
- }
- &.forum-map-category-info {
- caption {
- background-color: @bluePale;
- border: 1px solid darken(@bluePale, 10%);
- color: @white;
- text-shadow: 0px 1px 0px darken(@bluePale, 25%);
- small {
- color: darken(@bluePale, 25%);
- text-shadow: none;
- }
- }
- }
- }
|