first upload all files
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
.alert {
|
||||
font-size: 16px;
|
||||
position: fixed;
|
||||
right: 15px;
|
||||
bottom: 15px;
|
||||
display: flex;
|
||||
margin: 0 0 0 15px;
|
||||
padding: 20px 64px 20px 28px;
|
||||
align-items: center;
|
||||
border: none;
|
||||
border-left: 3px solid;
|
||||
border-radius: $radius-default;
|
||||
|
||||
> i {
|
||||
font-size: 20px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.close {
|
||||
font-size: 16px;
|
||||
top: 50%;
|
||||
right: 17px;
|
||||
padding: 10px;
|
||||
opacity: 1;
|
||||
transform: translateY(-50%);
|
||||
|
||||
&:hover {
|
||||
> i {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
|
||||
> i {
|
||||
color: $color-gray-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.alert-success {
|
||||
color: $color-green;
|
||||
background: #e8f7f3;
|
||||
border-color: $color-green;
|
||||
}
|
||||
|
||||
.alert-danger {
|
||||
color: $color-red;
|
||||
background: #fbebea;
|
||||
border-color: $color-red;
|
||||
}
|
||||
|
||||
.alert-info {
|
||||
color: $color-info;
|
||||
background: #e2ecf7;
|
||||
border-color: $color-info;
|
||||
}
|
||||
|
||||
.alert-warning {
|
||||
color: $color-yellow;
|
||||
background: #fef5ea;
|
||||
border-color: $color-yellow;
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
.badge {
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
min-width: 120px;
|
||||
display: inline-block;
|
||||
padding: 10px 15px;
|
||||
text-align: center;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.badge-success {
|
||||
color: $color-green;
|
||||
background: #edf9f6;
|
||||
}
|
||||
|
||||
.badge-danger {
|
||||
color: $color-red;
|
||||
background: #fdf0ed;
|
||||
}
|
||||
|
||||
.badge-info {
|
||||
color: $color-info;
|
||||
background: #eef5fb;
|
||||
}
|
||||
|
||||
.badge-warning {
|
||||
color: $color-yellow;
|
||||
background: #fff9ef;
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
.breadcrumb {
|
||||
margin: 23px 0 0;
|
||||
padding: 0;
|
||||
background: $color-white;
|
||||
|
||||
ul {
|
||||
margin-left: -11px;
|
||||
|
||||
> li {
|
||||
font-size: 15px;
|
||||
line-height: 26px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
padding: 0 10px;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
content: '\f105';
|
||||
font-family: 'Line Awesome Free';
|
||||
font-weight: 900;
|
||||
font-size: 12px;
|
||||
right: -7px;
|
||||
top: 1px;
|
||||
color: $color-black;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
&:after {
|
||||
content: '';
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
color: $color-gray-dark;
|
||||
|
||||
&:after {
|
||||
color: $color-gray-dark;
|
||||
}
|
||||
}
|
||||
|
||||
> a {
|
||||
color: $color-black;
|
||||
|
||||
&:hover {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
.btn {
|
||||
font-family: $primary-font;
|
||||
font-size: 15px;
|
||||
line-height: 26px;
|
||||
position: relative;
|
||||
border: none;
|
||||
padding: 7px 24px;
|
||||
border-radius: $radius-default;
|
||||
transition: $transition-default;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none !important;
|
||||
outline: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
font-weight: 500;
|
||||
color: $color-white;
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
|
||||
&:focus {
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
}
|
||||
|
||||
&:active,
|
||||
&:hover,
|
||||
&:active:focus {
|
||||
background: $color-default-hover;
|
||||
background: var(--color-primary-hover);
|
||||
}
|
||||
|
||||
&:not(:disabled):not(.disabled):active,
|
||||
&:not(:disabled):not(.disabled).active {
|
||||
background: $color-default-hover;
|
||||
background: var(--color-primary-hover);
|
||||
}
|
||||
|
||||
&:disabled,
|
||||
&.disabled,
|
||||
&[disabled] {
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:hover:focus {
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-default {
|
||||
font-weight: 500;
|
||||
padding: 6px 24px;
|
||||
background: transparent;
|
||||
border: 1px solid $color-default;
|
||||
border: 1px solid var(--color-primary);
|
||||
|
||||
&:active,
|
||||
&:hover,
|
||||
&:active:focus {
|
||||
color: $color-white;
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
}
|
||||
|
||||
&.disabled,
|
||||
&[disabled] {
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:hover:focus {
|
||||
color: $color-black;
|
||||
background: transparent !important;
|
||||
|
||||
&.btn-loading {
|
||||
&:after {
|
||||
border-color: $color-default;
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-loading {
|
||||
&:after {
|
||||
border-color: $color-default;
|
||||
border-color: var(--color-primary);
|
||||
}
|
||||
|
||||
&:active,
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:hover:focus {
|
||||
&:after {
|
||||
border-color: $color-white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-lg {
|
||||
margin-top: 5px;
|
||||
padding: 12px 50px;
|
||||
}
|
||||
|
||||
.btn-remove {
|
||||
font-size: 15px;
|
||||
color: $color-black;
|
||||
background: transparent;
|
||||
border: none;
|
||||
transition: $transition-default;
|
||||
|
||||
&:hover {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
.is-countdown {
|
||||
border: none;
|
||||
background: transparent;
|
||||
|
||||
.countdown-row {
|
||||
display: flex;
|
||||
padding: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.countdown-show4 {
|
||||
.countdown-section {
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.countdown-section {
|
||||
position: relative;
|
||||
float: none;
|
||||
}
|
||||
|
||||
.countdown-amount {
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
display: flex;
|
||||
margin: 0 auto 26px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.countdown-period {
|
||||
position: absolute;
|
||||
font-size: 12px;
|
||||
line-height: 22px;
|
||||
left: 50%;
|
||||
bottom: 0;
|
||||
color: $color-gray;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
.nice-select {
|
||||
height: auto;
|
||||
display: inline-block;
|
||||
float: none;
|
||||
border: none;
|
||||
|
||||
&:after {
|
||||
border: none;
|
||||
}
|
||||
|
||||
&.form-control {
|
||||
color: $color-black;
|
||||
padding: 12px 30px 12px 20px;
|
||||
border: 1px solid $color-gray-lite;
|
||||
|
||||
&.arrow-black {
|
||||
background-position: right 10px center;
|
||||
}
|
||||
}
|
||||
|
||||
&.right {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.list {
|
||||
min-width: 190px;
|
||||
margin-top: 1px;
|
||||
padding: 19px 0 16px;
|
||||
border-radius: $radius-default;
|
||||
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
|
||||
transform: scale(0.8);
|
||||
z-index: 9;
|
||||
transition: all $transition-default cubic-bezier(0.5, 0, 0, 1.25);
|
||||
}
|
||||
|
||||
.option {
|
||||
line-height: 36px;
|
||||
padding: 0 30px;
|
||||
|
||||
&:hover {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
background: $color-white;
|
||||
}
|
||||
|
||||
&.focus {
|
||||
background: $color-white;
|
||||
}
|
||||
|
||||
&.selected {
|
||||
font-weight: 400;
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
|
||||
&.focus {
|
||||
background: $color-white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,214 @@
|
||||
.form-group {
|
||||
margin-bottom: 20px;
|
||||
|
||||
label {
|
||||
font-weight: 500;
|
||||
margin-bottom: 9px;
|
||||
|
||||
> span {
|
||||
margin-left: 4px;
|
||||
color: $color-red;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-control {
|
||||
font-size: 14px;
|
||||
height: 45px;
|
||||
padding: 10px 15px;
|
||||
border-color: $color-gray-lite;
|
||||
border-radius: $radius-default;
|
||||
transition: $transition-default;
|
||||
|
||||
&:focus {
|
||||
border-color: $color-default;
|
||||
border-color: var(--color-primary);
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
select {
|
||||
border: none;
|
||||
|
||||
&.arrow-black {
|
||||
background-position: right 10px center;
|
||||
}
|
||||
}
|
||||
|
||||
textarea {
|
||||
&.form-control {
|
||||
transition: border $transition-default, resize 0ms;
|
||||
}
|
||||
}
|
||||
|
||||
.form-check {
|
||||
padding: 0;
|
||||
|
||||
label {
|
||||
font-weight: 400;
|
||||
color: $color-gray;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
margin: 0;
|
||||
display: none;
|
||||
|
||||
&:checked + label,
|
||||
&:not(:checked) + label {
|
||||
position: relative;
|
||||
padding-left: 28px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&:checked + label:before,
|
||||
&:not(:checked) + label:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 1px;
|
||||
width: 18px;
|
||||
height: 17px;
|
||||
border: 1px solid $border-color;
|
||||
border-radius: $radius-default;
|
||||
transition: $transition-default;
|
||||
}
|
||||
|
||||
&:checked + label:after,
|
||||
&:not(:checked) + label:after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
top: 5px;
|
||||
left: 4px;
|
||||
height: 6px;
|
||||
width: 10px;
|
||||
border: 2px solid;
|
||||
border-color: $color-default;
|
||||
border-color: var(--color-primary);
|
||||
/*rtl:begin:ignore*/
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
transform: rotate(-45deg) scale(0);
|
||||
/*rtl:end:ignore*/
|
||||
transition: $transition-default;
|
||||
}
|
||||
|
||||
&:not(:checked) + label:after {
|
||||
opacity: 0;
|
||||
transform: rotate(-45deg) scale(0) #{'/*rtl:ignore*/'};
|
||||
}
|
||||
|
||||
&:checked + label:after {
|
||||
opacity: 1;
|
||||
transform: rotate(-45deg) scale(1) #{'/*rtl:ignore*/'};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-radio {
|
||||
padding: 0;
|
||||
|
||||
label {
|
||||
font-weight: 400;
|
||||
color: $color-gray;
|
||||
}
|
||||
|
||||
input[type="radio"] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
margin: 0;
|
||||
display: none;
|
||||
|
||||
&:checked + label,
|
||||
&:not(:checked) + label {
|
||||
position: relative;
|
||||
padding-left: 28px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
&:checked + label:before,
|
||||
&:not(:checked) + label:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 2px;
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
border: 1px solid $border-color;
|
||||
border-radius: 50%;
|
||||
transition: $transition-default;
|
||||
}
|
||||
|
||||
&:checked + label:after,
|
||||
&:not(:checked) + label:after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
top: 7px;
|
||||
left: 5px;
|
||||
height: 7px;
|
||||
width: 7px;
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
border-radius: 50%;
|
||||
transform: scale(0);
|
||||
transition: $transition-default;
|
||||
}
|
||||
|
||||
&:not(:checked) + label:after {
|
||||
opacity: 0;
|
||||
transform: scale(0);
|
||||
}
|
||||
|
||||
&:checked + label:after {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-check-label {
|
||||
> a {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
|
||||
&:hover {
|
||||
color: $color-default-hover;
|
||||
color: var(--color-primary-hover);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.has-error {
|
||||
.form-control {
|
||||
border-color: $color-red;
|
||||
|
||||
&:focus {
|
||||
border-color: $color-red;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.error-message {
|
||||
line-height: 20px;
|
||||
display: block;
|
||||
margin: 4px 0 -5px;
|
||||
color: $color-red;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
color: $color-gray-dark !important;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
color: $color-gray-dark !important;
|
||||
}
|
||||
|
||||
::-ms-input-placeholder {
|
||||
color: $color-gray-dark !important;
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
.loading {
|
||||
position: relative;
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: $color-white-transparent;
|
||||
border-radius: $radius-default;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
border-radius: 50%;
|
||||
border: 3px solid $color-default;
|
||||
border: 3px solid var(--color-primary);
|
||||
border-top-color: transparent !important;
|
||||
z-index: 3;
|
||||
animation: loader-spin 800ms infinite linear;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-loading {
|
||||
color: transparent !important;
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
border: 2px solid $color-white;
|
||||
border-radius: 50%;
|
||||
border-top-color: transparent !important;
|
||||
animation: loader-spin 800ms infinite linear;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes loader-spin {
|
||||
0% {
|
||||
transform: translate(-50%, -50%) rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(-50%, -50%) rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes tab-loader {
|
||||
0% {
|
||||
left: 0;
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
50% {
|
||||
left: calc(100% - 20px);
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
100% {
|
||||
left: 0;
|
||||
width: 20px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
.mega-menu {
|
||||
> .multi-level {
|
||||
.sub-menu {
|
||||
> li {
|
||||
&:hover {
|
||||
> a {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
> .sub-menu {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
> .sub-menu {
|
||||
position: absolute;
|
||||
width: 175px;
|
||||
padding: 12px 0 10px;
|
||||
background: $color-white;
|
||||
border-radius: $radius-default;
|
||||
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
z-index: 1;
|
||||
transition: $transition-default;
|
||||
|
||||
> li {
|
||||
> a {
|
||||
font-size: 14px;
|
||||
line-height: 29px;
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 0 36px 0 19px;
|
||||
color: $color-gray;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
> i {
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
right: 18px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .fluid-menu {
|
||||
position: relative;
|
||||
|
||||
&:hover {
|
||||
> .fluid-menu-wrap {
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
}
|
||||
|
||||
> .fluid-menu-wrap {
|
||||
position: absolute;
|
||||
width: 720px;
|
||||
background: $color-white;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right bottom;
|
||||
border-radius: $radius-default;
|
||||
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
z-index: 1;
|
||||
transition: $transition-default;
|
||||
}
|
||||
}
|
||||
|
||||
.fluid-menu-content {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-start;
|
||||
padding: 20px 10px 0;
|
||||
|
||||
.fluid-menu-list {
|
||||
flex: 0 0 33.33333333333333%;
|
||||
width: 33.33333333333333%;
|
||||
margin-bottom: 15px;
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.fluid-menu-title {
|
||||
font-size: 15px;
|
||||
line-height: 22px;
|
||||
margin-bottom: 7px;
|
||||
|
||||
> a {
|
||||
color: $color-black;
|
||||
|
||||
&:hover {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.fluid-sub-menu-list {
|
||||
li {
|
||||
a {
|
||||
font-size: 13px;
|
||||
line-height: 29px;
|
||||
max-width: 100%;
|
||||
display: inline-block;
|
||||
color: $color-gray;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
|
||||
&:hover {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes menu-in-top {
|
||||
0% {
|
||||
transform: translateY(-15px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes menu-in-right {
|
||||
0% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(15px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes menu-in-bottom {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateY(15px);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes menu-in-left {
|
||||
0% {
|
||||
transform: translateX(-15px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
.modal {
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
.modal-dialog {
|
||||
margin: 15px auto;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
padding: 0;
|
||||
border: none;
|
||||
border-radius: $radius-default;
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding: 0;
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
.pagination {
|
||||
margin-right: -13px;
|
||||
justify-content: flex-end;
|
||||
|
||||
.page-item {
|
||||
&.active {
|
||||
.page-link {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
|
||||
&.disabled {
|
||||
.page-link {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
&:first-child,
|
||||
&:last-child {
|
||||
.page-link {
|
||||
padding: 8px 10px;
|
||||
|
||||
> i {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.page-link {
|
||||
font-weight: 500;
|
||||
line-height: 23px;
|
||||
margin: 0;
|
||||
padding: 8px 14px;
|
||||
color: $color-gray-dark;
|
||||
background: transparent;
|
||||
border: none;
|
||||
border-radius: $radius-default;
|
||||
|
||||
&:hover {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.rtl {
|
||||
.pagination {
|
||||
.page-item {
|
||||
&:first-child,
|
||||
&:last-child {
|
||||
.page-link {
|
||||
> i {
|
||||
transform: rotateY(180deg) #{'/*rtl:ignore*/'};
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: $lg) {
|
||||
.pagination {
|
||||
margin-right: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
.panel {
|
||||
margin-bottom: 50px;
|
||||
border-radius: $radius-default;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.panel-header {
|
||||
display: flex;
|
||||
padding: 20px 30px;
|
||||
background: $color-white-lite;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border: 1px solid $color-gray-lite;
|
||||
border-radius: $radius-default $radius-default 0 0;
|
||||
|
||||
> a {
|
||||
color: $color-gray-dark;
|
||||
|
||||
&:hover {
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
border: 1px solid $color-gray-lite;
|
||||
border-top: none;
|
||||
border-radius: 0 0 $radius-default $radius-default;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.custom-scrollbar {
|
||||
overflow-y: auto;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: $color-gray-lite transparent;
|
||||
|
||||
&::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-track,
|
||||
&::-webkit-scrollbar-track-piece {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&::-webkit-scrollbar-thumb,
|
||||
&::-webkit-scrollbar-thumb:vertical {
|
||||
border-radius: $radius-default;
|
||||
background: $color-gray-lite;
|
||||
|
||||
&:hover {
|
||||
background: $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
.table-bordered {
|
||||
td {
|
||||
border-color: $color-gray-lite;
|
||||
}
|
||||
}
|
||||
|
||||
.table {
|
||||
thead {
|
||||
th {
|
||||
border-bottom: 1px solid $color-gray-lite;
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
tr {
|
||||
&:first-child {
|
||||
td {
|
||||
padding-top: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 500;
|
||||
padding: 15px 30px;
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 20px 30px;
|
||||
border-color: $color-gray-lite;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,131 @@
|
||||
%nav-link {
|
||||
font-size: 15px;
|
||||
line-height: 26px;
|
||||
position: relative;
|
||||
padding: 13px 3px;
|
||||
color: $color-gray-dark;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
transition: $transition-default;
|
||||
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 50%;
|
||||
bottom: 0;
|
||||
height: 1px;
|
||||
width: 0;
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
transform: translateX(-50%);
|
||||
transition: 150ms ease-in-out;
|
||||
}
|
||||
|
||||
&:after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
left: 50%;
|
||||
bottom: -7px;
|
||||
height: 8px;
|
||||
width: 15px;
|
||||
background: $color-default;
|
||||
background: var(--color-primary);
|
||||
border-bottom-left-radius: 12px;
|
||||
border-bottom-right-radius: 12px;
|
||||
opacity: 0;
|
||||
transform: translateX(-50%);
|
||||
transition: 150ms ease-in-out;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
&:before {
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
font-weight: 500;
|
||||
color: $color-default;
|
||||
color: var(--color-primary);
|
||||
|
||||
&:before {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
&:after {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
&.loading {
|
||||
pointer-events: none;
|
||||
|
||||
&:before {
|
||||
left: 0;
|
||||
top: auto;
|
||||
transform: none;
|
||||
animation: tab-loader 1.2s ease infinite;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.nav-tabs {
|
||||
border: none;
|
||||
|
||||
.nav-link {
|
||||
@extend %nav-link;
|
||||
}
|
||||
}
|
||||
|
||||
.tabs:not(.featured-categories-tabs) {
|
||||
list-style: none;
|
||||
margin-bottom: -1px;
|
||||
|
||||
.tab-item {
|
||||
@extend %nav-link;
|
||||
|
||||
float: left;
|
||||
margin-left: 30px;
|
||||
cursor: pointer;
|
||||
transition: none;
|
||||
|
||||
&:first-child {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
&.active {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
.slick-list {
|
||||
margin: 0 -15px -50px;
|
||||
padding: 30px 0 50px;
|
||||
|
||||
.slick-track {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
}
|
||||
}
|
||||
|
||||
.slick-dots {
|
||||
position: relative;
|
||||
bottom: auto;
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: $lg) {
|
||||
.tab-content {
|
||||
.slick-list {
|
||||
margin: 0 -8px -50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
@import "~vue-toast-notification/dist/theme-default";
|
||||
|
||||
.notices {
|
||||
.toast {
|
||||
max-width: 768px;
|
||||
opacity: 1;
|
||||
min-height: 3.5em;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user