navs.less 3.41 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
/*
    Component: Navs
*/

/* NAV PILLS */
.nav.nav-pills {
    > li > a {
        border-top: 3px solid transparent;
        .border-radius(0);
        color: #444;
        > .fa, > .glyphicon, > .ion {
            margin-right: 5px;
        }
    }
    > li.active > a, > li.active > a:hover {
        background-color: #f6f6f6;
        border-top-color: @light-blue;
        color: #444;
    }
    > li.active > a {
        font-weight: 600;
    }
    > li > a:hover {
        background-color: #f6f6f6;
    }

    &.nav-stacked {
        > li > a {
            border-top: 0;
            border-left: 3px solid transparent;
            .border-radius(0);
            color: #444;
        }
        > li.active > a, > li.active > a:hover {
            background-color: #f6f6f6;
            border-left-color: @light-blue;
            color: #444;
        }

        > li.header {
            border-bottom: 1px solid #ddd;
            color: #777;
            margin-bottom: 10px;
            padding: 5px 10px;
            text-transform: uppercase;
        }
    }
}

/* NAV TABS */
.nav-tabs-custom {
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    > .nav-tabs {
        margin: 0;
        border-bottom-color: #f4f4f4;
        > li {
            border-top: 3px solid transparent;
            margin-bottom: -2px;
            > a {
                .border-radius(0)!important;
                &, &:hover {
                    background: transparent;
                    margin: 0;
                }
            }
            &:not(.active) {
                > a:hover, > a:focus, > a:active {
                    border-color: transparent;
                }
            }
            margin-right: 5px;
        }

        > li.active {
            border-top-color: @light-blue;
            & > a, &:hover > a{
                background-color: #fff;

            }
            > a {
                border-top: 0;
                border-left-color: #f4f4f4;
                border-right-color: #f4f4f4;
            }

        }

        > li:first-of-type {
            margin-left: 0px;
            &.active {
                > a {
                    border-left-width: 0;
                }
            }
        }

        //Pulled to the right
        &.pull-right {
            float: none!important;
            > li {
                float: right;
            }
            > li:first-of-type {
                margin-right: 0px;
                &.active {
                    > a {
                        border-left-width: 1px;
                        border-right-width: 0px;
                    }
                }
            }
        }

        > li.header {
            font-weight: 400;
            line-height: 35px;            
            padding: 0 10px;
            font-size: 20px;
            color: #444;
            cursor: default;
            > .fa, > .glyphicon, > .ion {
                margin-right: 10px;
            }
        }
    }

    > .tab-content {
        background: #fff;
        padding: 10px;
    }
}

/* PAGINATION */
.pagination {
    > li > a {
        background: #fafafa;
        color: #666;
        -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,0.09);
        -moz-box-shadow: inset 0px -2px 0px 0px rgba(0,0,0,0.09);
        box-shadow: inset 0px -1px 0px 0px rgba(0,0,0,0.09);
    }
    > li:first-of-type a, > li:last-of-type a {
        .border-radius(0);
    }
}