X7ROOT File Manager
Current Path:
/var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/assets/css
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
assets
/
css
/
ðŸ“
..
📄
_animation.scss
(117 B)
📄
_fonts.scss
(687 B)
📄
_mixins.scss
(5.13 KB)
📄
_variables.scss
(1.01 KB)
📄
activation-rtl.css
(1.44 KB)
📄
activation.css
(1.44 KB)
📄
activation.scss
(1.21 KB)
📄
admin-rtl.css
(274.58 KB)
📄
admin.css
(274.53 KB)
📄
admin.scss
(106.83 KB)
📄
auth-rtl.css
(2.36 KB)
📄
auth.css
(2.36 KB)
📄
auth.scss
(2.12 KB)
📄
dashboard-rtl.css
(4.53 KB)
📄
dashboard.css
(4.53 KB)
📄
dashboard.scss
(3.82 KB)
📄
helper-rtl.css
(17.49 KB)
📄
helper.css
(17.49 KB)
📄
helper.scss
(16.68 KB)
ðŸ“
jquery-ui
📄
kkart-layout-rtl.css
(15.82 KB)
📄
kkart-layout.css
(15.87 KB)
📄
kkart-layout.scss
(7.35 KB)
📄
kkart-rtl.css
(56.85 KB)
📄
kkart-setup-rtl.css
(31.28 KB)
📄
kkart-setup.css
(31.27 KB)
📄
kkart-setup.scss
(24.58 KB)
📄
kkart-smallscreen-rtl.css
(5.95 KB)
📄
kkart-smallscreen.css
(5.94 KB)
📄
kkart-smallscreen.scss
(2.92 KB)
📄
kkart.css
(57.59 KB)
📄
kkart.scss
(34.22 KB)
📄
marketplace-suggestions-rtl.css
(20.63 KB)
📄
marketplace-suggestions.css
(20.63 KB)
📄
marketplace-suggestions.scss
(8.54 KB)
📄
menu-rtl.css
(5.5 KB)
📄
menu.css
(5.41 KB)
📄
menu.scss
(3.6 KB)
📄
network-order-widget-rtl.css
(2.1 KB)
📄
network-order-widget.css
(2.1 KB)
📄
network-order-widget.scss
(1.41 KB)
ðŸ“
photoswipe
📄
prettyPhoto-rtl.css
(8.51 KB)
📄
prettyPhoto.css
(8.49 KB)
📄
prettyPhoto.scss
(7.78 KB)
📄
privacy-rtl.css
(1.61 KB)
📄
privacy.css
(1.61 KB)
📄
privacy.scss
(1.98 KB)
📄
reports-print-rtl.css
(1.25 KB)
📄
reports-print.css
(1.24 KB)
📄
reports-print.scss
(1.45 KB)
📄
select2.css
(14.7 KB)
📄
select2.scss
(17.07 KB)
📄
twenty-nineteen-rtl.css
(19.65 KB)
📄
twenty-nineteen.css
(19.64 KB)
📄
twenty-nineteen.scss
(18.49 KB)
📄
twenty-seventeen-rtl.css
(18.38 KB)
📄
twenty-seventeen.css
(18.37 KB)
📄
twenty-seventeen.scss
(16.93 KB)
📄
twenty-twenty-one-admin-rtl.css
(95 B)
📄
twenty-twenty-one-admin.css
(95 B)
📄
twenty-twenty-one-admin.scss
(159 B)
📄
twenty-twenty-one-rtl.css
(50.15 KB)
📄
twenty-twenty-one.css
(50.14 KB)
📄
twenty-twenty-one.scss
(40.85 KB)
📄
twenty-twenty-rtl.css
(38.53 KB)
📄
twenty-twenty.css
(38.51 KB)
📄
twenty-twenty.scss
(32.09 KB)
Editing: _mixins.scss
/** * Deprecated * Fallback for bourbon equivalent */ @mixin clearfix() { *zoom: 1; &::before, &::after { content: ' '; display: table; } &::after { clear: both; } } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius($radius: 4px) { border-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_right($radius: 4px) { border-top-right-radius: $radius; border-bottom-right-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_left($radius: 4px) { border-top-left-radius: $radius; border-bottom-left-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_bottom($radius: 4px) { border-bottom-left-radius: $radius; border-bottom-right-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin border_radius_top($radius: 4px) { border-top-left-radius: $radius; border-top-right-radius: $radius; } /** * Deprecated * Vendor prefix no longer required. */ @mixin opacity( $opacity: 0.75 ) { opacity: $opacity; } /** * Deprecated * Vendor prefix no longer required. */ @mixin box_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_in: 3px, $shadow_color: #888) { box-shadow: $shadow_x $shadow_y $shadow_rad $shadow_in $shadow_color; } /** * Deprecated * Vendor prefix no longer required. */ @mixin inset_box_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_in: 3px, $shadow_color: #888) { box-shadow: inset $shadow_x $shadow_y $shadow_rad $shadow_in $shadow_color; } /** * Deprecated * Vendor prefix no longer required. */ @mixin text_shadow($shadow_x: 3px, $shadow_y: 3px, $shadow_rad: 3px, $shadow_color: #fff) { text-shadow: $shadow_x $shadow_y $shadow_rad $shadow_color; } /** * Deprecated * Vendor prefix no longer required. */ @mixin vertical_gradient($from: #000, $to: #fff) { background-color: $from; background: -webkit-linear-gradient($from, $to); } /** * Deprecated * Vendor prefix no longer required. */ @mixin transition($selector: all, $animation: ease-in-out, $duration: 0.2s) { transition: $selector $animation $duration; } /** * Deprecated * Use bourbon mixin instead `@include transform(scale(1.5));` */ @mixin scale($ratio: 1.5) { -webkit-transform: scale($ratio); transform: scale($ratio); } /** * Deprecated * Use bourbon mixin instead `@include box-sizing(border-box);` */ @mixin borderbox() { box-sizing: border-box; } @mixin darkorlighttextshadow($a, $opacity: 0.8) { @if lightness($a) >= 65% { @include text_shadow(0, -1px, 0, rgba(0, 0, 0, $opacity)); } @else { @include text_shadow(0, 1px, 0, rgba(255, 255, 255, $opacity)); } } /** * Objects */ @mixin menu() { @include clearfix(); li { display: inline-block; } } @mixin mediaright() { @include clearfix(); img { float: right; height: auto; } } @mixin medialeft() { @include clearfix(); img { float: right; height: auto; } } @mixin ir() { display: block; text-indent: -9999px; position: relative; height: 1em; width: 1em; } @mixin icon( $glyph: '\e001' ) { font-family: 'Kkart'; speak: none; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; margin: 0; text-indent: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; text-align: center; content: $glyph; } @mixin icon_dashicons( $glyph: '\f333' ) { font-family: 'Dashicons'; speak: none; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; margin: 0; text-indent: 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; text-align: center; content: $glyph; } @mixin iconbefore( $glyph: '\e001' ) { font-family: 'Kkart'; speak: none; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; margin-right: 0.618em; content: $glyph; text-decoration: none; } @mixin iconbeforedashicons( $glyph: '\f333' ) { font-family: 'Dashicons'; speak: none; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; content: $glyph; text-decoration: none; } @mixin iconafter( $glyph: '\e001' ) { font-family: 'Kkart'; speak: none; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; margin-left: 0.618em; content: $glyph; text-decoration: none; } @mixin loader() { &::before { height: 1em; width: 1em; display: block; position: absolute; top: 50%; left: 50%; margin-left: -0.5em; margin-top: -0.5em; content: ''; animation: spin 1s ease-in-out infinite; background: url('../images/icons/loader.svg') center center; background-size: cover; line-height: 1; text-align: center; font-size: 2em; color: rgba(#000, 0.75); } } @mixin inversebuttoncolors { background-color: transparent !important; color: var(--button--color-text-hover) !important; &:hover { background-color: var(--button--color-background) !important; color: var(--button--color-text) !important; text-decoration: none !important; } }
Upload File
Create Folder