mirror of
https://github.com/tabler/tabler.git
synced 2026-08-01 16:04:37 +04:00
eslint fixes
This commit is contained in:
+21
-21
@@ -1,7 +1,7 @@
|
||||
// FONTS
|
||||
$google-font: 'Source Sans Pro' !default;
|
||||
$google-font: "Source Sans Pro" !default;
|
||||
|
||||
$font-family-sans-serif: $google-font, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol !default;
|
||||
$font-family-sans-serif: $google-font, -apple-system, blinkmacsystemfont, segoe ui, helvetica, arial, sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol !default;
|
||||
$font-family-serif: "Georgia", "Times New Roman", times, serif !default;
|
||||
$font-icons: "tabler-webfont" !default;
|
||||
|
||||
@@ -38,8 +38,8 @@ $lime: #7bd235 !default;
|
||||
$green: #5eba00 !default;
|
||||
$teal: #2bcbba !default;
|
||||
$cyan: #17a2b8 !default;
|
||||
$black: #000000 !default;
|
||||
$white: #ffffff !default;
|
||||
$black: #000 !default;
|
||||
$white: #fff !default;
|
||||
|
||||
$light: #f5f7fb !default;
|
||||
$dark: #354052 !default;
|
||||
@@ -55,7 +55,7 @@ $social-colors: (
|
||||
"facebook": #3b5998,
|
||||
"twitter": #1da1f2,
|
||||
"google": #dc4e41,
|
||||
"youtube": #ff0000,
|
||||
"youtube": #f00,
|
||||
"vimeo": #1ab7ea,
|
||||
"dribbble": #ea4c89,
|
||||
"github": #181717,
|
||||
@@ -117,12 +117,12 @@ $headings-font-weight: 600 !default;
|
||||
|
||||
$small-font-size: 87.5% !default;
|
||||
|
||||
$h1-font-size: (26em/16) !default;
|
||||
$h2-font-size: (21em/16) !default;
|
||||
$h3-font-size: (18em/16) !default;
|
||||
$h4-font-size: (16em/16) !default;
|
||||
$h5-font-size: (14em/16) !default;
|
||||
$h6-font-size: (12em/16) !default;
|
||||
$h1-font-size: (26em / 16) !default;
|
||||
$h2-font-size: (21em / 16) !default;
|
||||
$h3-font-size: (18em / 16) !default;
|
||||
$h4-font-size: (16em / 16) !default;
|
||||
$h5-font-size: (14em / 16) !default;
|
||||
$h6-font-size: (12em / 16) !default;
|
||||
|
||||
$blockquote-font-size: $h4-font-size !default;
|
||||
|
||||
@@ -194,9 +194,9 @@ $alert-link-font-weight: 600 !default;
|
||||
|
||||
//breadcrumb
|
||||
$breadcrumb-variants: (
|
||||
dots: '·',
|
||||
arrows: '›',
|
||||
bullets: '\02022',
|
||||
dots: "·",
|
||||
arrows: "›",
|
||||
bullets: "\02022",
|
||||
) !default;
|
||||
|
||||
//badges
|
||||
@@ -231,8 +231,8 @@ $card-active-border-color: $blue !default;
|
||||
$card-status-size: 2px !default;
|
||||
$card-group-margin: 1.5rem !default;
|
||||
|
||||
$card-shadow: rgba($dark, .04) 0 2px 4px 0;
|
||||
$card-shadow-hover: rgba($dark, .08) 0 2px 12px 0;
|
||||
$card-shadow: rgba($dark, .04) 0 2px 4px 0 !default;
|
||||
$card-shadow-hover: rgba($dark, .08) 0 2px 12px 0 !default;
|
||||
|
||||
//close
|
||||
$close-font-weight: 400 !default;
|
||||
@@ -306,12 +306,12 @@ $input-border-radius: $border-radius !default;
|
||||
|
||||
|
||||
//Forms
|
||||
$form-check-input-width: 1em;
|
||||
$form-check-input-border: 1px solid $border-color;
|
||||
$form-check-input-border-radius: $border-radius;
|
||||
$form-check-input-checked-bg-size: .75rem;
|
||||
$form-check-input-width: 1em !default;
|
||||
$form-check-input-border: 1px solid $border-color !default;
|
||||
$form-check-input-border-radius: $border-radius !default;
|
||||
$form-check-input-checked-bg-size: .75rem !default;
|
||||
|
||||
$form-range-track-height: .25rem;
|
||||
$form-range-track-height: .25rem !default;
|
||||
|
||||
$form-feedback-icon-valid: str-replace(url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='" + $green + "' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'><polyline points='20 6 9 17 4 12'></polyline></svg>"), "#", "%23") !default;
|
||||
$form-feedback-icon-invalid: str-replace(url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='" + $red + "' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'><line x1='18' y1='6' x2='6' y2='18'></line><line x1='6' y1='6' x2='18' y2='18'></line></svg>"), "#", "%23") !default;
|
||||
|
||||
Reference in New Issue
Block a user