mekari-ui-toolkit
Version:
Mekari ui toolkit
1 lines • 24 kB
Source Map (JSON)
{"version":3,"sources":["../../../scss/vendors/_pagination.scss","../../../scss/vendors/mixins/_lists.scss","../../../scss/vendors/mixins/_border-radius.scss","../../../scss/vendor-extensions/_utilities.scss","mekari-ui-pagination.css","../../../scss/vendor-extensions/_spacing.scss","../../../scss/vendor-extensions/_color.scss","../../../scss/vendor-extensions/_typography.scss","../../../scss/vendors/mixins/_pagination.scss","../../../scss/vendors/_rfs.scss","../../../scss/components/config/_pagination.scss"],"names":[],"mappings":"AAAA;EACE,aAAa;ECGb,eAAe;EACf,gBAAgB;ECAd,kBCF6B;ACEjC;;AJCA;EACE,kBAAkB;EAClB,cAAc;EACd,iBKWsC;ELVtC,iBKiB2B;ELhB3B,iBKcsC;ELbtC,cMCqB;ENArB,sBMPU;ENQV,yBMVa;AFYf;;AJVA;EAWI,UAAU;EACV,cOQ0D;EPP1D,qBAAqB;EACrB,yBMhBW;ENiBX,qBMlBW;AFqBf;;AJlBA;EAmBI,UAAU;EACV,UKUwB;ELTxB,gCMZmB;AFevB;;AJCA;EAGM,cAAc;EEChB,2BChC6B;EDiC7B,8BCjC6B;ACiCjC;;AJLA;EEVI,4BClB6B;EDmB7B,+BCnB6B;ACsCjC;;AJVA;EAcI,UAAU;EACV,WMxCQ;ENyCR,yBMhCmB;ENiCnB,qBMjCmB;AFiCvB;;AJjBA;EAqBI,WMlDQ;ENmDR,oBAAoB;EAEpB,YAAY;EACZ,sBMlDQ;ENmDR,qBMrDW;AFoDf;;AIrDE;EACE,kBHoBoC;EIuGlC,kBAtCY;EDnFd,iBHyCiB;ADerB;;AInDM;ENwBF,6BC/B+B;EDgC/B,gCChC+B;AC+DnC;;AInDM;ENKF,8BCjB+B;EDkB/B,iCClB+B;ACoEnC;;AIrEE;EACE,gBHkBmC;EIyGjC,kBAtCY;EDnFd,mBDKwC;AHmE5C;;AInEM;ENwBF,6BC9B+B;ED+B/B,gCC/B+B;AC8EnC;;AInEM;ENKF,8BChB+B;EDiB/B,iCCjB+B;ACmFnC;;AMxFA;EACE,aAAa;EACb,8BAA8B;EAC9B,kBAAkB;AN2FpB;;AM9FA;EAMI,aAAa;EACb,mBAAmB;EACnB,UAAU;EACV,SAAS;AN4Fb;;AMrGA;EAYM,UAAU;EACV,SAAS;EACT,WJZM;EIaN,qBAAqB;AN6F3B;;AM5GA;EAiBQ,WAAW;EACX,YAAY;EACZ,eAAe;AN+FvB;;AM1FG;EAGK,iBAAiB;EACjB,WJ1BI;AFqHZ;;AM/FG;EAMO,eAAe;AN6FzB;;AMnGG;EASO,WAAW;EACX,gBAAgB;EAChB,iBAAiB;AN8F3B;;AMzFG;EAGK,eAAe;EACf,gBAAgB;EAChB,UAAU;EACV,eAAe;EACf,SAAS;AN0FjB;;AMjGG;EASO,qBAAqB;AN4F/B;;AMrGG;EAaK,WAAW;EACX,mBAAmB;AN4F3B;;AMvFE;EACE,aAAa;AN0FjB","file":"mekari-ui-pagination.css","sourcesContent":[".#{$prefix}pagination {\n display: flex;\n @include list-unstyled;\n @include border-radius;\n}\n\n.#{$prefix}page-link {\n position: relative;\n display: block;\n padding: $pagination-padding-y $pagination-padding-x;\n margin-left: -$pagination-border-width;\n line-height: $pagination-line-height;\n color: $pagination-color;\n background-color: $pagination-bg;\n border: $pagination-border-width solid $pagination-border-color;\n\n &:hover {\n z-index: 2;\n color: $pagination-hover-color;\n text-decoration: none;\n background-color: $pagination-hover-bg;\n border-color: $pagination-hover-border-color;\n }\n\n &:focus {\n z-index: 2;\n outline: $pagination-focus-outline;\n box-shadow: $pagination-focus-box-shadow;\n }\n}\n\n.#{$prefix}page-item {\n &:first-child {\n .#{$prefix}page-link {\n margin-left: 0;\n @include border-left-radius($border-radius);\n }\n }\n &:last-child {\n .#{$prefix}page-link {\n @include border-right-radius($border-radius);\n }\n }\n\n &.active .#{$prefix}page-link {\n z-index: 1;\n color: $pagination-active-color;\n background-color: $pagination-active-bg;\n border-color: $pagination-active-border-color;\n }\n\n &.disabled .#{$prefix}page-link {\n color: $pagination-disabled-color;\n pointer-events: none;\n // Opinionated: remove the \"hand\" cursor set previously for .#{$prefix}page-link\n cursor: auto;\n background-color: $pagination-disabled-bg;\n border-color: $pagination-disabled-border-color;\n }\n}\n\n\n//\n// Sizing\n//\n\n.#{$prefix}pagination-lg {\n @include pagination-size($pagination-padding-y-lg, $pagination-padding-x-lg, $font-size-lg, $line-height-lg, $border-radius-lg);\n}\n\n.#{$prefix}pagination-sm {\n @include pagination-size($pagination-padding-y-sm, $pagination-padding-x-sm, $font-size-sm, $line-height-sm, $border-radius-sm);\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n","// stylelint-disable property-blacklist\n// Single side border-radius\n\n@mixin border-radius($radius: $border-radius, $fallback-border-radius: false) {\n @if $enable-rounded {\n border-radius: $radius;\n }\n @else if $fallback-border-radius != false {\n border-radius: $fallback-border-radius;\n }\n}\n\n@mixin border-top-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n border-bottom-left-radius: $radius;\n }\n}\n\n@mixin border-top-left-radius($radius) {\n @if $enable-rounded {\n border-top-left-radius: $radius;\n }\n}\n\n@mixin border-top-right-radius($radius) {\n @if $enable-rounded {\n border-top-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-right-radius($radius) {\n @if $enable-rounded {\n border-bottom-right-radius: $radius;\n }\n}\n\n@mixin border-bottom-left-radius($radius) {\n @if $enable-rounded {\n border-bottom-left-radius: $radius;\n }\n}\n","$border-width: 1px;\n$border-color: $smoke;\n\n$border-radius: 4px;\n$border-radius-lg: 5.4px;\n$border-radius-sm: 3.2px;\n\n$rounded-pill: 50rem !default;\n\n$box-shadow-sm: 0 .125rem .25rem rgba($black, .075) !default;\n$box-shadow: 0 .5rem 1rem rgba($black, .15) !default;\n$box-shadow-lg: 0 1rem 3rem rgba($black, .175) !default;\n\n$displays: none, inline, inline-block, block, table, table-row, table-cell, flex, inline-flex !default;\n$overflows: auto, hidden !default;\n$positions: static, relative, absolute, fixed, sticky !default;\n\n$embed-responsive-aspect-ratios: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$embed-responsive-aspect-ratios: join(\n (\n (21 9),\n (16 9),\n (4 3),\n (1 1),\n ),\n $embed-responsive-aspect-ratios\n);\n// This variable affects the `.h-*` and `.w-*` classes.\n$sizes: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$sizes: map-merge(\n (\n 25: 25%,\n 50: 50%,\n 75: 75%,\n 100: 100%,\n auto: auto\n ),\n $sizes\n);\n\n$emphasized-link-hover-darken-percentage: 15% !default;\n",".pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 4px;\n}\n\n.page-link {\n position: relative;\n display: block;\n padding: 8px 12px;\n margin-left: -1px;\n line-height: 20px;\n color: #1357ff;\n background-color: #fff;\n border: 1px solid #e2e2e2;\n}\n\n.page-link:hover {\n z-index: 2;\n color: #0039c6;\n text-decoration: none;\n background-color: #e2e2e2;\n border-color: #b4b4b4;\n}\n\n.page-link:focus {\n z-index: 2;\n outline: 0;\n box-shadow: 0 0 0 0.2rem #005fbf;\n}\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n\n.page-item:last-child .page-link {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 4px;\n}\n\n.page-item.active .page-link {\n z-index: 1;\n color: #fff;\n background-color: #005fbf;\n border-color: #005fbf;\n}\n\n.page-item.disabled .page-link {\n color: #777;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #e2e2e2;\n}\n\n.pagination-lg .page-link {\n padding: 12px 24px;\n font-size: 1.25rem;\n line-height: 32px;\n}\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 5.4px;\n border-bottom-left-radius: 5.4px;\n}\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 5.4px;\n border-bottom-right-radius: 5.4px;\n}\n\n.pagination-sm .page-link {\n padding: 4px 8px;\n font-size: 0.75rem;\n line-height: 1.4285;\n}\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 3.2px;\n border-bottom-left-radius: 3.2px;\n}\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 3.2px;\n border-bottom-right-radius: 3.2px;\n}\n\n.pagination {\n display: flex;\n justify-content: space-between;\n margin: 8px 0 16px;\n}\n\n.pagination ul {\n display: flex;\n align-items: center;\n padding: 0;\n margin: 0;\n}\n\n.pagination ul li {\n padding: 0;\n margin: 0;\n color: #777;\n list-style-type: none;\n}\n\n.pagination ul li .ic {\n width: 20px;\n height: 20px;\n font-size: 20px;\n}\n\n.pagination_limit ul li {\n margin-right: 6px;\n color: #777;\n}\n\n.pagination_limit ul li:last-child {\n margin-right: 0;\n}\n\n.pagination_limit ul li .custom-select {\n width: 75px;\n padding: 4px 8px;\n margin: 0 4px 0 0;\n}\n\n.pagination_pages li .btn {\n max-width: 20px;\n max-height: 20px;\n padding: 0;\n font-size: 20px;\n border: 0;\n}\n\n.pagination_pages li .btn:hover {\n text-decoration: none;\n}\n\n.pagination_pages li input {\n width: 50px;\n margin: 0 8px 0 4px;\n}\n\n.pagination_total_pages {\n margin: 0 6px;\n}\n\n/*# sourceMappingURL=mekari-ui-pagination.css.map */","// Spacing for Mekari UI\n$spacer: 1rem;\n$spacers: (\n 0: 0,\n 1: ($spacer * .25), // tiny\n 2: ($spacer * .5), // xmall\n 3: $spacer, // small\n 4: ($spacer * 1.5), // normal\n 5: ($spacer * 2), // medium\n 6: ($spacer * 2.5), // large\n 7: ($spacer * 5) // xlarge\n);\n\n$headings-margin-bottom: $spacer / 2;\n$paragraph-margin-bottom: $spacer;\n$label-margin-bottom: 8px;\n\n//pagination\n\n$pagination-padding-y: 8px;\n$pagination-padding-x: 12px;\n$pagination-padding-y-sm: 4px;\n$pagination-padding-x-sm: 8px;\n$pagination-padding-y-lg: 12px;\n$pagination-padding-x-lg: 24px;\n$pagination-line-height: 20px;\n\n$pagination-border-width: 1px;\n$pagination-border-color: $smoke;\n\n$pagination-hover-color: $link-hover-color;\n$pagination-hover-bg: $smoke;\n$pagination-hover-border-color: $muted;\n\n$pagination-color: $link-color;\n$pagination-bg: $white;\n$pagination-focus-outline: 0;\n$pagination-focus-box-shadow: 0 0 0 .2rem $primary;\n\n$pagination-active-color: $white;\n$pagination-active-bg: $primary;\n$pagination-active-border-color: $pagination-active-bg;\n\n$pagination-disabled-color: $slate;\n$pagination-disabled-bg: $white;\n$pagination-disabled-border-color: $smoke;\n\n$line-height-lg: 32px;\n\n//images\n\n$thumbnail-padding: 4px;\n$thumbnail-bg: $body-bg;\n\n$thumbnail-border-width: 1px;\n$thumbnail-border-color: $smoke;\n$thumbnail-border-radius: 4px;\n$thumbnail-box-shadow: 0 1px 2px rgba($black, .075);\n$figure-caption-font-size: 90%;\n$figure-caption-color: $slate;\n","// Neutrals color variables\n$dark: #212121;\n$slate: #777;\n$muted: #b4b4b4;\n$smoke: #e2e2e2;\n$snow: #fbfbfb;\n$white: #fff;\n$cloud: #f2f4f7;\n\n// UI color variables\n$red: #d74022;\n$green: #009f61;\n$light-yellow: #ffeb99;\n$blue: #1357ff;\n$orange: #ffb700;\n$sapphire: #005fbf;\n\n// Branding color variables\n$crimson: #c02a34;\n$azure: #009bde;\n$salamander: #f96d01;\n$purple: #6d48e5;\n\n// Bootstrap dependencies color\n$black: #000 !default;\n$gray-100: #f8f9fa !default;\n$gray-200: #e9ecef !default;\n$gray-300: #dee2e6 !default;\n$gray-400: #ced4da !default;\n$gray-500: #adb5bd !default;\n$gray-600: #6c757d !default;\n$gray-700: #495057 !default;\n$gray-800: #343a40 !default;\n$gray-900: #212529 !default;\n\n// The yiq lightness value that determines when the lightness of color changes from \"dark\" to \"light\". Acceptable values are between 0 and 255.\n$yiq-contrasted-threshold: 150 !default;\n\n// Customize the light and dark text colors for use in our YIQ color contrast function.\n$yiq-text-dark: $gray-900 !default;\n$yiq-text-light: $white !default;\n\n\n$grays: () !default;\n// stylelint-disable-next-line scss/dollar-variable-default\n$grays: map-merge(\n (\n \"100\": $gray-100,\n \"200\": $gray-200,\n \"300\": $gray-300,\n \"400\": $gray-400,\n \"500\": $gray-500,\n \"600\": $gray-600,\n \"700\": $gray-700,\n \"800\": $gray-800,\n \"900\": $gray-900\n ),\n $grays\n);\n\n// register mekari color variables too bootstrap\n$colors: ();\n$colors: map-merge(\n (\n \"noir\" : $dark, // going to deprecated\n \"dark\" : $dark,\n \"slate\" : $slate,\n \"muted\" : $muted,\n \"smoke\" : $smoke,\n \"snow\" : $snow,\n \"cloud\" : $cloud,\n \"crimson\" : $crimson,\n \"azure\" : $azure,\n \"salamander\" : $salamander,\n \"purple\" : $purple,\n \"sapphire\" : $sapphire,\n \"white\" : $white,\n \"red\" : $red,\n \"orange\" : $orange,\n \"green\" : $green,\n \"blue\" : $blue,\n \"light-yellow\" : $light-yellow\n ),\n $colors\n);\n\n//extend bootstrap class\n$danger: $red;\n$success: $green;\n$info: $light-yellow;\n$warning: $orange;\n$primary: $sapphire;\n$jurnal: $azure;\n$talenta: $crimson;\n$klikpajak: $salamander;\n$mekari: $purple;\n\n$link: $blue;\n\n$text-muted: $muted;\n$body-color: $dark;\n$dark: $dark;\n$secondary: $slate;\n$light: $snow;\n\n// Add more theme color variables\n$theme-colors: ();\n$theme-colors: map-merge(\n (\n \"danger\" : $danger,\n \"success\" : $success,\n \"info\" : $info,\n \"warning\" : $warning,\n \"primary\" : $primary,\n \"jurnal\" : $jurnal,\n \"talenta\" : $talenta,\n \"klikpajak\" : $klikpajak,\n \"mekari\" : $mekari,\n \"dark\" : $dark,\n \"slate\" : $slate,\n \"muted\" : $muted,\n \"smoke\" : $smoke,\n \"light\" : $light,\n \"cloud\" : $cloud,\n \"link\" : $blue,\n \"white\" : $white\n ),\n $theme-colors\n);\n\n$card-border-color: $smoke;\n$body-bg: $white;\n","$font-family-roboto: \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n$font-family-base: $font-family-roboto;\n$font-family-monospace: monospace;\n\n// 1 rem = 16px\n$font-size-base: .875rem; // 14px\n$font-size-lg: 1.25rem; // 20px\n$font-size-sm: .75rem; // 12px\n\n$line-height-base: 1.4285; // The closest value to Mekari design\n$line-height-lg: 1.4285;\n$line-height-sm: 1.4285;\n$letter-spacing: .2px;\n\n$font-weight-lighter: 400;\n$font-weight-light: 400;\n$font-weight-normal: 400;\n$font-weight-base: 400;\n$font-weight-bold: 500;\n$font-weight-bolder: 500;\n\n$dt-font-weight: $font-weight-bold;\n\n// Text color\n$body-color: $dark;\n$link-color: $blue;\n$link-hover-color: darken($link-color, 15%);\n$link-decoration: none;\n$link-hover-decoration: underline;\n$h5-font-size: 16px;\n\n$input-placeholder-color: $text-muted;\n$custom-select-disabled-color: $text-muted;\n$custom-control-label-disabled-color: $text-muted;\n","// Pagination\n\n@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {\n .#{$prefix}page-link {\n padding: $padding-y $padding-x;\n @include font-size($font-size);\n line-height: $line-height;\n }\n\n .#{$prefix}page-item {\n &:first-child {\n .#{$prefix}page-link {\n @include border-left-radius($border-radius);\n }\n }\n &:last-child {\n .#{$prefix}page-link {\n @include border-right-radius($border-radius);\n }\n }\n }\n}\n","// stylelint-disable property-blacklist, scss/dollar-variable-default\n\n// SCSS RFS mixin\n//\n// Automated font-resizing\n//\n// See https://github.com/twbs/rfs\n\n// Configuration\n\n// Base font size\n$rfs-base-font-size: 1.25rem !default;\n$rfs-font-size-unit: rem !default;\n\n// Breakpoint at where font-size starts decreasing if screen width is smaller\n$rfs-breakpoint: 1200px !default;\n$rfs-breakpoint-unit: px !default;\n\n// Resize font-size based on screen height and width\n$rfs-two-dimensional: false !default;\n\n// Factor of decrease\n$rfs-factor: 10 !default;\n\n@if type-of($rfs-factor) != \"number\" or $rfs-factor <= 1 {\n @error \"`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.\";\n}\n\n// Generate enable or disable classes. Possibilities: false, \"enable\" or \"disable\"\n$rfs-class: false !default;\n\n// 1 rem = $rfs-rem-value px\n$rfs-rem-value: 16 !default;\n\n// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14\n$rfs-safari-iframe-resize-bug-fix: false !default;\n\n// Disable RFS by setting $enable-responsive-font-sizes to false\n$enable-responsive-font-sizes: true !default;\n\n// Cache $rfs-base-font-size unit\n$rfs-base-font-size-unit: unit($rfs-base-font-size);\n\n// Remove px-unit from $rfs-base-font-size for calculations\n@if $rfs-base-font-size-unit == \"px\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1);\n}\n@else if $rfs-base-font-size-unit == \"rem\" {\n $rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1 / $rfs-rem-value);\n}\n\n// Cache $rfs-breakpoint unit to prevent multiple calls\n$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);\n\n// Remove unit from $rfs-breakpoint for calculations\n@if $rfs-breakpoint-unit-cache == \"px\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1);\n}\n@else if $rfs-breakpoint-unit-cache == \"rem\" or $rfs-breakpoint-unit-cache == \"em\" {\n $rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1 / $rfs-rem-value);\n}\n\n// Responsive font-size mixin\n@mixin rfs($fs, $important: false) {\n // Cache $fs unit\n $fs-unit: if(type-of($fs) == \"number\", unit($fs), false);\n\n // Add !important suffix if needed\n $rfs-suffix: if($important, \" !important\", \"\");\n\n // If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the value\n @if not $fs-unit or $fs-unit != \"\" and $fs-unit != \"px\" and $fs-unit != \"rem\" or $fs == 0 {\n font-size: #{$fs}#{$rfs-suffix};\n }\n @else {\n // Variables for storing static and fluid rescaling\n $rfs-static: null;\n $rfs-fluid: null;\n\n // Remove px-unit from $fs for calculations\n @if $fs-unit == \"px\" {\n $fs: $fs / ($fs * 0 + 1);\n }\n @else if $fs-unit == \"rem\" {\n $fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);\n }\n\n // Set default font-size\n @if $rfs-font-size-unit == rem {\n $rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};\n }\n @else if $rfs-font-size-unit == px {\n $rfs-static: #{$fs}px#{$rfs-suffix};\n }\n @else {\n @error \"`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.\";\n }\n\n // Only add media query if font-size is bigger as the minimum font-size\n // If $rfs-factor == 1, no rescaling will take place\n @if $fs > $rfs-base-font-size and $enable-responsive-font-sizes {\n $min-width: null;\n $variable-unit: null;\n\n // Calculate minimum font-size for given font-size\n $fs-min: $rfs-base-font-size + ($fs - $rfs-base-font-size) / $rfs-factor;\n\n // Calculate difference between given font-size and minimum font-size for given font-size\n $fs-diff: $fs - $fs-min;\n\n // Base font-size formatting\n // No need to check if the unit is valid, because we did that before\n $min-width: if($rfs-font-size-unit == rem, #{$fs-min / $rfs-rem-value}rem, #{$fs-min}px);\n\n // If two-dimensional, use smallest of screen width and height\n $variable-unit: if($rfs-two-dimensional, vmin, vw);\n\n // Calculate the variable width between 0 and $rfs-breakpoint\n $variable-width: #{$fs-diff * 100 / $rfs-breakpoint}#{$variable-unit};\n\n // Set the calculated font-size.\n $rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};\n }\n\n // Rendering\n @if $rfs-fluid == null {\n // Only render static font-size if no fluid font-size is available\n font-size: $rfs-static;\n }\n @else {\n $mq-value: null;\n\n // RFS breakpoint formatting\n @if $rfs-breakpoint-unit == em or $rfs-breakpoint-unit == rem {\n $mq-value: #{$rfs-breakpoint / $rfs-rem-value}#{$rfs-breakpoint-unit};\n }\n @else if $rfs-breakpoint-unit == px {\n $mq-value: #{$rfs-breakpoint}px;\n }\n @else {\n @error \"`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.\";\n }\n\n @if $rfs-class == \"disable\" {\n // Adding an extra class increases specificity,\n // which prevents the media query to override the font size\n &,\n .disable-responsive-font-size &,\n &.disable-responsive-font-size {\n font-size: $rfs-static;\n }\n }\n @else {\n font-size: $rfs-static;\n }\n\n @if $rfs-two-dimensional {\n @media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n @else {\n @media (max-width: #{$mq-value}) {\n @if $rfs-class == \"enable\" {\n .enable-responsive-font-size &,\n &.enable-responsive-font-size {\n font-size: $rfs-fluid;\n }\n }\n @else {\n font-size: $rfs-fluid;\n }\n\n @if $rfs-safari-iframe-resize-bug-fix {\n // stylelint-disable-next-line length-zero-no-unit\n min-width: 0vw;\n }\n }\n }\n }\n }\n}\n\n// The font-size & responsive-font-size mixin uses RFS to rescale font sizes\n@mixin font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n\n@mixin responsive-font-size($fs, $important: false) {\n @include rfs($fs, $important);\n}\n",".#{$prefix}pagination {\n display: flex;\n justify-content: space-between;\n margin: 8px 0 16px;\n\n ul {\n display: flex;\n align-items: center;\n padding: 0;\n margin: 0;\n\n li {\n padding: 0;\n margin: 0;\n color: $slate;\n list-style-type: none;\n .ic {\n width: 20px;\n height: 20px;\n font-size: 20px;\n }\n }\n }\n\n &_limit {\n ul {\n li {\n margin-right: 6px;\n color: $slate;\n &:last-child {\n margin-right: 0;\n }\n .custom-select {\n width: 75px;\n padding: 4px 8px;\n margin: 0 4px 0 0;\n }\n }\n }\n }\n &_pages {\n li {\n .#{$prefix}btn {\n max-width: 20px;\n max-height: 20px;\n padding: 0;\n font-size: 20px;\n border: 0;\n &:hover {\n text-decoration: none;\n }\n }\n input {\n width: 50px;\n margin: 0 8px 0 4px;\n }\n }\n }\n\n &_total_pages {\n margin: 0 6px;\n }\n}\n"]}