From b9c709823e26f5b20d3732e1788b871cdd961a03 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 27 Aug 2019 12:29:12 +0530 Subject: added intial code for project --- .../bootstrap/less/mixins/pagination.less | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 static/website/bootstrap-css/bower_components/bootstrap/less/mixins/pagination.less (limited to 'static/website/bootstrap-css/bower_components/bootstrap/less/mixins/pagination.less') diff --git a/static/website/bootstrap-css/bower_components/bootstrap/less/mixins/pagination.less b/static/website/bootstrap-css/bower_components/bootstrap/less/mixins/pagination.less new file mode 100644 index 0000000..618804f --- /dev/null +++ b/static/website/bootstrap-css/bower_components/bootstrap/less/mixins/pagination.less @@ -0,0 +1,24 @@ +// Pagination + +.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { + > li { + > a, + > span { + padding: @padding-vertical @padding-horizontal; + font-size: @font-size; + line-height: @line-height; + } + &:first-child { + > a, + > span { + .border-left-radius(@border-radius); + } + } + &:last-child { + > a, + > span { + .border-right-radius(@border-radius); + } + } + } +} -- cgit