123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*
- * Component: Nav
- * --------------
- */
- /* NAV PILLS */
- .nav-pills {
- > li > a {
- .border-radius(0);
- border-top: 3px solid transparent;
- color: #444;
- > .fa,
- > .glyphicon,
- > .ion {
- margin-right: 5px;
- }
- }
- > li.active > a,
- > li.active > a:hover {
- background-color: #f4f4f4;
- border-top-color: @light-blue;
- color: #444;
- }
- > li.active > a {
- font-weight: 600;
- }
- > li > a:hover {
- background-color: #f6f6f6;
- }
- }
- /* NAV STACKED */
- .nav-stacked {
- > li > a {
- .border-radius(0);
- border-top: 0;
- border-left: 3px solid transparent;
- color: #444;
- }
- > li.active > a,
- > li.active > a:hover {
- background-color: #f4f4f4;
- border-top: 0;
- 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: @box-boxshadow;
- border-radius: @box-border-radius;
- > .nav-tabs {
- margin: 0;
- border-bottom-color: #f4f4f4;
- .border-top-radius(@box-border-radius);
- > 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: 0;
- &.active {
- > a {
- border-left-width: 0;
- }
- }
- }
- //Pulled to the right
- &.pull-right {
- float: none!important;
- > li {
- float: right;
- }
- > li:first-of-type {
- margin-right: 0;
- &.active {
- > a {
- border-left-width: 1px;
- border-right-width: 0;
- }
- }
- }
- }
- > li.header {
- line-height: 35px;
- padding: 0 10px;
- font-size: 20px;
- color: #444;
- > .fa,
- > .glyphicon,
- > .ion {
- margin-right: 5px;
- }
- }
- }
- > .tab-content {
- background: #fff;
- padding: 10px;
- .border-bottom-radius(@box-border-radius);
- }
- }
- /* Nav tabs bottom */
- .tabs-bottom {
- &.nav-3 {
- li a {
- width: percentage(100/3)!important;
- }
- }
- li a {
- border: 0;
- }
- }
- /* PAGINATION */
- .pagination {
- > li > a {
- background: #fafafa;
- color: #666;
- }
- > li:first-of-type a,
- > li:last-of-type a {
- .border-radius(0);
- }
- }
|