| |
| /* |
| * Copyright 2017-present Open Networking Foundation |
| |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| |
| // |
| // Pagination (multiple pages) |
| // -------------------------------------------------- |
| .pagination { |
| display: inline-block; |
| padding-left: 0; |
| margin: $line-height-computed 0; |
| border-radius: $border-radius-base; |
| |
| > li { |
| display: inline; // Remove list-style and block-level defaults |
| > a, |
| > span { |
| position: relative; |
| float: left; // Collapse white-space |
| padding: $padding-base-vertical $padding-base-horizontal; |
| line-height: $line-height-base; |
| text-decoration: none; |
| color: $pagination-color; |
| background-color: $pagination-bg; |
| border: 1px solid $pagination-border; |
| margin-left: -1px; |
| } |
| &:first-child { |
| > a, |
| > span { |
| margin-left: 0; |
| @include border-left-radius($border-radius-base); |
| } |
| } |
| &:last-child { |
| > a, |
| > span { |
| @include border-right-radius($border-radius-base); |
| } |
| } |
| } |
| |
| > li > a, |
| > li > span { |
| &:hover, |
| &:focus { |
| z-index: 2; |
| color: $pagination-hover-color; |
| background-color: $pagination-hover-bg; |
| border-color: $pagination-hover-border; |
| } |
| } |
| |
| > .active > a, |
| > .active > span { |
| &, |
| &:hover, |
| &:focus { |
| z-index: 3; |
| color: $pagination-active-color; |
| background-color: $pagination-active-bg; |
| border-color: $pagination-active-border; |
| cursor: default; |
| } |
| } |
| |
| > .disabled { |
| > span, |
| > span:hover, |
| > span:focus, |
| > a, |
| > a:hover, |
| > a:focus { |
| color: $pagination-disabled-color; |
| background-color: $pagination-disabled-bg; |
| border-color: $pagination-disabled-border; |
| cursor: $cursor-disabled; |
| } |
| } |
| } |
| |
| // Sizing |
| // -------------------------------------------------- |
| |
| // Large |
| .pagination-lg { |
| @include pagination-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $border-radius-large); |
| } |
| |
| // Small |
| .pagination-sm { |
| @include pagination-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $border-radius-small); |
| } |