AdminLTE/dist/css/alt/adminlte.extra-components.css.map

120 lines
140 KiB
Text
Raw Normal View History

{
"version": 3,
"file": "adminlte.extra-components.css",
"sources": [
"../../../build/scss/AdminLTE-extra-components.scss",
"../../../node_modules/bootstrap/scss/_functions.scss",
"../../../build/scss/_bootstrap-variables.scss",
"../../../node_modules/bootstrap/scss/_mixins.scss",
"../../../node_modules/bootstrap/scss/vendor/_rfs.scss",
"../../../node_modules/bootstrap/scss/mixins/_deprecate.scss",
"../../../node_modules/bootstrap/scss/mixins/_breakpoints.scss",
"../../../node_modules/bootstrap/scss/mixins/_hover.scss",
"../../../node_modules/bootstrap/scss/mixins/_image.scss",
"../../../node_modules/bootstrap/scss/mixins/_badge.scss",
"../../../node_modules/bootstrap/scss/mixins/_resize.scss",
"../../../node_modules/bootstrap/scss/mixins/_screen-reader.scss",
"../../../node_modules/bootstrap/scss/mixins/_size.scss",
"../../../node_modules/bootstrap/scss/mixins/_reset-text.scss",
"../../../node_modules/bootstrap/scss/mixins/_text-emphasis.scss",
"../../../node_modules/bootstrap/scss/mixins/_text-hide.scss",
"../../../node_modules/bootstrap/scss/mixins/_text-truncate.scss",
"../../../node_modules/bootstrap/scss/mixins/_visibility.scss",
"../../../node_modules/bootstrap/scss/mixins/_alert.scss",
"../../../node_modules/bootstrap/scss/mixins/_buttons.scss",
"../../../node_modules/bootstrap/scss/mixins/_caret.scss",
"../../../node_modules/bootstrap/scss/mixins/_pagination.scss",
"../../../node_modules/bootstrap/scss/mixins/_lists.scss",
"../../../node_modules/bootstrap/scss/mixins/_list-group.scss",
"../../../node_modules/bootstrap/scss/mixins/_nav-divider.scss",
"../../../node_modules/bootstrap/scss/mixins/_forms.scss",
"../../../node_modules/bootstrap/scss/mixins/_table-row.scss",
"../../../node_modules/bootstrap/scss/mixins/_background-variant.scss",
"../../../node_modules/bootstrap/scss/mixins/_border-radius.scss",
"../../../node_modules/bootstrap/scss/mixins/_box-shadow.scss",
"../../../node_modules/bootstrap/scss/mixins/_gradients.scss",
"../../../node_modules/bootstrap/scss/mixins/_transition.scss",
"../../../node_modules/bootstrap/scss/mixins/_clearfix.scss",
"../../../node_modules/bootstrap/scss/mixins/_grid-framework.scss",
"../../../node_modules/bootstrap/scss/mixins/_grid.scss",
"../../../node_modules/bootstrap/scss/mixins/_float.scss",
"../../../build/scss/_variables.scss",
"../../../build/scss/_mixins.scss",
"../../../build/scss/mixins/_cards.scss",
"../../../build/scss/mixins/_sidebar.scss",
"../../../build/scss/mixins/_navbar.scss",
"../../../build/scss/mixins/_accent.scss",
"../../../build/scss/mixins/_custom-forms.scss",
"../../../build/scss/mixins/_backgrounds.scss",
"../../../build/scss/mixins/_direct-chat.scss",
"../../../build/scss/mixins/_toasts.scss",
"../../../build/scss/mixins/_miscellaneous.scss",
"../../../build/scss/parts/_extra-components.scss",
"../../../build/scss/_small-box.scss",
"../../../build/scss/_info-box.scss",
"../../../build/scss/_timeline.scss",
"../../../build/scss/_products.scss",
"../../../build/scss/_direct-chat.scss",
"../../../build/scss/_users-list.scss",
"../../../build/scss/_social-widgets.scss"
],
"sourcesContent": [
2019-11-02 13:54:26 +01:00
"/*!\n * AdminLTE v3.0.0\n * Only Extra Components\n * Author: Colorlib\n *\t Website: AdminLTE.io <http://adminlte.io>\n * License: Open source - MIT <http://opensource.org/licenses/MIT>\n */\n// Bootstrap\n// ---------------------------------------------------\n@import '~bootstrap/scss/functions';\n@import 'bootstrap-variables';\n@import '~bootstrap/scss/mixins';\n// @import '~bootstrap/scss/bootstrap';\n\n// Variables and Mixins\n// ---------------------------------------------------\n@import 'variables';\n@import 'mixins';\n\n@import 'parts/extra-components';\n",
"// Bootstrap functions\n//\n// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.\n\n// Ascending\n// Used to evaluate Sass maps like our grid breakpoints.\n@mixin _assert-ascending($map, $map-name) {\n $prev-key: null;\n $prev-num: null;\n @each $key, $num in $map {\n @if $prev-num == null or unit($num) == \"%\" {\n // Do nothing\n } @else if not comparable($prev-num, $num) {\n @warn \"Potentially invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} whose unit makes it incomparable to #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n } @else if $prev-num >= $num {\n @warn \"Invalid value for #{$map-name}: This map must be in ascending order, but key '#{$key}' has value #{$num} which isn't greater than #{$prev-num}, the value of the previous key '#{$prev-key}' !\";\n }\n $prev-key: $key;\n $prev-num: $num;\n }\n}\n\n// Starts at zero\n// Used to ensure the min-width of the lowest breakpoint starts at 0.\n@mixin _assert-starts-at-zero($map, $map-name: \"$grid-breakpoints\") {\n $values: map-values($map);\n $first-value: nth($values, 1);\n @if $first-value != 0 {\n @warn \"First breakpoint in #{$map-name} must start at 0, but starts at #{$first-value}.\";\n }\n}\n\n// Replace `$search` with `$replace` in `$string`\n// Used on our SVG icon backgrounds for custom forms.\n//\n// @author Hugo Giraudel\n// @param {String} $string - Initial string\n// @param {String} $search - Substring to replace\n// @param {String} $replace ('') - New value\n// @return {String} - Updated string\n@function str-replace($string, $search, $replace: \"\") {\n $index: str-index($string, $search);\n\n @if $index {\n @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n }\n\n @return $string;\n}\n\n// Color contrast\n@function color-yiq($color, $dark: $yiq-text-dark, $light: $yiq-text-light) {\n $r: red($color);\n $g: green($color);\n $b: blue($color);\n\n $yiq: (($r * 299) + ($g * 587) + ($b * 114)) / 1000;\n\n @if ($yiq >= $yiq-contrasted-threshold) {\n @return $dark;\n } @else {\n @return $light;\n }\n}\n\n// Retrieve color Sass maps\n@function color($key: \"blue\") {\n @return map-get($colors, $key);\n}\n\n@function theme-color($key: \"primary\") {\n @return map-get($theme-colors, $key);\n}\n\n@function gray($key: \"100\") {\n @return map-get($grays, $key);\n}\n\n// Request a theme color level\n@function theme-color-level($color-name: \"primary\", $level: 0) {\n $color: theme-color($color-name);\n $color-base: if($level > 0, $black, $white);\n $level: abs($level);\n\n @return mix($color-base, $color, $level * $theme-color-interval);\n}\n",
2019-10-29 09:39:22 +01:00
"// Variables\n//\n// Variables should follow the `$component-state-property-size` formula for\n// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.\n\n\n//\n// Color system\n//\n\n// stylelint-disable\n$white: #ffffff !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$black: #000 !default;\n\n$grays: () !default;\n$grays: map-merge((\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), $grays);\n\n$blue: #007bff !default;\n$indigo: #6610f2 !default;\n$purple: #6f42c1 !default;\n$pink: #e83e8c !default;\n$red: #dc3545 !default;\n$orange: #fd7e14 !default;\n$yellow: #ffc107 !default;\n$green: #28a745 !default;\n$teal: #20c997 !default;\n$cyan: #17a2b8 !default;\n\n$colors: () !default;\n$colors: map-merge((\n \"blue\": $blue,\n \"indigo\": $indigo,\n \"purple\": $purple,\n \"pink\": $pink,\n \"red\": $red,\n \"orange\": $orange,\n \"yellow\": $yellow,\n \"green\": $green,\n \"teal\": $teal,\n \"cyan\": $cyan,\n \"white\": $white,\n \"gray\": $gray-600,\n \"gray-dark\": $gray-800\n), $colors);\n\n$primary: $blue !default;\n$secondary: $gray-600 !default;\n$success: $green !default;\n$info: $cyan !default;\n$warning: $yellow !default;\n$danger: $red !default;\n$light: $gray-100 !default;\n$dark: $gray-800 !default;\n\n$theme-colors: () !default;\n$theme-colors: map-merge((\n \"primary\": $primary,\n \"secondary\": $secondary,\n \"success\": $success,\n \"info\": $info,\n \"warning\": $warning,\n \"danger\": $danger,\n \"light\": $light,\n \"dark\": $dark\n), $theme-colors);\n// stylelint-enable\n\n// Set a specific jump point for requesting color jumps\n$theme-color-interval: 8% !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: #1F2D3D !default;\n$yiq-text-light: $white !default;\n\n// Options\n//\n// Quickly modify global styling by enabling or disabling optional features.\n\n$enable-caret: true !default;\n$enable-rounded: true !default;\n$enable-shadows: true !default;\n$enable-gradients: false !default;\n$enable-transitions: true !default;\n$enable-prefers-reduced-motion-media-query: true !default;\n$enable-hover-media-query: false !default; // Deprecated, no longer affects any compiled CSS\n$enable-grid-classes: true !default;\n$enable-pointer-cursor-for-buttons: true !default;\n$enable-print-styles: true !default;\n$enable-responsive-font-sizes: false !default;\n$enable-validation-icons: true !default;\n$enable-deprecation-messages: true !default;\n\n// Spacing\n//\n// Control the default styling of most Bootstrap elements by modifying these\n// variables. Mostly focused on spacing.\n// You can add more entries to the $spacers map, should you need more variation.\n\n// stylelint-disable\n$spacer: 1rem !default;\n$spacers: () !default;\n$spacers: map-merge((\n 0: 0,\n 1: ($spacer * .25),\n
"// Toggles\n//\n// Used in conjunction with global variables to enable certain theme features.\n\n// Vendor\n@import \"vendor/rfs\";\n\n// Deprecate\n@import \"mixins/deprecate\";\n\n// Utilities\n@import \"mixins/breakpoints\";\n@import \"mixins/hover\";\n@import \"mixins/image\";\n@import \"mixins/badge\";\n@import \"mixins/resize\";\n@import \"mixins/screen-reader\";\n@import \"mixins/size\";\n@import \"mixins/reset-text\";\n@import \"mixins/text-emphasis\";\n@import \"mixins/text-hide\";\n@import \"mixins/text-truncate\";\n@import \"mixins/visibility\";\n\n// // Components\n@import \"mixins/alert\";\n@import \"mixins/buttons\";\n@import \"mixins/caret\";\n@import \"mixins/pagination\";\n@import \"mixins/lists\";\n@import \"mixins/list-group\";\n@import \"mixins/nav-divider\";\n@import \"mixins/forms\";\n@import \"mixins/table-row\";\n\n// // Skins\n@import \"mixins/background-variant\";\n@import \"mixins/border-radius\";\n@import \"mixins/box-shadow\";\n@import \"mixins/gradients\";\n@import \"mixins/transition\";\n\n// // Layout\n@import \"mixins/clearfix\";\n@import \"mixins/grid-framework\";\n@import \"mixins/grid\";\n@import \"mixins/float\";\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-dimensi
"// Deprecate mixin\n//\n// This mixin can be used to deprecate mixins or functions.\n// `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to\n// some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap)\n@mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) {\n @if ($enable-deprecation-messages != false and $ignore-warning != true) {\n @warn \"#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}.\";\n }\n}\n",
"// Breakpoint viewport sizes and media queries.\n//\n// Breakpoints are defined as a map of (name: minimum width), order from small to large:\n//\n// (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px)\n//\n// The map defined in the `$grid-breakpoints` global variable is used as the `$breakpoints` argument by default.\n\n// Name of the next breakpoint, or null for the last breakpoint.\n//\n// >> breakpoint-next(sm)\n// md\n// >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// md\n// >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))\n// md\n@function breakpoint-next($name, $breakpoints: $grid-breakpoints, $breakpoint-names: map-keys($breakpoints)) {\n $n: index($breakpoint-names, $name);\n @return if($n != null and $n < length($breakpoint-names), nth($breakpoint-names, $n + 1), null);\n}\n\n// Minimum breakpoint width. Null for the smallest (first) breakpoint.\n//\n// >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 576px\n@function breakpoint-min($name, $breakpoints: $grid-breakpoints) {\n $min: map-get($breakpoints, $name);\n @return if($min != 0, $min, null);\n}\n\n// Maximum breakpoint width. Null for the largest (last) breakpoint.\n// The maximum value is calculated as the minimum of the next one less 0.02px\n// to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.\n// See https://www.w3.org/TR/mediaqueries-4/#mq-min-max\n// Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.\n// See https://bugs.webkit.org/show_bug.cgi?id=178261\n//\n// >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// 767.98px\n@function breakpoint-max($name, $breakpoints: $grid-breakpoints) {\n $next: breakpoint-next($name, $breakpoints);\n @return if($next, breakpoint-min($next, $breakpoints) - .02, null);\n}\n\n// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.\n// Useful for making responsive utilities.\n//\n// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"\" (Returns a blank string)\n// >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))\n// \"-sm\"\n@function breakpoint-infix($name, $breakpoints: $grid-breakpoints) {\n @return if(breakpoint-min($name, $breakpoints) == null, \"\", \"-#{$name}\");\n}\n\n// Media of at least the minimum breakpoint width. No query for the smallest breakpoint.\n// Makes the @content apply to the given breakpoint and wider.\n@mixin media-breakpoint-up($name, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($name, $breakpoints);\n @if $min {\n @media (min-width: $min) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media of at most the maximum breakpoint width. No query for the largest breakpoint.\n// Makes the @content apply to the given breakpoint and narrower.\n@mixin media-breakpoint-down($name, $breakpoints: $grid-breakpoints) {\n $max: breakpoint-max($name, $breakpoints);\n @if $max {\n @media (max-width: $max) {\n @content;\n }\n } @else {\n @content;\n }\n}\n\n// Media that spans multiple breakpoint widths.\n// Makes the @content apply between the min and max breakpoints\n@mixin media-breakpoint-between($lower, $upper, $breakpoints: $grid-breakpoints) {\n $min: breakpoint-min($lower, $breakpoints);\n $max: breakpoint-max($upper, $breakpoints);\n\n @if $min != null and $max != null {\n @media (min-width: $min) and (max-width: $max) {\n @content;\n }\n } @else if $max == null {\n @include media-breakpoint-up($lower, $breakpoints) {\n @content;\n }\n } @else if $min == null {\n @include media-breakpoint-down($upper, $breakpoints) {\n @content;\n }\n }\n}\n\n// Media between the breakpoint's minimum and maximum widths.\n// No minimum for the smallest breakpoint, and no maximum for the largest one.\n// Makes the @content apply only to the given breakpoint, not viewports any wider or nar
"// Hover mixin and `$enable-hover-media-query` are deprecated.\n//\n// Originally added during our alphas and maintained during betas, this mixin was\n// designed to prevent `:hover` stickiness on iOS-an issue where hover styles\n// would persist after initial touch.\n//\n// For backward compatibility, we've kept these mixins and updated them to\n// always return their regular pseudo-classes instead of a shimmed media query.\n//\n// Issue: https://github.com/twbs/bootstrap/issues/25195\n\n@mixin hover {\n &:hover { @content; }\n}\n\n@mixin hover-focus {\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin plain-hover-focus {\n &,\n &:hover,\n &:focus {\n @content;\n }\n}\n\n@mixin hover-focus-active {\n &:hover,\n &:focus,\n &:active {\n @content;\n }\n}\n",
"// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2: Override the height to auto, otherwise images will be stretched\n // when setting a width and height attribute on the img element.\n height: auto;\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size.\n\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n background-image: url($file-1x);\n\n // Autoprefixer takes care of adding -webkit-min-device-pixel-ratio and -o-min-device-pixel-ratio,\n // but doesn't convert dppx=>dpi.\n // There's no such thing as unprefixed min-device-pixel-ratio since it's nonstandard.\n // Compatibility info: https://caniuse.com/#feat=css-media-resolution\n @media only screen and (min-resolution: 192dpi), // IE9-11 don't support dppx\n only screen and (min-resolution: 2dppx) { // Standardized\n background-image: url($file-2x);\n background-size: $width-1x $height-1x;\n }\n @include deprecate(\"`img-retina()`\", \"v4.3.0\", \"v5\");\n}\n",
"@mixin badge-variant($bg) {\n color: color-yiq($bg);\n background-color: $bg;\n\n @at-root a#{&} {\n @include hover-focus {\n color: color-yiq($bg);\n background-color: darken($bg, 10%);\n }\n\n &:focus,\n &.focus {\n outline: 0;\n box-shadow: 0 0 0 $badge-focus-width rgba($bg, .5);\n }\n }\n}\n",
"// Resize anything\n\n@mixin resizable($direction) {\n overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`\n resize: $direction; // Options: horizontal, vertical, both\n}\n",
"// Only display content to screen readers\n//\n// See: https://a11yproject.com/posts/how-to-hide-content/\n// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/\n\n@mixin sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n@mixin sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal;\n }\n}\n",
"// Sizing shortcuts\n\n@mixin size($width, $height: $width) {\n width: $width;\n height: $height;\n @include deprecate(\"`size()`\", \"v4.3.0\", \"v5\");\n}\n",
"@mixin reset-text {\n font-family: $font-family-base;\n // We deliberately do NOT reset font-size or word-wrap.\n font-style: normal;\n font-weight: $font-weight-normal;\n line-height: $line-height-base;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n}\n",
"// stylelint-disable declaration-no-important\n\n// Typography\n\n@mixin text-emphasis-variant($parent, $color) {\n #{$parent} {\n color: $color !important;\n }\n @if $emphasized-link-hover-darken-percentage != 0 {\n a#{$parent} {\n @include hover-focus {\n color: darken($color, $emphasized-link-hover-darken-percentage) !important;\n }\n }\n }\n}\n",
"// CSS image replacement\n@mixin text-hide($ignore-warning: false) {\n // stylelint-disable-next-line font-family-no-missing-generic-family-keyword\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n\n @include deprecate(\"`text-hide()`\", \"v4.1.0\", \"v5\", $ignore-warning);\n}\n",
"// Text truncate\n// Requires inline-block or block for proper styling\n\n@mixin text-truncate() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n",
"// stylelint-disable declaration-no-important\n\n// Visibility\n\n@mixin invisible($visibility) {\n visibility: $visibility !important;\n @include deprecate(\"`invisible()`\", \"v4.3.0\", \"v5\");\n}\n",
"@mixin alert-variant($background, $border, $color) {\n color: $color;\n @include gradient-bg($background);\n border-color: $border;\n\n hr {\n border-top-color: darken($border, 5%);\n }\n\n .alert-link {\n color: darken($color, 10%);\n }\n}\n",
"// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n@mixin button-variant($background, $border, $hover-background: darken($background, 7.5%), $hover-border: darken($border, 10%), $active-background: darken($background, 10%), $active-border: darken($border, 12.5%)) {\n color: color-yiq($background);\n @include gradient-bg($background);\n border-color: $border;\n @include box-shadow($btn-box-shadow);\n\n @include hover {\n color: color-yiq($hover-background);\n @include gradient-bg($hover-background);\n border-color: $hover-border;\n }\n\n &:focus,\n &.focus {\n // Avoid using mixin so we can pass custom focus shadow properly\n @if $enable-shadows {\n box-shadow: $btn-box-shadow, 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);\n } @else {\n box-shadow: 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);\n }\n }\n\n // Disabled comes first so active can properly restyle\n &.disabled,\n &:disabled {\n color: color-yiq($background);\n background-color: $background;\n border-color: $border;\n // Remove CSS gradients if they're enabled\n @if $enable-gradients {\n background-image: none;\n }\n }\n\n &:not(:disabled):not(.disabled):active,\n &:not(:disabled):not(.disabled).active,\n .show > &.dropdown-toggle {\n color: color-yiq($active-background);\n background-color: $active-background;\n @if $enable-gradients {\n background-image: none; // Remove the gradient for the pressed/active state\n }\n border-color: $active-border;\n\n &:focus {\n // Avoid using mixin so we can pass custom focus shadow properly\n @if $enable-shadows and $btn-active-box-shadow != none {\n box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);\n } @else {\n box-shadow: 0 0 0 $btn-focus-width rgba(mix(color-yiq($background), $border, 15%), .5);\n }\n }\n }\n}\n\n@mixin button-outline-variant($color, $color-hover: color-yiq($color), $active-background: $color, $active-border: $color) {\n color: $color;\n border-color: $color;\n\n @include hover {\n color: $color-hover;\n background-color: $active-background;\n border-color: $active-border;\n }\n\n &:focus,\n &.focus {\n box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n }\n\n &.disabled,\n &:disabled {\n color: $color;\n background-color: transparent;\n }\n\n &:not(:disabled):not(.disabled):active,\n &:not(:disabled):not(.disabled).active,\n .show > &.dropdown-toggle {\n color: color-yiq($active-background);\n background-color: $active-background;\n border-color: $active-border;\n\n &:focus {\n // Avoid using mixin so we can pass custom focus shadow properly\n @if $enable-shadows and $btn-active-box-shadow != none {\n box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($color, .5);\n } @else {\n box-shadow: 0 0 0 $btn-focus-width rgba($color, .5);\n }\n }\n }\n}\n\n// Button sizes\n@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {\n padding: $padding-y $padding-x;\n @include font-size($font-size);\n line-height: $line-height;\n // Manually declare to provide an override to the browser default\n @include border-radius($border-radius, 0);\n}\n",
"@mixin caret-down {\n border-top: $caret-width solid;\n border-right: $caret-width solid transparent;\n border-bottom: 0;\n border-left: $caret-width solid transparent;\n}\n\n@mixin caret-up {\n border-top: 0;\n border-right: $caret-width solid transparent;\n border-bottom: $caret-width solid;\n border-left: $caret-width solid transparent;\n}\n\n@mixin caret-right {\n border-top: $caret-width solid transparent;\n border-right: 0;\n border-bottom: $caret-width solid transparent;\n border-left: $caret-width solid;\n}\n\n@mixin caret-left {\n border-top: $caret-width solid transparent;\n border-right: $caret-width solid;\n border-bottom: $caret-width solid transparent;\n}\n\n@mixin caret($direction: down) {\n @if $enable-caret {\n &::after {\n display: inline-block;\n margin-left: $caret-spacing;\n vertical-align: $caret-vertical-align;\n content: \"\";\n @if $direction == down {\n @include caret-down;\n } @else if $direction == up {\n @include caret-up;\n } @else if $direction == right {\n @include caret-right;\n }\n }\n\n @if $direction == left {\n &::after {\n display: none;\n }\n\n &::before {\n display: inline-block;\n margin-right: $caret-spacing;\n vertical-align: $caret-vertical-align;\n content: \"\";\n @include caret-left;\n }\n }\n\n &:empty::after {\n margin-left: 0;\n }\n }\n}\n",
"// Pagination\n\n@mixin pagination-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) {\n .page-link {\n padding: $padding-y $padding-x;\n @include font-size($font-size);\n line-height: $line-height;\n }\n\n .page-item {\n &:first-child {\n .page-link {\n @include border-left-radius($border-radius);\n }\n }\n &:last-child {\n .page-link {\n @include border-right-radius($border-radius);\n }\n }\n }\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",
"// List Groups\n\n@mixin list-group-item-variant($state, $background, $color) {\n .list-group-item-#{$state} {\n color: $color;\n background-color: $background;\n\n &.list-group-item-action {\n @include hover-focus {\n color: $color;\n background-color: darken($background, 5%);\n }\n\n &.active {\n color: $white;\n background-color: $color;\n border-color: $color;\n }\n }\n }\n}\n",
"// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n@mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) {\n height: 0;\n margin: $margin-y 0;\n overflow: hidden;\n border-top: 1px solid $color;\n}\n",
"// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `$input-focus-border-color` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n@mixin form-control-focus() {\n &:focus {\n color: $input-focus-color;\n background-color: $input-focus-bg;\n border-color: $input-focus-border-color;\n outline: 0;\n // Avoid using mixin so we can pass custom focus shadow properly\n @if $enable-shadows {\n box-shadow: $input-box-shadow, $input-focus-box-shadow;\n } @else {\n box-shadow: $input-focus-box-shadow;\n }\n }\n}\n\n\n@mixin form-validation-state($state, $color, $icon) {\n .#{$state}-feedback {\n display: none;\n width: 100%;\n margin-top: $form-feedback-margin-top;\n @include font-size($form-feedback-font-size);\n color: $color;\n }\n\n .#{$state}-tooltip {\n position: absolute;\n top: 100%;\n z-index: 5;\n display: none;\n max-width: 100%; // Contain to parent when possible\n padding: $form-feedback-tooltip-padding-y $form-feedback-tooltip-padding-x;\n margin-top: .1rem;\n @include font-size($form-feedback-tooltip-font-size);\n line-height: $form-feedback-tooltip-line-height;\n color: color-yiq($color);\n background-color: rgba($color, $form-feedback-tooltip-opacity);\n @include border-radius($form-feedback-tooltip-border-radius);\n }\n\n .form-control {\n .was-validated &:#{$state},\n &.is-#{$state} {\n border-color: $color;\n\n @if $enable-validation-icons {\n padding-right: $input-height-inner;\n background-image: $icon;\n background-repeat: no-repeat;\n background-position: center right $input-height-inner-quarter;\n background-size: $input-height-inner-half $input-height-inner-half;\n }\n\n &:focus {\n border-color: $color;\n box-shadow: 0 0 0 $input-focus-width rgba($color, .25);\n }\n\n ~ .#{$state}-feedback,\n ~ .#{$state}-tooltip {\n display: block;\n }\n }\n }\n\n // stylelint-disable-next-line selector-no-qualifying-type\n textarea.form-control {\n .was-validated &:#{$state},\n &.is-#{$state} {\n @if $enable-validation-icons {\n padding-right: $input-height-inner;\n background-position: top $input-height-inner-quarter right $input-height-inner-quarter;\n }\n }\n }\n\n .custom-select {\n .was-validated &:#{$state},\n &.is-#{$state} {\n border-color: $color;\n\n @if $enable-validation-icons {\n padding-right: $custom-select-feedback-icon-padding-right;\n background: $custom-select-background, $icon $custom-select-bg no-repeat $custom-select-feedback-icon-position / $custom-select-feedback-icon-size;\n }\n\n &:focus {\n border-color: $color;\n box-shadow: 0 0 0 $input-focus-width rgba($color, .25);\n }\n\n ~ .#{$state}-feedback,\n ~ .#{$state}-tooltip {\n display: block;\n }\n }\n }\n\n\n .form-control-file {\n .was-validated &:#{$state},\n &.is-#{$state} {\n ~ .#{$state}-feedback,\n ~ .#{$state}-tooltip {\n display: block;\n }\n }\n }\n\n .form-check-input {\n .was-validated &:#{$state},\n &.is-#{$state} {\n ~ .form-check-label {\n color: $color;\n }\n\n ~ .#{$state}-feedback,\n ~ .#{$state}-tooltip {\n display: block;\n }\n }\n }\n\n .custom-control-input {\n .was-validated &:#{$state},\n &.is-#{$state} {\n ~ .custom-control-label {\n color: $color;\n\n &::before {\n border-color: $color;\n
"// Tables\n\n@mixin table-row-variant($state, $background, $border: null) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table-#{$state} {\n &,\n > th,\n > td {\n background-color: $background;\n }\n\n @if $border != null {\n th,\n td,\n thead th,\n tbody + tbody {\n border-color: $border;\n }\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover {\n $hover-background: darken($background, 5%);\n\n .table-#{$state} {\n @include hover {\n background-color: $hover-background;\n\n > td,\n > th {\n background-color: $hover-background;\n }\n }\n }\n }\n}\n",
"// stylelint-disable declaration-no-important\n\n// Contextual backgrounds\n\n@mixin bg-variant($parent, $color) {\n #{$parent} {\n background-color: $color !important;\n }\n a#{$parent},\n button#{$parent} {\n @include hover-focus {\n background-color: darken($color, 10%) !important;\n }\n }\n}\n\n@mixin bg-gradient-variant($parent, $color) {\n #{$parent} {\n background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x !important;\n }\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",
"@mixin box-shadow($shadow...) {\n @if $enable-shadows {\n $result: ();\n\n @if (length($shadow) == 1) {\n // We can pass `@include box-shadow(none);`\n $result: $shadow;\n } @else {\n // Filter to avoid invalid properties for example `box-shadow: none, 1px 1px black;`\n @for $i from 1 through length($shadow) {\n @if nth($shadow, $i) != \"none\" {\n $result: append($result, nth($shadow, $i), \"comma\");\n }\n }\n }\n @if (length($result) > 0) {\n box-shadow: $result;\n }\n }\n}\n",
"// Gradients\n\n@mixin gradient-bg($color) {\n @if $enable-gradients {\n background: $color linear-gradient(180deg, mix($body-bg, $color, 15%), $color) repeat-x;\n } @else {\n background-color: $color;\n }\n}\n\n// Horizontal gradient, from left to right\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-x($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {\n background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent);\n background-repeat: repeat-x;\n}\n\n// Vertical gradient, from top to bottom\n//\n// Creates two color stops, start and end, by specifying a color and position for each color stop.\n@mixin gradient-y($start-color: $gray-700, $end-color: $gray-800, $start-percent: 0%, $end-percent: 100%) {\n background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent);\n background-repeat: repeat-x;\n}\n\n@mixin gradient-directional($start-color: $gray-700, $end-color: $gray-800, $deg: 45deg) {\n background-image: linear-gradient($deg, $start-color, $end-color);\n background-repeat: repeat-x;\n}\n@mixin gradient-x-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);\n background-repeat: no-repeat;\n}\n@mixin gradient-y-three-colors($start-color: $blue, $mid-color: $purple, $color-stop: 50%, $end-color: $red) {\n background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);\n background-repeat: no-repeat;\n}\n@mixin gradient-radial($inner-color: $gray-700, $outer-color: $gray-800) {\n background-image: radial-gradient(circle, $inner-color, $outer-color);\n background-repeat: no-repeat;\n}\n@mixin gradient-striped($color: rgba($white, .15), $angle: 45deg) {\n background-image: linear-gradient($angle, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent);\n}\n",
"// stylelint-disable property-blacklist\n@mixin transition($transition...) {\n @if $enable-transitions {\n @if length($transition) == 0 {\n transition: $transition-base;\n } @else {\n transition: $transition;\n }\n }\n\n @if $enable-prefers-reduced-motion-media-query {\n @media (prefers-reduced-motion: reduce) {\n transition: none;\n }\n }\n}\n",
"@mixin clearfix() {\n &::after {\n display: block;\n clear: both;\n content: \"\";\n }\n}\n",
"// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `$grid-columns`.\n\n@mixin make-grid-columns($columns: $grid-columns, $gutter: $grid-gutter-width, $breakpoints: $grid-breakpoints) {\n // Common properties for all breakpoints\n %grid-column {\n position: relative;\n width: 100%;\n padding-right: $gutter / 2;\n padding-left: $gutter / 2;\n }\n\n @each $breakpoint in map-keys($breakpoints) {\n $infix: breakpoint-infix($breakpoint, $breakpoints);\n\n // Allow columns to stretch full width below their breakpoints\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @extend %grid-column;\n }\n }\n .col#{$infix},\n .col#{$infix}-auto {\n @extend %grid-column;\n }\n\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n // Provide basic `.col-{bp}` classes for equal-width flexbox columns\n .col#{$infix} {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%;\n }\n .col#{$infix}-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%; // Reset earlier grid tiers\n }\n\n @for $i from 1 through $columns {\n .col#{$infix}-#{$i} {\n @include make-col($i, $columns);\n }\n }\n\n .order#{$infix}-first { order: -1; }\n\n .order#{$infix}-last { order: $columns + 1; }\n\n @for $i from 0 through $columns {\n .order#{$infix}-#{$i} { order: $i; }\n }\n\n // `$columns - 1` because offsetting by the width of an entire row isn't possible\n @for $i from 0 through ($columns - 1) {\n @if not ($infix == \"\" and $i == 0) { // Avoid emitting useless .offset-0\n .offset#{$infix}-#{$i} {\n @include make-col-offset($i, $columns);\n }\n }\n }\n }\n }\n}\n",
"/// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n@mixin make-container($gutter: $grid-gutter-width) {\n width: 100%;\n padding-right: $gutter / 2;\n padding-left: $gutter / 2;\n margin-right: auto;\n margin-left: auto;\n}\n\n\n// For each breakpoint, define the maximum width of the container in a media query\n@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {\n @each $breakpoint, $container-max-width in $max-widths {\n @include media-breakpoint-up($breakpoint, $breakpoints) {\n max-width: $container-max-width;\n }\n }\n}\n\n@mixin make-row($gutter: $grid-gutter-width) {\n display: flex;\n flex-wrap: wrap;\n margin-right: -$gutter / 2;\n margin-left: -$gutter / 2;\n}\n\n@mixin make-col-ready($gutter: $grid-gutter-width) {\n position: relative;\n // Prevent columns from becoming too narrow when at smaller grid tiers by\n // always setting `width: 100%;`. This works because we use `flex` values\n // later on to override this initial width.\n width: 100%;\n padding-right: $gutter / 2;\n padding-left: $gutter / 2;\n}\n\n@mixin make-col($size, $columns: $grid-columns) {\n flex: 0 0 percentage($size / $columns);\n // Add a `max-width` to ensure content within each column does not blow out\n // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari\n // do not appear to require this.\n max-width: percentage($size / $columns);\n}\n\n@mixin make-col-offset($size, $columns: $grid-columns) {\n $num: $size / $columns;\n margin-left: if($num == 0, 0, percentage($num));\n}\n",
"// stylelint-disable declaration-no-important\n\n@mixin float-left {\n float: left !important;\n @include deprecate(\"The `float-left` mixin\", \"v4.3.0\", \"v5\");\n}\n@mixin float-right {\n float: right !important;\n @include deprecate(\"The `float-right` mixin\", \"v4.3.0\", \"v5\");\n}\n@mixin float-none {\n float: none !important;\n @include deprecate(\"The `float-none` mixin\", \"v4.3.0\", \"v5\");\n}\n",
2019-11-02 13:54:26 +01:00
"//\n// Core: Variables\n//\n\n// COLORS\n// --------------------------------------------------------\n$blue: #0073b7 !default;\n$navy: #001f3f !default;\n$teal: #39cccc !default;\n$olive: #3d9970 !default;\n$lime: #01ff70 !default;\n$orange: #ff851b !default;\n$fuchsia: #f012be !default;\n$purple: #605ca8 !default;\n$maroon: #d81b60 !default;\n$black: #111 !default;\n$gray-x-light: #d2d6de !default;\n\n$colors: map-merge((\n 'navy': $navy,\n 'olive': $olive,\n 'lime': $lime,\n 'fuchsia': $fuchsia,\n 'maroon': $maroon,\n), $colors);\n\n// LAYOUT\n// --------------------------------------------------------\n\n$font-size-root: 1rem !default;\n\n// Sidebar\n$sidebar-width: 250px !default;\n$sidebar-padding-x: 0.5rem !default;\n$sidebar-padding-y: 0 !default;\n\n// Boxed layout maximum width\n$boxed-layout-max-width: 1250px !default;\n\n// When to show the smaller logo\n$screen-header-collapse: map-get($grid-breakpoints, md) !default;\n\n// Body background (Affects main content background only)\n$main-bg: #f4f6f9 !default;\n\n// Content padding\n$content-padding-y: 0 !default;\n$content-padding-x: $navbar-padding-x !default;\n\n// IMAGE SIZES\n// --------------------------------------------------------\n$img-size-sm: 1.875rem !default;\n$img-size-md: 3.75rem !default;\n$img-size-lg: 6.25rem !default;\n$img-size-push: .625rem !default;\n\n// MAIN HEADER\n// --------------------------------------------------------\n$main-header-bottom-border-width: $border-width !default;\n$main-header-bottom-border-color: $gray-300 !default;\n$main-header-bottom-border: $main-header-bottom-border-width solid $main-header-bottom-border-color !default;\n$main-header-link-padding-y: $navbar-padding-y !default;\n$main-header-link-padding-x: $navbar-padding-x !default;\n$main-header-brand-padding-y: $navbar-brand-padding-y !default;\n$main-header-brand-padding-x: $navbar-padding-x !default;\n$main-header-height-inner: ($nav-link-height + ($main-header-link-padding-y * 2)) !default;\n$main-header-height: calc(#{$main-header-height-inner} + #{$main-header-bottom-border-width}) !default;\n$nav-link-sm-padding-y: .35rem !default;\n$nav-link-sm-height: ($font-size-sm * $line-height-sm + $nav-link-sm-padding-y * 1.785) !default;\n$main-header-height-sm-inner: ($nav-link-sm-height + ($main-header-link-padding-y * 2)) !default;\n$main-header-height-sm: calc(#{$main-header-height-sm-inner} + #{$main-header-bottom-border-width}) !default;\n\n\n// Main header skins\n$main-header-dark-form-control-bg: hsla(100, 100%, 100%, 0.2) !default;\n$main-header-dark-form-control-focused-bg: hsla(100, 100%, 100%, 0.6) !default;\n$main-header-dark-form-control-focused-color: $gray-800 !default;\n$main-header-dark-form-control-border: 0 !default;\n$main-header-dark-form-control-focused-border: 0 !default;\n$main-header-dark-placeholder-color: hsla(100, 100%, 100%, 0.6) !default;\n\n$main-header-light-form-control-bg: darken($gray-100, 2%) !default;\n$main-header-light-form-control-focused-bg: $gray-200 !default;\n$main-header-light-form-control-focused-color: $gray-800 !default;\n$main-header-light-form-control-border: 0 !default;\n$main-header-light-form-control-focused-border: 0 !default;\n$main-header-light-placeholder-color: hsla(0, 0%, 0%, 0.6) !default;\n\n// MAIN FOOTER\n// --------------------------------------------------------\n$main-footer-padding: 1rem !default;\n$main-footer-padding-sm: $main-footer-padding * .812 !default;\n$main-footer-border-top-width: 1px !default;\n$main-footer-border-top-color: $gray-300 !default;\n$main-footer-border-top: $main-footer-border-top-width solid $main-footer-border-top-color !default;\n$main-footer-height-inner: (($font-size-root * $line-height-base) + ($main-footer-padding * 2)) !default;\n$main-footer-height: calc(#{$main-footer-height-inner} + #{$main-footer-border-top-width}) !default;\n$main-footer-height-sm-inner: (($font-size-sm * $line-height-base) + ($main-footer-padding-sm * 2)) !default;\n$main-footer-height-sm: calc(#{$main-footer-height-sm-inner} + #{$main-footer-border-top-width}) !default;\n
"//\n// General: Mixins\n//\n\n@import 'mixins/cards';\n@import 'mixins/sidebar';\n@import 'mixins/navbar';\n@import 'mixins/accent';\n@import 'mixins/custom-forms';\n@import 'mixins/backgrounds';\n@import 'mixins/direct-chat';\n@import 'mixins/toasts';\n@import 'mixins/miscellaneous';\n",
2019-11-02 13:54:26 +01:00
"//\n// Mixins: Cards Variant\n//\n\n@mixin cards-variant($name, $color) {\n .card-#{$name} {\n &.card-tabs {\n &:not(.card-outline) {\n .card-header {\n background-color: $color;\n\n &,\n a {\n color: color-yiq($color);\n }\n\n a.active {\n color: color-yiq($white);\n }\n }\n }\n\n &.card-outline {\n border-top: 3px solid $color;\n }\n }\n\n &.card-outline-tabs {\n .card-header {\n a {\n &:hover {\n border-top: 3px solid $nav-tabs-border-color;\n }\n\n &.active {\n border-top: 3px solid $color;\n }\n }\n }\n }\n }\n\n .bg-#{$name},\n .bg-gradient-#{$name},\n .card-#{$name}:not(.card-outline) {\n .btn-tool {\n color: rgba(color-yiq($color), 0.8);\n\n &:hover {\n color: color-yiq($color);\n }\n }\n }\n\n .card.bg-#{$name},\n .card.bg-gradient-#{$name} {\n .bootstrap-datetimepicker-widget {\n .table td,\n .table th {\n border: none;\n }\n\n table thead tr:first-child th:hover,\n table td.day:hover,\n table td.hour:hover,\n table td.minute:hover,\n table td.second:hover {\n background: darken($color, 8%);\n color: color-yiq($color);\n }\n\n table td.today::before {\n border-bottom-color: color-yiq($color);\n }\n\n table td.active,\n table td.active:hover {\n background: lighten($color, 10%);\n color: color-yiq($color);\n }\n }\n }\n}\n\n",
"//\n// Mixins: Sidebar\n//\n\n// Sidebar Color\n@mixin sidebar-color($color) {\n .nav-sidebar > .nav-item {\n & > .nav-link.active {\n background-color: $color;\n color: color-yiq($color);\n }\n }\n\n .nav-sidebar.nav-legacy > .nav-item {\n & > .nav-link.active {\n border-color: $color;\n }\n }\n}\n\n// Sidebar Mini Breakpoints\n@mixin sidebar-mini-breakpoint() {\n // A fix for text overflow while transitioning from sidebar mini to full sidebar\n .nav-sidebar,\n .nav-sidebar > .nav-header,\n .nav-sidebar .nav-link {\n white-space: nowrap;\n overflow: hidden;\n }\n\n // When the sidebar is collapsed...\n &.sidebar-collapse {\n .d-hidden-mini {\n display: none;\n }\n\n // Apply the new margins to the main content and footer\n .content-wrapper,\n .main-footer,\n .main-header {\n margin-left: $sidebar-mini-width !important;\n }\n\n // Make the sidebar headers\n .nav-sidebar .nav-header {\n display: none;\n }\n\n .nav-sidebar .nav-link p {\n width: 0;\n }\n\n .sidebar .user-panel > .info,\n .nav-sidebar .nav-link p,\n .brand-text {\n margin-left: -10px;\n opacity: 0;\n visibility: hidden;\n }\n\n .logo-xl {\n opacity: 0;\n visibility: hidden;\n }\n\n .logo-xs {\n display: inline-block;\n opacity: 1;\n visibility: visible;\n }\n\n // Modify the sidebar to shrink instead of disappearing\n .main-sidebar {\n overflow-x: hidden;\n\n &,\n &::before {\n // Don't go away! Just shrink\n margin-left: 0;\n width: $sidebar-mini-width;\n }\n\n .user-panel {\n .image {\n float: none;\n }\n }\n\n &:hover,\n &.sidebar-focused {\n width: $sidebar-width;\n\n .nav-sidebar.nav-child-indent .nav-treeview {\n padding-left: 1rem;\n }\n\n .brand-link {\n width: $sidebar-width;\n }\n\n .user-panel {\n text-align: left;\n\n .image {\n float: left;\n }\n }\n\n .user-panel > .info,\n .nav-sidebar .nav-link p,\n .brand-text,\n .logo-xl {\n display: inline-block;\n margin-left: 0;\n opacity: 1;\n visibility: visible;\n }\n\n .nav-flat {\n .nav-icon {\n margin-left: 0;\n }\n\n .nav-treeview {\n .nav-icon {\n margin-left: -.2rem;\n }\n }\n }\n\n .logo-xs {\n opacity: 0;\n visibility: hidden;\n }\n\n .brand-image {\n margin-right: .5rem;\n }\n\n // Make the sidebar links, menus, labels, badges\n // and angle icons disappear\n .sidebar-form,\n .user-panel > .info {\n display: block !important;\n -webkit-transform: translateZ(0);\n }\n\n .nav-sidebar > .nav-item > .nav-link > span {\n display: inline-block !important;\n }\n }\n }\n\n // Make an element visible only when sidebar mini is active\n .visible-sidebar-mini {\n display: block !important;\n }\n\n &.layout-fixed {\n .main-sidebar:hover {\n .brand-link {\n width: $sidebar-width;\n }\n }\n\n .brand-link {\n width: $sidebar-mini-width;\n }\n }\n }\n}\n",
"//\n// Mixins: Navbar\n//\n\n// Navbar Variant\n@mixin navbar-variant($color, $font-color: rgba(255, 255, 255, 0.8), $hover-color: #f6f6f6, $hover-bg: rgba(0, 0, 0, 0.1)) {\n background-color: $color;\n\n .nav > li > a {\n color: $font-color;\n }\n\n .nav > li > a:hover,\n .nav > li > a:active,\n .nav > li > a:focus,\n .nav .open > a,\n .nav .open > a:hover,\n .nav .open > a:focus,\n .nav > .active > a {\n background: $hover-bg;\n color: $hover-color;\n }\n\n // Add color to the sidebar toggle button\n .sidebar-toggle {\n color: $font-color;\n\n &:hover,\n &:focus {\n background: $hover-bg;\n color: $hover-color;\n }\n }\n}\n",
"//\n// Mixins: Accent\n//\n\n// Accent Variant\n@mixin accent-variant($name, $color) {\n .accent-#{$name} {\n $link-color: $color;\n $link-hover-color: darken($color, 15%);\n $pagination-active-bg: $color;\n $pagination-active-border-color: $color;\n\n a {\n color: $link-color;\n\n @include hover {\n color: $link-hover-color;\n }\n }\n\n .page-item {\n &.active .page-link {\n background-color: $pagination-active-bg;\n border-color: $pagination-active-border-color;\n }\n\n &.disabled .page-link {\n background-color: $pagination-disabled-bg;\n border-color: $pagination-disabled-border-color;\n }\n }\n }\n}\n\n",
"//\n// Mixins: Custom Forms\n//\n\n// Custom Switch Variant\n@mixin custom-switch-variant($name, $color) {\n &.custom-switch-off-#{$name} {\n & .custom-control-input ~ .custom-control-label::before {\n background: #{$color};\n border-color: darken($color, 20%);\n }\n\n & .custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px $body-bg, 0 0 0 2px rgba($color, .25);\n }\n\n & .custom-control-input ~ .custom-control-label::after {\n background: darken($color, 25%);\n }\n }\n\n &.custom-switch-on-#{$name} {\n & .custom-control-input:checked ~ .custom-control-label::before {\n background: #{$color};\n border-color: darken($color, 20%);\n }\n\n & .custom-control-input:checked:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 1px $body-bg, 0 0 0 2px rgba($color, .25);\n }\n\n & .custom-control-input:checked ~ .custom-control-label::after {\n background: lighten($color, 30%);\n }\n }\n}\n\n// Custom Range Variant\n@mixin custom-range-variant($name, $color) {\n &.custom-range-#{$name} {\n &:focus {\n outline: none;\n\n &::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px $body-bg, 0 0 0 2px rgba($color, .25);\n }\n\n &::-moz-range-thumb {\n box-shadow: 0 0 0 1px $body-bg, 0 0 0 2px rgba($color, .25);\n }\n\n &::-ms-thumb {\n box-shadow: 0 0 0 1px $body-bg, 0 0 0 2px rgba($color, .25);\n }\n }\n\n &::-webkit-slider-thumb {\n background-color: $color;\n\n &:active {\n background-color: lighten($color, 35%);\n }\n }\n\n &::-moz-range-thumb {\n background-color: $color;\n\n &:active {\n background-color: lighten($color, 35%);\n }\n }\n\n &::-ms-thumb {\n background-color: $color;\n\n &:active {\n background-color: lighten($color, 35%);\n }\n }\n }\n}\n",
"//\n// Mixins: Backgrounds\n//\n\n// Background Variant\n@mixin background-variant($name, $color) {\n .bg-#{$name} {\n background-color: #{$color} !important;\n\n &,\n > a {\n color: color-yiq($color) !important;\n }\n\n &.btn {\n &:hover {\n border-color: darken($color, 10%);\n color: darken(color-yiq($color), 7.5%);\n }\n\n &:not(:disabled):not(.disabled):active,\n &:not(:disabled):not(.disabled).active,\n &:active,\n &.active {\n background-color: darken($color, 10%) !important;\n border-color: darken($color, 12.5%);\n color: color-yiq(darken($color, 10%));\n }\n }\n }\n}\n\n// Background Gradient Variant\n@mixin background-gradient-variant($name, $color) {\n .bg-gradient-#{$name} {\n @include bg-gradient-variant('&', $color);\n color: color-yiq($color);\n\n &.btn {\n &.disabled,\n &:disabled,\n &:not(:disabled):not(.disabled):active,\n &:not(:disabled):not(.disabled).active,\n .show > &.dropdown-toggle {\n background-image: none !important;\n }\n\n &:hover {\n @include bg-gradient-variant('&', darken($color, 7.5%));\n border-color: darken($color, 10%);\n color: darken(color-yiq($color), 7.5%);\n }\n\n &:not(:disabled):not(.disabled):active,\n &:not(:disabled):not(.disabled).active,\n &:active,\n &.active {\n @include bg-gradient-variant('&', darken($color, 10%));\n border-color: darken($color, 12.5%);\n color: color-yiq(darken($color, 10%));\n }\n }\n }\n}\n",
"//\n// Mixins: Direct Chat\n//\n\n// Direct Chat Variant\n@mixin direct-chat-variant($bg-color, $color: #fff) {\n .right > .direct-chat-text {\n background: $bg-color;\n border-color: $bg-color;\n color: color-yiq($bg-color);\n\n &::after,\n &::before {\n border-left-color: $bg-color;\n }\n }\n}\n",
"//\n// Mixins: Toasts\n//\n\n// Toast Variant\n@mixin toast-variant($name, $color) {\n &.bg-#{$name} {\n background: rgba($color, .9) !important;\n @if (color-yiq($color) == $yiq-text-light) {\n\n .close {\n color: color-yiq($color);\n text-shadow: 0 1px 0 #000;\n }\n }\n\n .toast-header {\n background: rgba($color, .85);\n color: color-yiq($color);\n }\n }\n}\n\n",
"//\n// Mixins: Miscellaneous\n//\n\n// ETC\n@mixin translate($x, $y) {\n transform: translate($x, $y);\n}\n\n// Different radius each side\n@mixin border-radius-sides($top-left, $top-right, $bottom-left, $bottom-right) {\n border-radius: $top-left $top-right $bottom-left $bottom-right;\n}\n\n@mixin calc($property, $expression) {\n #{$property}: calc(#{$expression});\n}\n\n@mixin rotate($value) {\n transform: rotate($value);\n}\n\n@mixin animation($animation) {\n animation: $animation;\n}\n\n// Gradient background\n@mixin gradient($color: #F5F5F5, $start: #EEE, $stop: #FFF) {\n background: $color;\n background: -webkit-gradient(linear, left bottom, left top, color-stop(0, $start), color-stop(1, $stop));\n background: -ms-linear-gradient(bottom, $start, $stop);\n background: -moz-linear-gradient(center bottom, $start 0%, $stop 100%);\n background: -o-linear-gradient($stop, $start);\n}\n\n",
"//\n// Part: Extra Components\n//\n\n@import '../small-box';\n@import '../info-box';\n@import '../timeline';\n@import '../products';\n@import '../direct-chat';\n@import '../users-list';\n@import '../social-widgets';\n",
"//\n// Component: Small Box\n//\n\n.small-box {\n @include border-radius($border-radius);\n @include box-shadow($card-shadow);\n\n display: block;\n margin-bottom: 20px;\n position: relative;\n\n // content wrapper\n > .inner {\n padding: 10px;\n }\n\n > .small-box-footer {\n background: rgba($black, 0.1);\n color: rgba($white, 0.8);\n display: block;\n padding: 3px 0;\n position: relative;\n text-align: center;\n text-decoration: none;\n z-index: 10;\n\n &:hover {\n background: rgba($black, 0.15);\n color: $white;\n }\n }\n\n h3 {\n @include font-size(2.2rem);\n font-weight: bold;\n margin: 0 0 10px 0;\n padding: 0;\n white-space: nowrap;\n }\n\n @include media-breakpoint-up(lg) {\n .col-xl-2 &,\n .col-lg-2 &,\n .col-md-2 & {\n h3 {\n @include font-size(1.6rem);\n }\n }\n\n .col-xl-3 &,\n .col-lg-3 &,\n .col-md-3 & {\n h3 {\n @include font-size(1.6rem);\n }\n }\n }\n\n @include media-breakpoint-up(xl) {\n .col-xl-2 &,\n .col-lg-2 &,\n .col-md-2 & {\n h3 {\n @include font-size(2.2rem);\n }\n }\n\n .col-xl-3 &,\n .col-lg-3 &,\n .col-md-3 & {\n h3 {\n @include font-size(2.2rem);\n }\n }\n }\n\n p {\n font-size: 1rem;\n\n > small {\n color: $gray-100;\n display: block;\n font-size: 0.9rem;\n margin-top: 5px;\n }\n }\n\n h3,\n p {\n z-index: 5;\n }\n\n // the icon\n .icon {\n color: rgba($black, 0.15);\n z-index: 0;\n\n > i {\n font-size: 90px;\n position: absolute;\n right: 15px;\n top: 15px;\n transition: all $transition-speed linear;\n\n &.fa,\n &.fas,\n &.far,\n &.fab,\n &.glyphicon,\n &.ion {\n font-size: 70px;\n top: 20px;\n }\n }\n\n }\n\n // Small box hover state\n &:hover {\n text-decoration: none;\n\n // Animate icons on small box hover\n .icon > i {\n font-size: 95px;\n\n &.fa,\n &.fas,\n &.far,\n &.fab,\n &.glyphicon,\n &.ion {\n font-size: 75px;\n }\n }\n }\n}\n\n@include media-breakpoint-down(sm) {\n // No need for icons on very small devices\n .small-box {\n text-align: center;\n\n .icon {\n display: none;\n }\n\n p {\n font-size: 12px;\n }\n }\n}\n",
2019-11-02 13:54:26 +01:00
"//\n// Component: Info Box\n//\n \n.info-box {\n @include box-shadow($card-shadow);\n @include border-radius($border-radius);\n\n background: $white;\n display: flex;\n margin-bottom: map-get($spacers, 3);\n min-height: 80px;\n padding: .5rem;\n position: relative;\n\n .progress {\n background-color: rgba($black, .125);\n height: 2px;\n margin: 5px 0;\n\n .progress-bar {\n background-color: $white;\n }\n }\n\n .info-box-icon {\n @if $enable-rounded {\n border-radius: $border-radius;\n }\n\n align-items: center;\n display: flex;\n font-size: 1.875rem;\n justify-content: center;\n text-align: center;\n width: 70px;\n\n > img {\n max-width: 100%;\n }\n }\n\n .info-box-content {\n flex: 1;\n padding: 5px 10px;\n }\n\n .info-box-number {\n display: block;\n font-weight: $font-weight-bold;\n }\n\n .progress-description,\n .info-box-text {\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n @each $name, $color in $theme-colors {\n .info-box {\n .bg-#{$name},\n .bg-gradient-#{$name} {\n color: color-yiq($color);\n\n .progress-bar {\n background-color: color-yiq($color);\n }\n }\n }\n }\n\n .info-box-more {\n display: block;\n }\n\n .progress-description {\n margin: 0;\n\n }\n\n @include media-breakpoint-up(md) {\n .col-xl-2 &,\n .col-lg-2 &,\n .col-md-2 & {\n .progress-description {\n display: none;\n }\n }\n\n .col-xl-3 &,\n .col-lg-3 &,\n .col-md-3 & {\n .progress-description {\n display: none;\n }\n }\n }\n\n @include media-breakpoint-up(lg) {\n .col-xl-2 &,\n .col-lg-2 &,\n .col-md-2 & {\n .progress-description {\n @include font-size(.75rem);\n display: block;\n }\n }\n\n .col-xl-3 &,\n .col-lg-3 &,\n .col-md-3 & {\n .progress-description {\n @include font-size(.75rem);\n display: block;\n }\n }\n }\n\n @include media-breakpoint-up(xl) {\n .col-xl-2 &,\n .col-lg-2 &,\n .col-md-2 & {\n .progress-description {\n @include font-size(1rem);\n display: block;\n }\n }\n\n .col-xl-3 &,\n .col-lg-3 &,\n .col-md-3 & {\n .progress-description {\n @include font-size(1rem);\n display: block;\n }\n }\n }\n}\n",
"//\n// Component: Timeline\n//\n\n.timeline {\n margin: 0 0 45px;\n padding: 0;\n position: relative;\n // The line\n &::before {\n @include border-radius($border-radius);\n background: $gray-300;\n bottom: 0;\n content: '';\n left: 31px;\n margin: 0;\n position: absolute;\n top: 0;\n width: 4px;\n }\n // Element\n > div {\n &::before,\n &::after {\n content: \"\";\n display: table;\n }\n\n margin-bottom: 15px;\n margin-right: 10px;\n position: relative;\n // The content\n > .timeline-item {\n @include box-shadow($card-shadow);\n @include border-radius($border-radius);\n background: $white;\n color: $gray-700;\n margin-left: 60px;\n margin-right: 15px;\n margin-top: 0;\n padding: 0;\n position: relative;\n // The time and header\n > .time {\n color: #999;\n float: right;\n font-size: 12px;\n padding: 10px;\n }\n // Header\n > .timeline-header {\n border-bottom: 1px solid $card-border-color;\n color: $gray-700;\n font-size: 16px;\n line-height: 1.1;\n margin: 0;\n padding: 10px;\n // Link in header\n > a {\n font-weight: 600;\n }\n }\n // Item body and footer\n > .timeline-body,\n > .timeline-footer {\n padding: 10px;\n }\n\n > .timeline-body {\n > img {\n margin: 10px;\n }\n > dl, ol, ul {\n margin: 0;\n }\n }\n\n > .timeline-footer {\n > a {\n color: $white;\n }\n }\n }\n // The icons at line\n > .fa,\n > .fas,\n > .far,\n > .fab,\n > .glyphicon,\n > .ion {\n background: $gray-500;\n border-radius: 50%;\n font-size: 15px;\n height: 30px;\n left: 18px;\n line-height: 30px;\n position: absolute;\n text-align: center;\n top: 0;\n width: 30px;\n }\n }\n // Time label\n > .time-label {\n > span {\n @include border-radius(4px);\n background-color: $white;\n display: inline-block;\n font-weight: 600;\n padding: 5px;\n }\n }\n}\n\n.timeline-inverse {\n > div {\n > .timeline-item {\n @include box-shadow(none);\n background: $gray-100;\n border: 1px solid $gray-300;\n\n > .timeline-header {\n border-bottom-color: $gray-300;\n }\n }\n }\n}\n",
"//\n// Component: Products\n//\n\n.products-list {\n list-style: none;\n margin: 0;\n padding: 0;\n\n > .item {\n @include clearfix;\n\n @if $enable-rounded {\n @include border-radius($border-radius);\n }\n\n background: $white;\n padding: 10px 0;\n }\n\n .product-img {\n float: left;\n\n img {\n height: 50px;\n width: 50px;\n }\n }\n\n .product-info {\n margin-left: 60px;\n }\n\n .product-title {\n font-weight: 600;\n }\n\n .product-description {\n color: $gray-600;\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n}\n\n.product-list-in-card > .item {\n @include border-radius(0);\n border-bottom: 1px solid $card-border-color;\n\n &:last-of-type {\n border-bottom-width: 0;\n }\n}\n",
"//\n// Component: Direct Chat\n//\n \n.direct-chat {\n .card-body {\n overflow-x: hidden;\n padding: 0;\n position: relative;\n }\n\n &.chat-pane-open {\n .direct-chat-contacts {\n @include translate(0, 0);\n }\n }\n\n\n &.timestamp-light {\n .direct-chat-timestamp {\n color: lighten(color-yiq($yiq-text-light), 10%);\n }\n }\n\n &.timestamp-dark {\n .direct-chat-timestamp {\n color: darken(color-yiq($yiq-text-dark), 20%);\n }\n }\n}\n\n.direct-chat-messages {\n @include translate(0, 0);\n height: 250px;\n overflow: auto;\n padding: 10px;\n}\n\n.direct-chat-msg,\n.direct-chat-text {\n display: block;\n}\n\n.direct-chat-msg {\n @include clearfix;\n margin-bottom: 10px;\n}\n\n.direct-chat-messages,\n.direct-chat-contacts {\n transition: transform .5s ease-in-out;\n}\n\n.direct-chat-text {\n @if $enable-rounded {\n @include border-radius($border-radius-lg);\n }\n\n background: $direct-chat-default-msg-bg;\n border: 1px solid $direct-chat-default-msg-border-color;\n color: $direct-chat-default-font-color;\n margin: 5px 0 0 50px;\n padding: 5px 10px;\n position: relative;\n\n //Create the arrow\n &::after,\n &::before {\n border: solid transparent;\n border-right-color: $direct-chat-default-msg-border-color;\n content: ' ';\n height: 0;\n pointer-events: none;\n position: absolute;\n right: 100%;\n top: 15px;\n width: 0;\n }\n\n &::after {\n border-width: 5px;\n margin-top: -5px;\n }\n\n &::before {\n border-width: 6px;\n margin-top: -6px;\n }\n\n .right & {\n margin-left: 0;\n margin-right: 50px;\n\n &::after,\n &::before {\n border-left-color: $direct-chat-default-msg-border-color;\n border-right-color: transparent;\n left: 100%;\n right: auto;\n }\n }\n}\n\n.direct-chat-img {\n @include border-radius(50%);\n float: left;\n height: 40px;\n width: 40px;\n\n .right & {\n float: right;\n }\n}\n\n.direct-chat-infos {\n display: block;\n font-size: $font-size-sm;\n margin-bottom: 2px;\n}\n\n.direct-chat-name {\n font-weight: 600;\n}\n\n.direct-chat-timestamp {\n color: darken($gray-500, 25%);\n}\n\n//Direct chat contacts pane\n.direct-chat-contacts-open {\n .direct-chat-contacts {\n @include translate(0, 0);\n }\n}\n\n.direct-chat-contacts {\n @include translate(101%, 0);\n background: $dark;\n bottom: 0;\n color: $white;\n height: 250px;\n overflow: auto;\n position: absolute;\n top: 0;\n width: 100%;\n}\n\n.direct-chat-contacts-light {\n background: $light;\n\n .contacts-list-name {\n color: $gray-700;\n }\n\n .contacts-list-date {\n color: $gray-600;\n }\n\n .contacts-list-msg {\n color: darken($gray-600, 10%);\n }\n}\n\n//Contacts list -- for displaying contacts in direct chat contacts pane\n.contacts-list {\n @include list-unstyled;\n\n > li {\n @include clearfix;\n border-bottom: 1px solid rgba($black, 0.2);\n margin: 0;\n padding: 10px;\n\n &:last-of-type {\n border-bottom: 0;\n }\n }\n}\n\n.contacts-list-img {\n @include border-radius(50%);\n float: left;\n width: 40px;\n}\n\n.contacts-list-info {\n color: $white;\n margin-left: 45px;\n}\n\n.contacts-list-name,\n.contacts-list-status {\n display: block;\n}\n\n.contacts-list-name {\n font-weight: 600;\n}\n\n.contacts-list-status {\n font-size: $font-size-sm;\n}\n\n.contacts-list-date {\n color: $gray-400;\n font-weight: normal;\n}\n\n.contacts-list-msg {\n color: darken($gray-400, 10%);\n}\n\n// Color variants\n@each $name, $color in $theme-colors {\n .direct-chat-#{$name} {\n @include direct-chat-variant($color);\n }\n}\n\n@each $name, $color in $colors {\n .direct-chat-#{$name} {\n @include direct-chat-variant($color);\n }\n}\n",
"//\n// Component: Users List\n//\n\n.users-list {\n @include list-unstyled;\n\n > li {\n float: left;\n padding: 10px;\n text-align: center;\n width: 25%;\n\n img {\n @include border-radius(50%);\n height: auto;\n max-width: 100%;\n }\n\n > a:hover {\n &,\n .users-list-name {\n color: #999;\n }\n }\n }\n}\n\n.users-list-name,\n.users-list-date {\n display: block;\n}\n\n.users-list-name {\n color: $gray-700;\n font-size: $font-size-sm;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.users-list-date {\n color: darken($gray-500, 20%);\n font-size: 12px;\n}\n",
"//\n// Component: Social Widgets\n//\n\n//General widget style\n.card-widget {\n border: 0;\n position: relative;\n}\n\n//User Widget Style 1\n.widget-user {\n\n //User name container\n .widget-user-header {\n @if $enable-rounded {\n @include border-top-radius($border-radius);\n }\n\n height: 135px;\n padding: 1rem;\n text-align: center;\n }\n\n //User name\n .widget-user-username {\n font-size: 25px;\n font-weight: 300;\n margin-bottom: 0;\n margin-top: 0;\n text-shadow: 0 1px 1px rgba($black, 0.2);\n }\n\n //User single line description\n .widget-user-desc {\n margin-top: 0;\n }\n\n //User image container\n .widget-user-image {\n left: 50%;\n margin-left: -45px;\n position: absolute;\n top: 80px;\n\n > img {\n border: 3px solid $white;\n height: auto;\n width: 90px;\n }\n }\n\n .card-footer {\n padding-top: 50px;\n }\n}\n\n//User Widget Style 2\n.widget-user-2 {\n\n //User name container\n .widget-user-header {\n @include border-top-radius($border-radius);\n padding: 1rem;\n }\n\n //User name\n .widget-user-username {\n font-size: 25px;\n font-weight: 300;\n margin-bottom: 5px;\n margin-top: 5px;\n }\n\n //User single line description\n .widget-user-desc {\n margin-top: 0;\n }\n\n .widget-user-username,\n .widget-user-desc {\n margin-left: 75px;\n }\n\n //User image container\n .widget-user-image {\n > img {\n float: left;\n height: auto;\n width: 65px;\n }\n }\n}\n"
],
"names": [],
2019-11-02 13:54:26 +01:00
"mappings": "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
}