initial
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
/* Accordions */
|
||||
|
||||
.accordion {
|
||||
.card {
|
||||
margin-bottom: 10px;
|
||||
border: 1px solid $border-color;
|
||||
.card-header {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
padding:0;
|
||||
font-size: 14px;
|
||||
a {
|
||||
display: block;
|
||||
padding:.75rem 1.70rem .75rem 1.25rem;
|
||||
color: theme-color(dark);
|
||||
text-decoration: none;
|
||||
font-size: inherit;
|
||||
position: relative;
|
||||
@include transition-duration(0.5s);
|
||||
transition-property: border-color;
|
||||
-webkit-transition-property: border-color;
|
||||
&:before{
|
||||
font-family:"Material Design Icons";
|
||||
position: absolute;
|
||||
right: 7px;
|
||||
top: 10px;
|
||||
font-size: 20px;
|
||||
display: block;
|
||||
color: $black;
|
||||
}
|
||||
&[aria-expanded="true"]{
|
||||
&:before{
|
||||
content: "\F140";
|
||||
}
|
||||
}
|
||||
&[aria-expanded="false"]{
|
||||
&:before{
|
||||
content: "\F143";
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bg-success,&.bg-warning,&.bg-danger,&.bg-primary,&.bg-dark{
|
||||
a{
|
||||
color: $white;
|
||||
&:before{
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.card-body {
|
||||
font-size: 0.88rem;
|
||||
padding:12px 20px 26px 20px;
|
||||
i {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
}
|
||||
&.bg-success,&.bg-danger,&.bg-primary,&.bg-info,&.bg-warning,&.bg-dark{
|
||||
color: $white;
|
||||
.card-header{
|
||||
color: $white;
|
||||
border:none;
|
||||
&:before{
|
||||
color: $white;
|
||||
}
|
||||
a{
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* inverse buttons */
|
||||
@each $color, $value in $theme-colors {
|
||||
.accordion {
|
||||
.accordion-inverse-#{$color} {
|
||||
@include accordion-inverse-variant($value);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
/* Badges */
|
||||
|
||||
.badge {
|
||||
border-radius: .25rem;
|
||||
font-size: .75rem;
|
||||
font-weight: initial;
|
||||
line-height: 1;
|
||||
padding: .25rem 0.375rem;
|
||||
font-family: $type1-semibold;
|
||||
&.badge-pill {
|
||||
border-radius: 10rem;
|
||||
}
|
||||
&.badge-fw{
|
||||
min-width: 70px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*Badge variations*/
|
||||
@each $color, $value in $theme-colors {
|
||||
.badge-#{$color} {
|
||||
@include badge-variations($value);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*Badge outlined variations*/
|
||||
@each $color, $value in $theme-colors {
|
||||
.badge-outline-#{$color} {
|
||||
@include badge-outline-variations($value);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
/* Bootstrap Alerts */
|
||||
|
||||
.alert {
|
||||
font-size: $default-font-size;
|
||||
i {
|
||||
font-size: 1.25rem;
|
||||
margin-right: 1.25rem;
|
||||
vertical-align: middle;
|
||||
line-height: .5;
|
||||
}
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.alert-#{$color} {
|
||||
@include alert-variant(rgba(theme-color($color), .2), theme-color-level($color, 1), theme-color-level($color, 3));
|
||||
}
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.alert-fill-#{$color} {
|
||||
@include alert-variant(theme-color($color), theme-color($color), color(white));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
/* Bootstrap Progress */
|
||||
|
||||
.progress {
|
||||
@include border-radius(3px);
|
||||
height: 8px;
|
||||
.progress-bar {
|
||||
@include border-radius(3px);
|
||||
}
|
||||
|
||||
&.progress-sm{
|
||||
height: 0.375rem;
|
||||
}
|
||||
&.progress-md {
|
||||
height: 8px;
|
||||
}
|
||||
&.progress-lg {
|
||||
height: 15px;
|
||||
}
|
||||
&.progress-xl {
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
/* Breadcrumbs */
|
||||
|
||||
.breadcrumb {
|
||||
border: $border-width solid $border-color;
|
||||
|
||||
.breadcrumb-item {
|
||||
font-size: $breadcrumb-font-size;
|
||||
|
||||
&.active {}
|
||||
}
|
||||
|
||||
&.breadcrumb-custom {
|
||||
padding: $breadcrumb-custom-padding-y $breadcrumb-custom-padding-x;
|
||||
border-color: $breadcrumb-item-bg;
|
||||
.breadcrumb-item {
|
||||
font-size: $breadcrumb-font-size;
|
||||
background: $breadcrumb-item-bg;
|
||||
padding: $breadcrumb-custom-item-padding-y $breadcrumb-custom-item-padding-x;
|
||||
color: $breadcrumb-custom-item-color;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
&:last-child {
|
||||
background: transparent;
|
||||
}
|
||||
&:before{
|
||||
content: "";
|
||||
}
|
||||
a{
|
||||
position: relative;
|
||||
color: inherit;
|
||||
border: 1px solid $breadcrumb-item-bg;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
&:before,&:after{
|
||||
position: absolute;
|
||||
top: -9px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
content: "";
|
||||
border-top: 21px solid transparent;
|
||||
border-bottom: 21px solid transparent;
|
||||
}
|
||||
&:before{
|
||||
right: -22px;
|
||||
z-index: 3;
|
||||
border-left-color: $breadcrumb-item-bg;
|
||||
border-left-style: solid;
|
||||
border-left-width: 12px;
|
||||
}
|
||||
&:after{
|
||||
border-top: 21px solid transparent;
|
||||
border-bottom: 22px solid transparent;
|
||||
border-left: 12px solid $white;
|
||||
top: -9px;
|
||||
right: -23px;
|
||||
}
|
||||
}
|
||||
span{
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
&.active {}
|
||||
}
|
||||
}
|
||||
|
||||
&.bg-success,&.bg-dark,&.bg-danger,&.bg-warning,&.bg-primary,&.bg-info{
|
||||
border: none;
|
||||
.breadcrumb-item{
|
||||
color: $white;
|
||||
&:before{
|
||||
color: inherit;
|
||||
}
|
||||
a,span{
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* inverse breadcrumb */
|
||||
@each $color, $value in $theme-colors {
|
||||
.bg-inverse-#{$color} {
|
||||
@include breadcrumb-inverse-variant($value);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
/* Buttons */
|
||||
|
||||
.btn {
|
||||
font-size: $btn-font-size;
|
||||
line-height: 1;
|
||||
font-family: $type1-regular;
|
||||
i{
|
||||
margin-right: .3125rem;
|
||||
}
|
||||
.btn-label {
|
||||
&:before {
|
||||
font-size: 1rem;
|
||||
line-height: 5px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
&.btn-label-left {
|
||||
margin-right: 5px;
|
||||
}
|
||||
&.btn-label-right {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
&.btn-rounded{
|
||||
@include border-radius(50px);
|
||||
}
|
||||
&.btn-fw{
|
||||
min-width: $button-fixed-width;
|
||||
}
|
||||
&.icon-btn{
|
||||
i{
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
&.social-btn{
|
||||
padding: $social-btn-padding;
|
||||
i{
|
||||
margin-right: 0;
|
||||
font-size: $social-btn-icon-size;
|
||||
}
|
||||
}
|
||||
&.btn-sm {
|
||||
font-size: $btn-font-size-sm;
|
||||
}
|
||||
&.btn-lg {
|
||||
font-size: $btn-font-size-lg;
|
||||
}
|
||||
&.btn-xs {
|
||||
padding: $btn-padding-y-xs $btn-padding-x-xs;
|
||||
font-size: $btn-font-size-xs;
|
||||
}
|
||||
&.btn-danger,&.btn-info,&.btn-warning {
|
||||
color: $white;
|
||||
}
|
||||
&.btn-light {
|
||||
color: $black;
|
||||
border-color: lighten($black, 85%);
|
||||
}
|
||||
&.btn-outline-light {
|
||||
@include button-outline-variant(theme-color(light), color(white));
|
||||
}
|
||||
&.btn-outline-secondary {
|
||||
color: rgba($black, 0.5);
|
||||
}
|
||||
&.btn-inverse-secondary{
|
||||
background-color: rgba(theme-color(secondary), 0.5);
|
||||
color: rgba($black, 0.5);
|
||||
&:hover{
|
||||
color: rgba($black, 0.5);
|
||||
}
|
||||
}
|
||||
&.btn-inverse-light{
|
||||
background-color: $white;
|
||||
color: rgba($black, 0.5);
|
||||
border-color: lighten($black, 85%);
|
||||
&:hover{
|
||||
color: rgba($black, 0.5);
|
||||
border-color: lighten($black, 85%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-group{
|
||||
border: $border-width solid $border-color;
|
||||
@include border-radius($btn-border-radius);
|
||||
.btn{
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
border-left: none;
|
||||
&:last-child{
|
||||
border-right: none;
|
||||
}
|
||||
&.btn-primary{
|
||||
border-color: darken(theme-color(primary),3%);
|
||||
}
|
||||
&.btn-secondary{
|
||||
border-color: darken(theme-color(secondary),3%);
|
||||
}
|
||||
&.btn-info{
|
||||
border-color: darken(theme-color(info),3%);
|
||||
}
|
||||
&.btn-warning{
|
||||
border-color: darken(theme-color(warning),3%);
|
||||
}
|
||||
&.btn-success{
|
||||
border-color: darken(theme-color(success),3%);
|
||||
}
|
||||
&.btn-danger{
|
||||
border-color: darken(theme-color(danger),3%);
|
||||
}
|
||||
&.btn-dark{
|
||||
border-color: darken(theme-color(dark),3%);
|
||||
}
|
||||
&.btn-light{
|
||||
border-color: darken(theme-color(light),3%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.btn-toolbar {
|
||||
.btn-group {
|
||||
+.btn-group {
|
||||
@extend .ml-2;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*social buttons*/
|
||||
@each $color, $value in $social-colors {
|
||||
.btn-#{$color} {
|
||||
@include social-button(social-color($color));
|
||||
}
|
||||
}
|
||||
/* inverse buttons */
|
||||
@each $color, $value in $theme-colors {
|
||||
.btn-inverse-#{$color} {
|
||||
@include button-inverse-variant($value);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
/* Cards */
|
||||
|
||||
.card {
|
||||
border: 0;
|
||||
@include border-radius(2px);
|
||||
.card-body {
|
||||
padding: $card-padding-y $card-padding-x;
|
||||
+ .card-body {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
&.card-outline-success{
|
||||
border: 1px solid theme-color("success");
|
||||
}
|
||||
&.card-outline-primary{
|
||||
border: 1px solid theme-color("primary");
|
||||
}
|
||||
&.card-outline-warning{
|
||||
border: 1px solid theme-color("warning");
|
||||
}
|
||||
&.card-outline-danger{
|
||||
border: 1px solid theme-color("danger");
|
||||
}
|
||||
&.card-rounded{
|
||||
@include border-radius(5px);
|
||||
}
|
||||
|
||||
&.card-faded {
|
||||
background: #b5b0b2;
|
||||
border-color: #b5b0b2;
|
||||
}
|
||||
&.card-circle-progress {
|
||||
color: $white;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.card-inverse-#{$color} {
|
||||
@include card-inverse-variant(rgba(theme-color($color), .2), theme-color-level($color, 1), theme-color-level($color, 3));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,304 @@
|
||||
/* Checkboxes and Radios */
|
||||
|
||||
.form-check,
|
||||
.form-radio {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
.form-check-label {
|
||||
display: block;
|
||||
padding-left: 30px;
|
||||
.rtl & {
|
||||
padding-left: 0;
|
||||
padding-right: 30px;
|
||||
}
|
||||
line-height: 1.5;
|
||||
|
||||
input {
|
||||
position: absolute;
|
||||
margin-left: -20px;
|
||||
margin-top: 4px\9;
|
||||
top: 0;
|
||||
left: 0;
|
||||
.rtl & {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
z-index: 1;
|
||||
cursor: pointer;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-check {
|
||||
padding-left: 0;
|
||||
label {
|
||||
font-size: $default-font-size;
|
||||
line-height: 1.5;
|
||||
|
||||
input {
|
||||
&:checked {
|
||||
+.input-helper {
|
||||
&:before {
|
||||
background-color: color(white);
|
||||
}
|
||||
|
||||
&:after {
|
||||
width: 18px;
|
||||
opacity: 1;
|
||||
line-height: 18px;
|
||||
filter: alpha(opacity=100);
|
||||
-webkit-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
-o-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
+ .input-helper {
|
||||
&:before {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
|
||||
&:checked {
|
||||
+ .input-helper {
|
||||
&:after {
|
||||
color: $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.input-helper {
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 2px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 2px;
|
||||
left: 0;
|
||||
.rtl & {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
border: 2px solid $border-color;
|
||||
-webkit-transition: all;
|
||||
-o-transition: all;
|
||||
transition: all;
|
||||
transition-duration: 0s;
|
||||
-webkit-transition-duration: 250ms;
|
||||
transition-duration: 250ms;
|
||||
}
|
||||
|
||||
&:after {
|
||||
-webkit-transition: all;
|
||||
-o-transition: all;
|
||||
transition: all;
|
||||
transition-duration: 0s;
|
||||
-webkit-transition-duration: 250ms;
|
||||
transition-duration: 250ms;
|
||||
font-family: Material Design Icons;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
-webkit-transform: scale(0);
|
||||
-ms-transform: scale(0);
|
||||
-o-transform: scale(0);
|
||||
transform: scale(0);
|
||||
content: '\F12C';
|
||||
position: absolute;
|
||||
font-size: .9375rem;
|
||||
font-weight: bold;
|
||||
left: 0;
|
||||
.rtl & {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
top: 2px;
|
||||
color: theme-color(info);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.form-check-flat {
|
||||
label {
|
||||
input {
|
||||
&:checked {
|
||||
+.input-helper {
|
||||
&:before {
|
||||
background-color: theme-color(success);
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
+ .input-helper {
|
||||
&:after {
|
||||
color: color(white);
|
||||
}
|
||||
|
||||
&:before {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
|
||||
&:checked {
|
||||
+ .input-helper {
|
||||
&:before {
|
||||
background: color(gray-lightest);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.input-helper {
|
||||
&:before {
|
||||
border: 2px solid $border-color;
|
||||
}
|
||||
|
||||
&:after {
|
||||
color: color(white);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.form-radio {
|
||||
label {
|
||||
input {
|
||||
+.input-helper {
|
||||
&:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
top: 2px;
|
||||
left: 0;
|
||||
.rtl & {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
border: 2px solid $border-color;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 50%;
|
||||
-webkit-transition: all;
|
||||
-o-transition: all;
|
||||
transition: all;
|
||||
transition-duration: 0s;
|
||||
-webkit-transition-duration: 250ms;
|
||||
transition-duration: 250ms;
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: theme-color(danger);
|
||||
border-radius: 50%;
|
||||
top: 8px;
|
||||
left: 6px;
|
||||
.rtl & {
|
||||
left: auto;
|
||||
right: 6px;
|
||||
}
|
||||
-webkit-transition: all;
|
||||
-o-transition: all;
|
||||
transition: all;
|
||||
transition-duration: 0s;
|
||||
-webkit-transition-duration: 250ms;
|
||||
transition-duration: 250ms;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
-webkit-transform: scale(0);
|
||||
-ms-transform: scale(0);
|
||||
-o-transform: scale(0);
|
||||
transform: scale(0);
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
|
||||
&:checked {
|
||||
+.input-helper {
|
||||
&:before {
|
||||
background-color: $white;
|
||||
border: 2px solid $border-color;
|
||||
}
|
||||
|
||||
&:after {
|
||||
opacity: 1;
|
||||
line-height: 1.5;
|
||||
filter: alpha(opacity=100);
|
||||
-webkit-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
-o-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&:disabled {
|
||||
+ .input-helper {
|
||||
&:before {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
|
||||
&:checked {
|
||||
+ .input-helper {
|
||||
&:before {
|
||||
background-color: $white;
|
||||
border-color: $border-color;
|
||||
}
|
||||
|
||||
&:after {
|
||||
background-color: $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.form-radio-flat {
|
||||
label {
|
||||
input {
|
||||
&:checked {
|
||||
+.input-helper {
|
||||
&:before {
|
||||
background: theme-color(success);
|
||||
border-color: theme-color(success);
|
||||
}
|
||||
|
||||
&:after {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
top: 2px;
|
||||
left: -2px;
|
||||
.rtl & {
|
||||
left: auto;
|
||||
right: -2px;
|
||||
}
|
||||
color: color(white);
|
||||
background: none;
|
||||
content: '\F12C';
|
||||
font-family: Material Design Icons;
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
/* Dropdowns */
|
||||
|
||||
.dropdown-menu {
|
||||
font-size: $default-font-size;
|
||||
.dropdown-item {
|
||||
&:active {
|
||||
background: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
/* Forms */
|
||||
|
||||
.input-group-text {
|
||||
background: color(white);
|
||||
color: $input-placeholder-color;
|
||||
width: auto;
|
||||
padding: $input-padding-y .75rem;
|
||||
border-color: $border-color;
|
||||
}
|
||||
.form-control {
|
||||
border: 1px solid $border-color;
|
||||
font-family: $type1-regular;
|
||||
font-size: $input-font-size;
|
||||
padding: $input-padding-y .75rem;
|
||||
line-height: 14px;
|
||||
&.form-control-lg {
|
||||
padding: $input-padding-y-lg .75rem;
|
||||
}
|
||||
&.form-control-sm {
|
||||
padding: $input-padding-y-sm .75rem;
|
||||
}
|
||||
}
|
||||
|
||||
select {
|
||||
&.form-control {
|
||||
padding: .4375rem .75rem;
|
||||
}
|
||||
}
|
||||
.form-group {
|
||||
label {
|
||||
font-size: $default-font-size;
|
||||
line-height: 1;
|
||||
vertical-align: top;
|
||||
}
|
||||
&.has-danger {
|
||||
.form-control {
|
||||
border-color: theme-color(danger);
|
||||
}
|
||||
}
|
||||
.file-upload-default {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
}
|
||||
.file-upload-info {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.map-container{
|
||||
position: relative;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
display: block;
|
||||
padding: 35% 0;
|
||||
overflow: hidden;
|
||||
@include border-radius(5px);
|
||||
.google-map{
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
&.no-controls{
|
||||
.gmnoprint,.gm-style-cc{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
/* Icons */
|
||||
|
||||
.icons-list {
|
||||
border-left: 1px solid $border-color;
|
||||
border-bottom: 1px solid $border-color;
|
||||
>div {
|
||||
background: $white;
|
||||
border-top: 1px solid $border-color;
|
||||
border-right: 1px solid $border-color;
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
padding:15px 15px;
|
||||
font-family: $type1-regular;
|
||||
font-size: $default-font-size;
|
||||
|
||||
i {
|
||||
display: inline-block;
|
||||
font-size: 20px;
|
||||
width: 40px;
|
||||
text-align: left;
|
||||
color: theme-color(primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,116 @@
|
||||
/* Lists */
|
||||
|
||||
ul,
|
||||
ol,
|
||||
dl {
|
||||
padding-left: 1rem;
|
||||
font-size: $default-font-size;
|
||||
li {
|
||||
line-height: 1.8;
|
||||
}
|
||||
}
|
||||
|
||||
.list-ticked,
|
||||
.list-arrow,
|
||||
.list-star {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
li {
|
||||
padding-left: 1.5rem;
|
||||
&:before {
|
||||
font-family: "Material Design Icons";
|
||||
margin-left: -1.5rem;
|
||||
width: 1.5rem;
|
||||
margin-right: .5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-ticked {
|
||||
li {
|
||||
&:before {
|
||||
content: '\F12D';
|
||||
color: theme-color(danger);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-arrow {
|
||||
li {
|
||||
&:before {
|
||||
content: '\F142';
|
||||
color: theme-color(success);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.list-star {
|
||||
li {
|
||||
&:before {
|
||||
content: '\F4CE';
|
||||
color: theme-color(warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bullet-line-list {
|
||||
padding-left: 30px;
|
||||
position: relative;
|
||||
list-style-type: none;
|
||||
li {
|
||||
position: relative;
|
||||
&:before {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
left: -30px;
|
||||
top: 15px;
|
||||
border: 4px solid;
|
||||
margin-right: 15px;
|
||||
z-index: 2;
|
||||
background: color(white);
|
||||
}
|
||||
&:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
border-radius: 100%;
|
||||
}
|
||||
&:nth-child(6n+1) {
|
||||
&:before {
|
||||
border-color: theme-color(warning);
|
||||
}
|
||||
}
|
||||
&:nth-child(6n+2) {
|
||||
&:before {
|
||||
border-color: theme-color(primary);
|
||||
}
|
||||
}
|
||||
&:nth-child(6n+3) {
|
||||
&:before {
|
||||
border-color: theme-color(danger);
|
||||
}
|
||||
}
|
||||
&:nth-child(6n+4) {
|
||||
&:before {
|
||||
border-color: theme-color(info);
|
||||
}
|
||||
}
|
||||
&:nth-child(6n+5) {
|
||||
&:before {
|
||||
border-color: theme-color(success);
|
||||
}
|
||||
}
|
||||
&:nth-child(6n+6) {
|
||||
&:before {
|
||||
border-color: theme-color(secondary);
|
||||
}
|
||||
}
|
||||
}
|
||||
&:after {
|
||||
content: "";
|
||||
border: 1px solid $border-color;
|
||||
position: absolute;
|
||||
top: 30px;
|
||||
bottom: 0;
|
||||
left: 7px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
/* Modals */
|
||||
|
||||
.modal-open {
|
||||
padding-right: 0 !important; // resets the inline padding right added by Bootstrap
|
||||
}
|
||||
.modal{
|
||||
.modal-dialog{
|
||||
margin-top: calc(#{$navbar-height} + 30px);
|
||||
.modal-content{
|
||||
.modal-header{
|
||||
padding: $modal-header-padding-y $modal-header-padding-x;
|
||||
.close{
|
||||
span{
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
color: #6a6a6a;
|
||||
}
|
||||
}
|
||||
}
|
||||
.modal-body{
|
||||
padding: $modal-body-padding-y $modal-body-padding-x;
|
||||
}
|
||||
.modal-footer{
|
||||
padding: $modal-footer-padding-y $modal-footer-padding-x;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
/* Pagination */
|
||||
|
||||
.pagination{
|
||||
.page-item {
|
||||
.page-link {
|
||||
border-color: $border-color;
|
||||
color: color(black);
|
||||
font-size: .875rem;
|
||||
@include transition-duration(0.3s);
|
||||
&:focus{
|
||||
background: inherit;
|
||||
}
|
||||
i {
|
||||
&:before {
|
||||
font-size: inherit;
|
||||
line-height: 1;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.active,
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
.page-link {
|
||||
background: theme-color("primary");
|
||||
border-color: theme-color("primary");
|
||||
color: color(white);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.flat{
|
||||
.page-item{
|
||||
.page-link{
|
||||
border: none;
|
||||
@include border-radius(2px);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.separated{
|
||||
.page-item{
|
||||
margin-left: 2px;
|
||||
margin-right: 2px;
|
||||
&:first-child{
|
||||
margin-left: 0;
|
||||
}
|
||||
&:last-child{
|
||||
margin-right: 0;
|
||||
}
|
||||
.page-link{
|
||||
@include border-radius(2px);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.rounded{
|
||||
.page-item{
|
||||
.page-link{}
|
||||
&:first-child{
|
||||
.page-link{
|
||||
@include border-radius(25px 0 0 25px);
|
||||
}
|
||||
}
|
||||
&:last-child{
|
||||
.page-link{
|
||||
@include border-radius(0 25px 25px 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.rounded-flat{
|
||||
.page-item{
|
||||
margin-right: 3px;
|
||||
margin-left: 3px;
|
||||
.page-link{
|
||||
border: none;
|
||||
@include border-radius(50px);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
&.rounded-separated{
|
||||
.page-item{
|
||||
margin-left: 2px;
|
||||
margin-right: 2px;
|
||||
&:first-child{
|
||||
margin-left: 0;
|
||||
.page-link{
|
||||
@include border-radius(10px 0 0 10px);
|
||||
}
|
||||
}
|
||||
&:last-child{
|
||||
margin-right: 0;
|
||||
.page-link{
|
||||
@include border-radius(0 10px 10px 0);
|
||||
}
|
||||
}
|
||||
.page-link{
|
||||
@include border-radius(2px);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* pagination variations */
|
||||
@each $color, $value in $theme-colors {
|
||||
.pagination-#{$color} {
|
||||
@include pagination-variants($value);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
/* Popovers */
|
||||
|
||||
.popover-static-demo {
|
||||
.popover {
|
||||
width: 185px;
|
||||
position: relative;
|
||||
display: block;
|
||||
float: left;
|
||||
margin: 1rem .5rem;
|
||||
&.bs-popover-bottom-demo,
|
||||
&.bs-popover-top-demo {
|
||||
.arrow {
|
||||
left: 50%;
|
||||
}
|
||||
}
|
||||
&.bs-popover-left-demo,
|
||||
&.bs-popover-right-demo{
|
||||
.arrow {
|
||||
top: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.popover {
|
||||
z-index: 1029;
|
||||
&.bs-popover-top-demo {
|
||||
.arrow {
|
||||
&:before{
|
||||
border-top-color: $popover-arrow-color;
|
||||
}
|
||||
&:after{
|
||||
border-top-color: $popover-arrow-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bs-popover-right-demo{
|
||||
.arrow {
|
||||
&:before{
|
||||
border-right-color: $popover-arrow-color;
|
||||
}
|
||||
&:after{
|
||||
border-right-color: $popover-arrow-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bs-popover-bottom-demo{
|
||||
.arrow {
|
||||
&:before{
|
||||
border-bottom-color: $popover-arrow-color;
|
||||
}
|
||||
&:after{
|
||||
border-bottom-color: $popover-arrow-color;
|
||||
}
|
||||
}
|
||||
.popover-header {
|
||||
&:before {
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bs-popover-left-demo{
|
||||
.arrow {
|
||||
&:before{
|
||||
border-left-color: $popover-arrow-color;
|
||||
}
|
||||
&:after{
|
||||
border-left-color: $popover-arrow-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
.popover-header {
|
||||
font-size: .9375rem;
|
||||
border-bottom: 0;
|
||||
color: $white;
|
||||
}
|
||||
.popover-body{
|
||||
color: $text-muted;
|
||||
}
|
||||
&.left{
|
||||
.arrow{
|
||||
&:after{
|
||||
border-left-color: $popover-arrow-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.right{
|
||||
.arrow{
|
||||
&:after{
|
||||
border-right-color: $popover-arrow-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.popover-#{$color} {
|
||||
@include popover-variant(theme-color($color));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
/* Portfolio */
|
||||
.portfolio-grid{
|
||||
figure {
|
||||
position: relative;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
background: theme-color(warning);
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
@media (max-width: 767px) {
|
||||
width: 270px;
|
||||
}
|
||||
img {
|
||||
position: relative;
|
||||
display: block;
|
||||
min-height: 100%;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
opacity: 0.8;
|
||||
}
|
||||
figcaption {
|
||||
padding: 2em;
|
||||
color: $white;
|
||||
text-transform: uppercase;
|
||||
font-size: 1.25em;
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
&:before,
|
||||
&:after {
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
||||
&.effect-text-in {
|
||||
border-radius: .25rem;
|
||||
img,
|
||||
h4 {
|
||||
-webkit-transition: -webkit-transform 0.35s;
|
||||
transition: transform 0.35s;
|
||||
}
|
||||
img {
|
||||
-webkit-backface-visibility: hidden;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
h4,
|
||||
p {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 0;
|
||||
padding: 10px;
|
||||
margin-bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
p {
|
||||
text-transform: none;
|
||||
opacity: 0;
|
||||
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
||||
transition: opacity 0.35s, transform 0.35s;
|
||||
-webkit-transform: translate3d(0,50px,0);
|
||||
transform: translate3d(0,50px,0);
|
||||
}
|
||||
&:hover {
|
||||
img {
|
||||
-webkit-transform: translate3d(0,-80px,0);
|
||||
transform: translate3d(0,-80px,0);
|
||||
}
|
||||
h4 {
|
||||
-webkit-transform: translate3d(0,-100px,0);
|
||||
transform: translate3d(0,-100px,0);
|
||||
}
|
||||
p {
|
||||
opacity: 1;
|
||||
-webkit-transform: translate3d(0,0,0);
|
||||
transform: translate3d(0,0,0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,116 @@
|
||||
/* Preview */
|
||||
|
||||
.preview-list {
|
||||
.preview-item {
|
||||
@include display-flex;
|
||||
@include flex-direction(row);
|
||||
@include align-items(flex-start);
|
||||
padding: .75rem 1.5rem;
|
||||
font-size: .875rem;
|
||||
&:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
&:hover {
|
||||
background: $dropdown-link-hover-bg;
|
||||
}
|
||||
.form-check {
|
||||
margin-top: 8px;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
.preview-thumbnail {
|
||||
color: color(white);
|
||||
position: relative;
|
||||
img,
|
||||
.preview-icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 100%;
|
||||
}
|
||||
.preview-icon {
|
||||
padding: 6px;
|
||||
text-align: center;
|
||||
i {
|
||||
font-size: 1.125rem;
|
||||
}
|
||||
}
|
||||
.badge {
|
||||
border: 2px solid color(white);
|
||||
border-radius: 100%;
|
||||
bottom: 5px;
|
||||
display: block;
|
||||
height: 14px;
|
||||
left: -5px;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 14px;
|
||||
&.badge-online {
|
||||
@extend .badge-success;
|
||||
}
|
||||
&.badge-offline {
|
||||
@extend .badge-info;
|
||||
}
|
||||
&.badge-busy {
|
||||
@extend .badge-warning;
|
||||
}
|
||||
}
|
||||
}
|
||||
.preview-item-content {
|
||||
line-height: 1;
|
||||
padding-left: 15px;
|
||||
.rtl & {
|
||||
padding-left: 0;
|
||||
padding-right: 15px;
|
||||
}
|
||||
&:first-child {
|
||||
padding-left: 0;
|
||||
.rtl & {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin-bottom: 10px;
|
||||
.content-category {
|
||||
font-family: 'source-sans-pro-semibold', sans-serif;
|
||||
padding-right: 15px;
|
||||
border-right: 1px solid $border-color;
|
||||
@extend .text-muted;
|
||||
}
|
||||
}
|
||||
}
|
||||
.preview-actions {
|
||||
@include display-flex;
|
||||
@include flex-direction(row);
|
||||
i {
|
||||
width: 29px;
|
||||
color: color(gray-lightest);
|
||||
height: 29px;
|
||||
border: 2px solid color(gray-lightest);
|
||||
border-radius: 100%;
|
||||
padding: 3px 6px;
|
||||
display: inline-block;
|
||||
&:first-child {
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.comment-preview {
|
||||
.preview-item {
|
||||
padding: .87rem 0;
|
||||
&:first-child {
|
||||
padding-top: 0;
|
||||
}
|
||||
p {
|
||||
line-height: 27px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bordered {
|
||||
.preview-item {
|
||||
border-bottom: 1px solid $border-color;
|
||||
&:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
/* Pricing table */
|
||||
|
||||
.pricing-table{
|
||||
.pricing-card{
|
||||
.pricing-card-body{
|
||||
padding: 50px 56px 43px 56px;
|
||||
.plan-features{
|
||||
width: 100%;
|
||||
margin-bottom: 32px;
|
||||
li{
|
||||
text-align: left;
|
||||
padding: 4px 0px;
|
||||
font-family: $type1-regular;
|
||||
font-size: $default-font-size;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,313 @@
|
||||
/* Settings Panel */
|
||||
|
||||
.settings-panel{
|
||||
display: block;
|
||||
position: fixed;
|
||||
top:$navbar-height;
|
||||
right: -$settings-panel-width;
|
||||
bottom: 0;
|
||||
width: $settings-panel-width;
|
||||
height: 100vh;
|
||||
min-height: 100%;
|
||||
background: $white;
|
||||
@include transition-duration($action-transition-duration);
|
||||
@include transition-timing-function($action-transition-timing-function);
|
||||
@include transition-property(right, box-shadow);
|
||||
z-index: 9999;
|
||||
.nav-tabs{
|
||||
@include display-flex;
|
||||
@include justify-content(center);
|
||||
width: auto;
|
||||
margin:0;
|
||||
padding: 0;
|
||||
background: $blue-teal-gradient;
|
||||
.nav-item{
|
||||
border: none;
|
||||
.nav-link{
|
||||
text-align: center;
|
||||
border: none;
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
color: rgba($white, 0.5);
|
||||
@include transition-duration(0.4s);
|
||||
transition-property: color;
|
||||
-webkit-transition-property: color;
|
||||
@include justify-content(center);
|
||||
&.active{
|
||||
background: transparent;
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tab-content{
|
||||
border: none;
|
||||
padding: 20px 0 0px 0;
|
||||
.tab-pane{
|
||||
&.scroll-wrapper{
|
||||
position: relative;
|
||||
max-height: 100vh;
|
||||
height: 100%;
|
||||
padding-bottom: 150px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.settings-heading{
|
||||
padding: 16px 0 13px 35px;
|
||||
font-size: $default-font-size;
|
||||
font-family: $type1-bold;
|
||||
line-height: 1;
|
||||
color: rgba(0, 0, 0, 0.9);
|
||||
opacity: 0.9;
|
||||
margin-bottom: 0;
|
||||
border-top: 1px solid $border-color;
|
||||
border-bottom: 1px solid $border-color;
|
||||
.rtl &{
|
||||
padding: 16px 35px 13px 0;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
small.settings-heading{
|
||||
.rtl &{
|
||||
padding: 16px 0 13px 12px;
|
||||
}
|
||||
}
|
||||
.sidebar-bg-options{
|
||||
padding: 13px 35px;
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
font-size: $default-font-size;
|
||||
line-height: 1;
|
||||
color: lighten($black, 35%);
|
||||
background: $white;
|
||||
@include transition-duration($action-transition-duration);
|
||||
@include transition-property(background);
|
||||
&.selected{
|
||||
background: color(gray-lightest);
|
||||
}
|
||||
.rtl & {
|
||||
.rounded-circle{
|
||||
@extend .mr-0;
|
||||
@extend .ml-3;
|
||||
}
|
||||
}
|
||||
}
|
||||
.color-tiles{
|
||||
@include display-flex;
|
||||
@include justify-content(space-around);
|
||||
@include flex-wrap(wrap);
|
||||
margin: 0px 35px 10px 35px;
|
||||
padding-top: 15px;
|
||||
.tiles{
|
||||
@extend .img-ss;
|
||||
@extend .rounded-circle;
|
||||
margin: 10px 18px;
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
@include justify-content(center);
|
||||
&:before{
|
||||
content: "";
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
opacity: 0;
|
||||
background: rgba($white , 0.5);
|
||||
@include border-radius(100%);
|
||||
border: 0px solid rgba($white , 0.4);
|
||||
@include transition-duration($action-transition-duration);
|
||||
@include transition-timing-function($action-transition-timing-function);
|
||||
}
|
||||
&.selected{
|
||||
&:before{
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
opacity: 1;
|
||||
border-width: $border-width;
|
||||
}
|
||||
}
|
||||
&.primary{
|
||||
@extend .bg-primary;
|
||||
}
|
||||
&.success{
|
||||
@extend .bg-success;
|
||||
}
|
||||
&.warning{
|
||||
@extend .bg-warning;
|
||||
}
|
||||
&.danger{
|
||||
@extend .bg-danger;
|
||||
}
|
||||
&.pink{
|
||||
background: color(pink);
|
||||
}
|
||||
&.info{
|
||||
@extend .bg-info;
|
||||
}
|
||||
&.dark{
|
||||
@extend .bg-dark;
|
||||
}
|
||||
&.default{
|
||||
border:1px solid lighten(color(gray),60%);
|
||||
background: $blue-teal-gradient;
|
||||
}
|
||||
}
|
||||
}
|
||||
.chat-list{
|
||||
padding-left: 0;
|
||||
.list{
|
||||
padding: 0.4rem 0.8rem;
|
||||
@include display-flex;
|
||||
@include justify-content(space-between);
|
||||
border-bottom: $border-width solid $border-color;
|
||||
&:last-child{
|
||||
border-bottom: none;
|
||||
}
|
||||
.profile{
|
||||
position: relative;
|
||||
margin-right: 1rem;
|
||||
img{
|
||||
width:2.50rem;
|
||||
height: 2.50rem;
|
||||
@include border-radius(100%);
|
||||
}
|
||||
span{
|
||||
height: 0.75rem;
|
||||
width: 0.75rem;
|
||||
position: absolute;
|
||||
bottom: 0.34rem;
|
||||
right: 0;
|
||||
border: 0.13rem solid $white;
|
||||
@include border-radius(100%);
|
||||
&.online{
|
||||
background: theme-color(success);
|
||||
}
|
||||
&.offline{
|
||||
background: theme-color(warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
.info{
|
||||
margin-right: auto;
|
||||
p{
|
||||
display: block;
|
||||
margin-bottom: 0;
|
||||
@extend %ellipsor;
|
||||
&:last-child{
|
||||
opacity: 0.5;
|
||||
font-size: 0.8rem;
|
||||
.rtl & {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.active{
|
||||
background: theme-color(light);
|
||||
}
|
||||
}
|
||||
}
|
||||
&.open{
|
||||
right:0;
|
||||
-webkit-box-shadow: 7px 0px 80px -9px rgba(0,0,0,0.15);
|
||||
-moz-box-shadow: 7px 0px 80px -9px rgba(0,0,0,0.15);
|
||||
box-shadow: 7px 0px 80px -9px rgba(0,0,0,0.15);
|
||||
}
|
||||
.settings-close{
|
||||
position: absolute;
|
||||
top:8px;
|
||||
right: 10px;
|
||||
color: $white;
|
||||
background: transparent;
|
||||
@include border-radius(4px);
|
||||
padding: 0 3px;
|
||||
cursor: pointer;
|
||||
@include transition-duration(0.2s);
|
||||
z-index: 999;
|
||||
&:hover{
|
||||
background: rgba($white,0.3);
|
||||
}
|
||||
.rtl & {
|
||||
right: unset;
|
||||
left: 10px;
|
||||
}
|
||||
}
|
||||
.events{
|
||||
p{
|
||||
font-family: $type1-regular;
|
||||
}
|
||||
.rtl & {
|
||||
p{
|
||||
text-align: right;
|
||||
}
|
||||
i{
|
||||
@extend .mr-0;
|
||||
@extend .ml-2;
|
||||
}
|
||||
}
|
||||
}
|
||||
.rtl & {
|
||||
right: unset;
|
||||
left: -$settings-panel-width;
|
||||
@include transition-property(left);
|
||||
.chat-list{
|
||||
padding-right: 0;
|
||||
.list{
|
||||
.profile{
|
||||
margin-right: 0;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
.info{
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
.badge {
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
&.open{
|
||||
left: 0;
|
||||
right: unset;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#theme-settings{
|
||||
.settings-close{
|
||||
top: 12px;
|
||||
background: $blue-teal-gradient;
|
||||
}
|
||||
}
|
||||
|
||||
#settings-trigger{
|
||||
position: fixed;
|
||||
bottom: 40px;
|
||||
right: 30px;
|
||||
height: 45px;
|
||||
width: 45px;
|
||||
background: theme-color(primary);
|
||||
z-index: 99;
|
||||
-webkit-box-shadow: 0px 0px 31px 6px rgba(0,0,0,0.17);
|
||||
-moz-box-shadow: 0px 0px 31px 6px rgba(0,0,0,0.17);
|
||||
box-shadow: 0px 0px 31px 6px rgba(0,0,0,0.17);
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
@include justify-content(center);
|
||||
@include border-radius(100%);
|
||||
@extend .fadeInUp;
|
||||
@include animation-duration(1s);
|
||||
@include animation-delay(1s);
|
||||
@include animation-fill-mode(both);
|
||||
i{
|
||||
color: $white;
|
||||
font-size: 1rem;
|
||||
line-height: 1rem;
|
||||
@extend .infinite-spin;
|
||||
}
|
||||
.rtl &{
|
||||
right: auto;
|
||||
left: 30px;
|
||||
}
|
||||
@media (max-width: 991px){
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
/* Tables */
|
||||
|
||||
.table {
|
||||
margin-bottom: 0;
|
||||
thead {
|
||||
th {
|
||||
border-top: 0;
|
||||
border-bottom-width: 1px;
|
||||
font-family: $type1-semibold;
|
||||
font-weight: initial;
|
||||
i{
|
||||
margin-left: 0.325rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
th,
|
||||
td {
|
||||
vertical-align: middle;
|
||||
font-size: $default-font-size;
|
||||
line-height: 1;
|
||||
img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 100%;
|
||||
}
|
||||
.badge {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
&.table-borderless{
|
||||
border: none;
|
||||
tr,td,th{
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
/* Tabs */
|
||||
|
||||
// Basic Styles
|
||||
.nav{
|
||||
margin-bottom: 1rem;
|
||||
&.nav-tabs,&.nav-pills{
|
||||
.nav-item{
|
||||
.nav-link{
|
||||
font-family: $type1-semibold;
|
||||
line-height: 1;
|
||||
padding: 13px 28px;
|
||||
@media (max-width: 767px) {
|
||||
padding: 13px 10px;
|
||||
}
|
||||
font-size: $default-font-size;
|
||||
color: $black;
|
||||
@include display-flex;
|
||||
@include border-radius(2px);
|
||||
i{
|
||||
margin-right: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tab-content{
|
||||
padding: 37px 18px 29px 24px;
|
||||
font-family: $type1-regular;
|
||||
font-size: $default-font-size;
|
||||
line-height: 1.71;
|
||||
border: $border-width solid $border-color;
|
||||
@include border-radius(2px);
|
||||
|
||||
}
|
||||
|
||||
// Basic Tab Styles
|
||||
.tab-basic{
|
||||
border-bottom: none;
|
||||
.nav-item{
|
||||
.nav-link{
|
||||
&.active{
|
||||
border: $border-width solid $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tab-content-basic{
|
||||
border: $border-width solid $border-color;
|
||||
}
|
||||
|
||||
// Solid Tab Styles
|
||||
.tab-solid{
|
||||
border: none;
|
||||
.nav-item{
|
||||
.nav-link{
|
||||
border: none;
|
||||
&.active{
|
||||
border: none;
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tab-content-solid{
|
||||
border: none;
|
||||
padding-top: 0.875rem;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.tab-solid-#{$color} {
|
||||
@include tab-solid-variant($value);
|
||||
}
|
||||
}
|
||||
|
||||
// Minimal Tab Styles
|
||||
.tab-minimal{
|
||||
.nav-tabs{
|
||||
border: none;
|
||||
.nav-item{
|
||||
.nav-link{
|
||||
border: none;
|
||||
&.active{}
|
||||
&:first-child{
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tab-content{}
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.tab-minimal-#{$color} {
|
||||
@include tab-minimal-variant($value);
|
||||
}
|
||||
}
|
||||
|
||||
// Vertical Tab Styles
|
||||
.vertical-tab{
|
||||
@include display-flex;
|
||||
.nav-tabs{
|
||||
margin-right: 1.25rem;
|
||||
@include flex-direction(column);
|
||||
}
|
||||
.tab-content{
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,144 @@
|
||||
/* Timeline */
|
||||
|
||||
.timeline {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
&:before {
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
content: " ";
|
||||
width: 3px;
|
||||
background-color: theme-color(secondary);
|
||||
left: 50%;
|
||||
margin-left: -1.5px;
|
||||
}
|
||||
.timeline-wrapper {
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
padding-right: 90px;
|
||||
&:before {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
&:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
.timeline-panel {
|
||||
border-radius: 2px;
|
||||
padding: 20px;
|
||||
position: relative;
|
||||
background: $white;
|
||||
@include border-radius(6px);
|
||||
box-shadow: 1px 2px 35px 0 rgba(1, 1, 1, 0.1);
|
||||
width: 35%;
|
||||
margin-left: 15%;
|
||||
&:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
content: "";
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
&:after {
|
||||
position: absolute;
|
||||
top: 27px;
|
||||
right: -14px;
|
||||
display: inline-block;
|
||||
border-top: 14px solid transparent;
|
||||
border-left: 14px solid $white;
|
||||
border-right: 0 solid $white;
|
||||
border-bottom: 14px solid transparent;
|
||||
content: " ";
|
||||
}
|
||||
.timeline-title {
|
||||
margin-top: 0;
|
||||
color: theme-color(dark);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.timeline-body {
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
&+p {
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
ul {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
.timeline-footer {
|
||||
span {
|
||||
font-size: .6875rem;
|
||||
}
|
||||
i {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
.timeline-badge {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
left: calc(50% - 7px);
|
||||
z-index: 100;
|
||||
border-top-right-radius: 50%;
|
||||
border-top-left-radius: 50%;
|
||||
border-bottom-right-radius: 50%;
|
||||
border-bottom-left-radius: 50%;
|
||||
border: 2px solid $white;
|
||||
i{
|
||||
color:$white;
|
||||
}
|
||||
}
|
||||
&.timeline-inverted {
|
||||
padding-right: 0;
|
||||
padding-left: 90px;
|
||||
.timeline-panel {
|
||||
margin-left: auto;
|
||||
margin-right: 15%;
|
||||
&:after {
|
||||
border-left-width: 0;
|
||||
border-right-width: 14px;
|
||||
left: -14px;
|
||||
right: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
.timeline {
|
||||
.timeline-wrapper {
|
||||
padding-right: 150px;
|
||||
&.timeline-inverted {
|
||||
padding-left: 150px;
|
||||
}
|
||||
.timeline-panel {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@each $color, $value in $theme-colors {
|
||||
.timeline-wrapper-#{$color} {
|
||||
.timeline-panel {
|
||||
&:before {
|
||||
background: theme-color($color);
|
||||
}
|
||||
}
|
||||
.timeline-badge {
|
||||
background: theme-color($color);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
/* Tabs */
|
||||
|
||||
.add-items {
|
||||
margin-bottom: 1.5rem;
|
||||
overflow: hidden;
|
||||
input[type="text"] {
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.btn {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.list-wrapper {
|
||||
height: 100%;
|
||||
max-height: 100%;
|
||||
ul {
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
list-style: none;
|
||||
margin-bottom: 0;
|
||||
li {
|
||||
@extend .d-flex;
|
||||
@extend .align-items-center;
|
||||
@extend .justify-content-start;
|
||||
font-size: .9375rem;
|
||||
padding: .4rem 0;
|
||||
border-bottom: 1px solid $border-color;
|
||||
.form-check{
|
||||
@extend %ellipsor;
|
||||
max-width: 90%;
|
||||
.form-check-label{
|
||||
@extend%ellipsor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.remove {
|
||||
margin-left: auto;
|
||||
cursor: pointer;
|
||||
font-size: 1.3rem;
|
||||
font-weight: 600;
|
||||
color: theme-color(danger);
|
||||
width: 1.25rem;
|
||||
height: 1.25rem;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
.rtl & {
|
||||
margin-right: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.completed {
|
||||
text-decoration: line-through;
|
||||
text-decoration-color: theme-color(primary);
|
||||
|
||||
.remove{
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/* Tooltips */
|
||||
|
||||
.tooltip-static-demo {
|
||||
.tooltip {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
opacity: 1;
|
||||
margin: 0 10px 10px 0;
|
||||
}
|
||||
.bs-tooltip-bottom-demo,
|
||||
.bs-tooltip-top-demo {
|
||||
.arrow {
|
||||
left: 50%;
|
||||
}
|
||||
}
|
||||
.bs-tooltip-right-demo,
|
||||
.bs-tooltip-left-demo {
|
||||
.arrow {
|
||||
top: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tooltip {
|
||||
font-size: $tooltip-font-size;
|
||||
min-width: 5.625rem;
|
||||
.tooltip-inner {
|
||||
font-family: $type1-regular;
|
||||
}
|
||||
z-index: 1029;
|
||||
}
|
||||
|
||||
@each $color, $value in $theme-colors {
|
||||
.tooltip-#{$color} {
|
||||
@include tooltip-variant(theme-color($color));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,94 @@
|
||||
/* User Profile */
|
||||
|
||||
.user-profile{
|
||||
.side-left{
|
||||
.card{
|
||||
.avatar{
|
||||
img{
|
||||
display: block;
|
||||
width:90px;
|
||||
height: 90px;
|
||||
@include border-radius(100%);
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
@extend .mt-4;
|
||||
@extend .mb-3;
|
||||
}
|
||||
.name{
|
||||
text-align: center;
|
||||
color: theme-color(dark);
|
||||
font-size: 1.2rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.designation{
|
||||
text-align: center;
|
||||
color: color(gray);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600
|
||||
}
|
||||
.email{
|
||||
text-align: center;
|
||||
color: theme-color(primary);
|
||||
display: block;
|
||||
}
|
||||
.number{
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: theme-color(primary);
|
||||
}
|
||||
}
|
||||
.overview{
|
||||
.achivements{
|
||||
padding-left: 0px;
|
||||
@include display-flex;
|
||||
@include justify-content(center);
|
||||
li{
|
||||
width: 33.333%;
|
||||
@include display-flex;
|
||||
@include justify-content(center);
|
||||
@include align-items(center);
|
||||
@include flex-direction(column);
|
||||
p{
|
||||
text-align: center;
|
||||
margin-bottom: 0;
|
||||
font-weight: 600;
|
||||
font-size: 1.4rem;
|
||||
color: theme-color(dark);
|
||||
&:last-child{
|
||||
font-weight: 500;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.about-user{
|
||||
@extend .mb-4;
|
||||
p{
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
.info-links{
|
||||
a{
|
||||
font-size: 0.8rem;
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
i{
|
||||
font-size: 0.8rem;
|
||||
margin-right: 10px;
|
||||
}
|
||||
span{
|
||||
text-align: left;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
.website{}
|
||||
.social-link{}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.side-right{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
/* Bar loader */
|
||||
.bar-loader{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.bar-loader span{
|
||||
display: inline-block;
|
||||
width: 5px;
|
||||
height: 30px;
|
||||
background-color: rgba(theme-color(danger), .7);
|
||||
}
|
||||
|
||||
.bar-loader span:nth-child(1){
|
||||
animation: grow 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.bar-loader span:nth-child(2){
|
||||
animation: grow 1s ease-in-out 0.15s infinite;
|
||||
}
|
||||
|
||||
.bar-loader span:nth-child(3){
|
||||
animation: grow 1s ease-in-out 0.30s infinite;
|
||||
}
|
||||
|
||||
.bar-loader span:nth-child(4){
|
||||
animation: grow 1s ease-in-out 0.45s infinite;
|
||||
}
|
||||
|
||||
@keyframes grow{
|
||||
0%, 100%{
|
||||
-webkit-transform: scaleY(1);
|
||||
-ms-transform: scaleY(1);
|
||||
-o-transform: scaleY(1);
|
||||
transform: scaleY(1);
|
||||
}
|
||||
|
||||
50%{
|
||||
-webkit-transform: scaleY(1.8);
|
||||
-ms-transform: scaleY(1.8);
|
||||
-o-transform: scaleY(1.8);
|
||||
transform: scaleY(1.8);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
/* Circle loader */
|
||||
.circle-loader {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.circle-loader:before, .circle-loader:after{
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 100%;
|
||||
border: 10px solid transparent;
|
||||
border-top-color: theme-color(warning);
|
||||
}
|
||||
|
||||
.circle-loader:before{
|
||||
z-index: 100;
|
||||
animation: spin 1s infinite;
|
||||
}
|
||||
|
||||
.circle-loader:after{
|
||||
border: 10px solid theme-color(secondary);
|
||||
}
|
||||
|
||||
@keyframes spin{
|
||||
0%{
|
||||
-webkit-transform: rotate(0deg);
|
||||
-ms-transform: rotate(0deg);
|
||||
-o-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100%{
|
||||
-webkit-transform: rotate(360deg);
|
||||
-ms-transform: rotate(360deg);
|
||||
-o-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,116 @@
|
||||
#pgloading {
|
||||
position: static;
|
||||
.bokeh {
|
||||
font-size: 100px;
|
||||
width: 1em;
|
||||
height: 1em;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
border-radius: 50%;
|
||||
border: .01em solid $border-color;
|
||||
list-style: none;
|
||||
padding:0;
|
||||
li {
|
||||
position: absolute;
|
||||
width: .2em;
|
||||
height: .2em;
|
||||
border-radius: 50%;
|
||||
&:nth-child(1) {
|
||||
left: 50%;
|
||||
top: 0;
|
||||
margin: 0 0 0 -.1em;
|
||||
background: theme-color(success);
|
||||
-webkit-transform-origin: 50% 250%;
|
||||
transform-origin: 50% 250%;
|
||||
-webkit-animation:
|
||||
rota 1.13s linear infinite,
|
||||
opa 3.67s ease-in-out infinite alternate;
|
||||
animation:
|
||||
rota 1.13s linear infinite,
|
||||
opa 3.67s ease-in-out infinite alternate;
|
||||
}
|
||||
&:nth-child(2) {
|
||||
top: 50%;
|
||||
right: 0;
|
||||
margin: -.1em 0 0 0;
|
||||
background: theme-color(danger);
|
||||
-webkit-transform-origin: -150% 50%;
|
||||
transform-origin: -150% 50%;
|
||||
-webkit-animation:
|
||||
rota 1.86s linear infinite,
|
||||
opa 4.29s ease-in-out infinite alternate;
|
||||
animation:
|
||||
rota 1.86s linear infinite,
|
||||
opa 4.29s ease-in-out infinite alternate;
|
||||
}
|
||||
&:nth-child(3) {
|
||||
left: 50%;
|
||||
bottom: 0;
|
||||
margin: 0 0 0 -.1em;
|
||||
background: theme-color(warning);
|
||||
-webkit-transform-origin: 50% -150%;
|
||||
transform-origin: 50% -150%;
|
||||
-webkit-animation:
|
||||
rota 1.45s linear infinite,
|
||||
opa 5.12s ease-in-out infinite alternate;
|
||||
animation:
|
||||
rota 1.45s linear infinite,
|
||||
opa 5.12s ease-in-out infinite alternate;
|
||||
}
|
||||
&:nth-child(4) {
|
||||
top: 50%;
|
||||
left: 0;
|
||||
margin: -.1em 0 0 0;
|
||||
background: theme-color(primary);
|
||||
-webkit-transform-origin: 250% 50%;
|
||||
transform-origin: 250% 50%;
|
||||
-webkit-animation:
|
||||
rota 1.72s linear infinite,
|
||||
opa 5.25s ease-in-out infinite alternate;
|
||||
animation:
|
||||
rota 1.72s linear infinite,
|
||||
opa 5.25s ease-in-out infinite alternate;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rota {
|
||||
from { }
|
||||
to { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@keyframes rota {
|
||||
from { }
|
||||
to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@-webkit-keyframes opa {
|
||||
0% { }
|
||||
12.0% { opacity: 0.80; }
|
||||
19.5% { opacity: 0.88; }
|
||||
37.2% { opacity: 0.64; }
|
||||
40.5% { opacity: 0.52; }
|
||||
52.7% { opacity: 0.69; }
|
||||
60.2% { opacity: 0.60; }
|
||||
66.6% { opacity: 0.52; }
|
||||
70.0% { opacity: 0.63; }
|
||||
79.9% { opacity: 0.60; }
|
||||
84.2% { opacity: 0.75; }
|
||||
91.0% { opacity: 0.87; }
|
||||
}
|
||||
|
||||
@keyframes opa {
|
||||
0% { }
|
||||
12.0% { opacity: 0.80; }
|
||||
19.5% { opacity: 0.88; }
|
||||
37.2% { opacity: 0.64; }
|
||||
40.5% { opacity: 0.52; }
|
||||
52.7% { opacity: 0.69; }
|
||||
60.2% { opacity: 0.60; }
|
||||
66.6% { opacity: 0.52; }
|
||||
70.0% { opacity: 0.63; }
|
||||
79.9% { opacity: 0.60; }
|
||||
84.2% { opacity: 0.75; }
|
||||
91.0% { opacity: 0.87; }
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
/* Dot opacity loader */
|
||||
|
||||
.dot-opacity-loader {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.dot-opacity-loader span{
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 100%;
|
||||
background-color: theme-color(primary);
|
||||
margin: 35px 5px;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.dot-opacity-loader span:nth-child(1){
|
||||
animation: opacitychange 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.dot-opacity-loader span:nth-child(2){
|
||||
animation: opacitychange 1s ease-in-out 0.33s infinite;
|
||||
}
|
||||
|
||||
.dot-opacity-loader span:nth-child(3){
|
||||
animation: opacitychange 1s ease-in-out 0.66s infinite;
|
||||
}
|
||||
|
||||
@keyframes opacitychange{
|
||||
0%, 100%{
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
60%{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/* Flip square */
|
||||
|
||||
.flip-square-loader{
|
||||
-webkit-perspective: 120px;
|
||||
-moz-perspective: 120px;
|
||||
-ms-perspective: 120px;
|
||||
perspective: 120px;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.flip-square-loader:before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 25px;
|
||||
top: 25px;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background-color: rgba(theme-color(success), .7);
|
||||
animation: flip 1s infinite;
|
||||
}
|
||||
|
||||
@keyframes flip {
|
||||
0% {
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: rotateY(180deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotateY(180deg) rotateX(180deg);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
.glowing-loader {
|
||||
position: relative;
|
||||
}
|
||||
.s2 {
|
||||
position: absolute;
|
||||
height: 70px;
|
||||
width: 70px;
|
||||
top: 50px;
|
||||
background-color: transparent;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.s1 {
|
||||
position: absolute;
|
||||
height: 70px;
|
||||
width: 70px;
|
||||
left: 50%;
|
||||
top: 50px;
|
||||
transform-origin: center;
|
||||
transform: translate(-50%, -50%) rotate(45deg);
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.bigcon {
|
||||
position: absolute;
|
||||
height: 75px;
|
||||
width: 75px;
|
||||
left: 50%;
|
||||
top: 50px;
|
||||
transform-origin: center;
|
||||
transform: translate(-50%, -50%) rotate(-45deg);
|
||||
background-color: transparent;
|
||||
animation: bigcon 2s infinite linear;
|
||||
animation-delay: 0.25s;
|
||||
}
|
||||
|
||||
.b {
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.s {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
animation: small 2s infinite ease;
|
||||
box-shadow: 0px 2px rgba($black, .3);
|
||||
background-color: theme-color(primary);
|
||||
}
|
||||
|
||||
.s:nth-child(1) {
|
||||
top: 0%;
|
||||
left: 0%;
|
||||
}
|
||||
|
||||
.s:nth-child(2) {
|
||||
top: 0%;
|
||||
right: 0%;
|
||||
}
|
||||
|
||||
.s:nth-child(3) {
|
||||
right: 0%;
|
||||
bottom: 0%;
|
||||
}
|
||||
|
||||
.s:nth-child(4) {
|
||||
bottom: 0%;
|
||||
left: 0%;
|
||||
}
|
||||
|
||||
.big {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border-radius: 15px;
|
||||
box-shadow:0px 0px 10px theme-color(primary), 0px 0px 20px theme-color(primary), 0px 0px 30px theme-color(primary), 0px 0px 50px theme-color(primary), 0px 0px 60px theme-color(primary) ;
|
||||
z-index: 1;
|
||||
background-color: theme-color(primary);
|
||||
animation: bigball 1s infinite linear;
|
||||
}
|
||||
|
||||
.sb1{
|
||||
animation-delay: -1.75s;
|
||||
}
|
||||
.sb6{
|
||||
animation-delay: -1.5s;
|
||||
}
|
||||
.sb2{
|
||||
animation-delay: -1.25s;
|
||||
}
|
||||
.sb7{
|
||||
animation-delay: -1s;
|
||||
}
|
||||
.sb3{
|
||||
animation-delay: -0.75s;
|
||||
}
|
||||
.sb8{
|
||||
animation-delay: -0.5s;
|
||||
}
|
||||
.sb4{
|
||||
animation-delay: -0.25s;
|
||||
}
|
||||
.sb5{
|
||||
animation-delay: -0s;
|
||||
}
|
||||
|
||||
@keyframes bigcon {
|
||||
0% {
|
||||
transform-origin: center;
|
||||
transform: translate(-50%, -50%) rotate(45deg);
|
||||
}
|
||||
100% {
|
||||
transform-origin: center;
|
||||
transform: translate(-50%, -50%) rotate(405deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes small {
|
||||
0% {
|
||||
transform: scale(1);
|
||||
background-color: lighten(theme-color(primary), 20%);
|
||||
}
|
||||
10% {
|
||||
transform: scale(1.3);
|
||||
background-color: theme-color(primary);
|
||||
}
|
||||
15% {
|
||||
transform: scale(1);
|
||||
}
|
||||
25%{
|
||||
transform: scale(1);
|
||||
background-color: theme-color(primary);
|
||||
}
|
||||
100%{
|
||||
transform: scale(1);
|
||||
background-color: theme-color(primary);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
/* Jumping dots loader */
|
||||
.jumping-dots-loader {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.jumping-dots-loader span{
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 100%;
|
||||
background-color: rgba(theme-color(danger), .8);
|
||||
margin: 35px 5px;
|
||||
}
|
||||
|
||||
.jumping-dots-loader span:nth-child(1){
|
||||
animation: bounce 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.jumping-dots-loader span:nth-child(2){
|
||||
animation: bounce 1s ease-in-out 0.33s infinite;
|
||||
}
|
||||
|
||||
.jumping-dots-loader span:nth-child(3){
|
||||
animation: bounce 1s ease-in-out 0.66s infinite;
|
||||
}
|
||||
|
||||
@keyframes bounce{
|
||||
0%, 75%, 100%{
|
||||
-webkit-transform: translateY(0);
|
||||
-ms-transform: translateY(0);
|
||||
-o-transform: translateY(0);
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
25%{
|
||||
-webkit-transform: translateY(-20px);
|
||||
-ms-transform: translateY(-20px);
|
||||
-o-transform: translateY(-20px);
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
/* Loaders */
|
||||
|
||||
@import "variables";
|
||||
@import "colored-balls";
|
||||
@import "glowing-ball";
|
||||
@import "pixel-loader";
|
||||
@import "square-box";
|
||||
@import "circle-loader";
|
||||
@import "jumping-dots-loader";
|
||||
@import "bar-loader";
|
||||
@import "square-path-loader";
|
||||
@import "dot-opacity-loader";
|
||||
@import "flip-square-loader";
|
||||
@import "moving-square-loader";
|
||||
@@ -0,0 +1,36 @@
|
||||
/* Moving square loader */
|
||||
|
||||
.moving-square-loader {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.moving-square-loader:before{
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
top: calc(50% - 10px);
|
||||
left: 0px;
|
||||
background-color: rgba(theme-color(danger), .7);
|
||||
animation: rotatemove 1s infinite;
|
||||
}
|
||||
|
||||
@keyframes rotatemove{
|
||||
0%{
|
||||
-webkit-transform: scale(1) translateX(0px);
|
||||
-ms-transform: scale(1) translateX(0px);
|
||||
-o-transform: scale(1) translateX(0px);
|
||||
transform: scale(1) translateX(0px);
|
||||
}
|
||||
|
||||
100%{
|
||||
-webkit-transform: scale(2) translateX(45px);
|
||||
-ms-transform: scale(2) translateX(45px);
|
||||
-o-transform: scale(2) translateX(45px);
|
||||
transform: scale(2) translateX(45px);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
/* Pixel loader */
|
||||
.pixel-loader {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background: theme-color(warning);
|
||||
color: theme-color(warning);
|
||||
margin: 80px auto;
|
||||
box-shadow: 15px 15px 0 0,
|
||||
-15px -15px 0 0,
|
||||
15px -15px 0 0,
|
||||
-15px 15px 0 0,
|
||||
0 15px 0 0,
|
||||
15px 0 0 0,
|
||||
-15px 0 0 0,
|
||||
0 -15px 0 0;
|
||||
animation: anim 2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes anim {
|
||||
0% {
|
||||
-webkit-filter: hue-rotate(0deg);
|
||||
}
|
||||
50% {
|
||||
box-shadow: 20px 20px 0 0,
|
||||
-20px -20px 0 0,
|
||||
20px -20px 0 0,
|
||||
-20px 20px 0 0,
|
||||
0 10px 0 0,
|
||||
10px 0 0 0,
|
||||
-10px 0 0 0,
|
||||
0 -10px 0 0;
|
||||
}
|
||||
|
||||
75% {
|
||||
box-shadow: 20px 20px 0 0,
|
||||
-20px -20px 0 0,
|
||||
20px -20px 0 0,
|
||||
-20px 20px 0 0,
|
||||
0 10px 0 0,
|
||||
10px 0 0 0,
|
||||
-10px 0 0 0,
|
||||
0 -10px 0 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
-webkit-filter: hue-rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,90 @@
|
||||
/* Square box loader */
|
||||
|
||||
@keyframes dyinglight {
|
||||
15% {
|
||||
transform: scale(1.6)
|
||||
}
|
||||
50% {
|
||||
transform: rotate(-89deg)
|
||||
}
|
||||
100% {
|
||||
transform: rotate(-90deg)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.square-box-loader {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
|
||||
.square-box-loader-square {
|
||||
display: block;
|
||||
width: $square-size;
|
||||
height: $square-size;
|
||||
background: theme-color(primary);
|
||||
}
|
||||
|
||||
|
||||
.square-box-loader-container {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
transform-origin: 50% 50% 0;
|
||||
animation: dyinglight 1s ease infinite;
|
||||
backface-visibility: hidden;
|
||||
}
|
||||
|
||||
|
||||
.square-box-loader-corner-top:before,
|
||||
.square-box-loader-corner-top:after,
|
||||
.square-box-loader-corner-bottom:before,
|
||||
.square-box-loader-corner-bottom:after {
|
||||
position: absolute;
|
||||
width: $square-corner-size;
|
||||
height: $square-corner-size;
|
||||
color: theme-color(primary);
|
||||
content: '';
|
||||
}
|
||||
|
||||
|
||||
.square-box-loader-corner-top {
|
||||
&:before {
|
||||
border-left: 1px solid;
|
||||
border-top: 1px solid;
|
||||
top: -$square-corner-position;
|
||||
left: -$square-corner-position;
|
||||
}
|
||||
|
||||
&:after {
|
||||
border-right: 1px solid;
|
||||
border-top: 1px solid;
|
||||
top: -$square-corner-position;
|
||||
right: -$square-corner-position;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
.square-box-loader-corner-bottom {
|
||||
&:before {
|
||||
border-left: 1px solid;
|
||||
border-bottom: 1px solid;
|
||||
bottom: -$square-corner-position;
|
||||
left: -$square-corner-position;
|
||||
}
|
||||
|
||||
&:after {
|
||||
border-right: 1px solid;
|
||||
border-bottom: 1px solid;
|
||||
bottom: -$square-corner-position;
|
||||
right: -$square-corner-position;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
/* Square path loader */
|
||||
|
||||
.square-path-loader {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 100%;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.square-path-loader:before, .square-path-loader:after{
|
||||
content: "";
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: calc(50% - 10px);
|
||||
background-color: rgba(theme-color(success), .7);
|
||||
animation: squaremove 1s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.square-path-loader:after{
|
||||
bottom: 0;
|
||||
animation-delay: 0.5s;
|
||||
}
|
||||
|
||||
@keyframes squaremove{
|
||||
0%, 100%{
|
||||
-webkit-transform: translate(0,0) rotate(0);
|
||||
-ms-transform: translate(0,0) rotate(0);
|
||||
-o-transform: translate(0,0) rotate(0);
|
||||
transform: translate(0,0) rotate(0);
|
||||
}
|
||||
|
||||
25%{
|
||||
-webkit-transform: translate(40px,40px) rotate(45deg);
|
||||
-ms-transform: translate(40px,40px) rotate(45deg);
|
||||
-o-transform: translate(40px,40px) rotate(45deg);
|
||||
transform: translate(40px,40px) rotate(45deg);
|
||||
}
|
||||
|
||||
50%{
|
||||
-webkit-transform: translate(0px,80px) rotate(0deg);
|
||||
-ms-transform: translate(0px,80px) rotate(0deg);
|
||||
-o-transform: translate(0px,80px) rotate(0deg);
|
||||
transform: translate(0px,80px) rotate(0deg);
|
||||
}
|
||||
|
||||
75%{
|
||||
-webkit-transform: translate(-40px,40px) rotate(45deg);
|
||||
-ms-transform: translate(-40px,40px) rotate(45deg);
|
||||
-o-transform: translate(-40px,40px) rotate(45deg);
|
||||
transform: translate(-40px,40px) rotate(45deg);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
$square-box-scale: 3;
|
||||
$square-size: 30px;
|
||||
$square-corner-size: ceil($square-size / $square-box-scale);
|
||||
$square-corner-position: ceil($square-corner-size / $square-box-scale);
|
||||
@@ -0,0 +1,87 @@
|
||||
/* Mail List Container */
|
||||
|
||||
.email-wrapper {
|
||||
.mail-list-container {
|
||||
border-left: 1px solid $border-color;
|
||||
height: 100%;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.mail-list {
|
||||
border-bottom: 1px solid $border-color;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
padding: 10px 15px;
|
||||
width: 100%;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.form-check {
|
||||
margin-top: 12px;
|
||||
width: 11%;
|
||||
min-width: 20px;
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 83%;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
||||
.sender-name {
|
||||
margin-bottom: 0;
|
||||
font-size: $default-font-size;
|
||||
font-family: $type1-regular;
|
||||
@extend %ellipsor;
|
||||
max-width: 95%;
|
||||
}
|
||||
|
||||
.message_text {
|
||||
margin: 0;
|
||||
max-width: 93%;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
@extend .text-muted;
|
||||
}
|
||||
}
|
||||
|
||||
.details {
|
||||
@extend .d-flex;
|
||||
@extend .justify-content-end;
|
||||
width: 5.5%;
|
||||
|
||||
.date {
|
||||
text-align: right;
|
||||
margin: auto 15px auto 0;
|
||||
white-space: nowrap;
|
||||
@extend .text-muted;
|
||||
}
|
||||
|
||||
i {
|
||||
margin: auto 0;
|
||||
color: #ddd;
|
||||
|
||||
&.favorite {
|
||||
color: theme-color(warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.new_mail {
|
||||
background: color(gray-lightest);
|
||||
|
||||
.details {
|
||||
.date {
|
||||
color: color(black);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,184 @@
|
||||
/* Mail Sidebar */
|
||||
|
||||
.email-wrapper {
|
||||
.mail-sidebar {
|
||||
@media (max-width:769px) {
|
||||
position: relative;
|
||||
}
|
||||
@include media-breakpoint-down(sm) {
|
||||
position: fixed;
|
||||
z-index: 99;
|
||||
background: color(white);
|
||||
width: 45%;
|
||||
min-width: 300px;
|
||||
left: -100%;
|
||||
display: block;
|
||||
transition: 0.4s ease;
|
||||
-webkit-transition: 0.4s ease;
|
||||
-moz-transition: 0.4s ease;
|
||||
}
|
||||
|
||||
.menu-bar {
|
||||
width: 100%;
|
||||
float: right;
|
||||
height: 100%;
|
||||
min-height: 100%;
|
||||
@include media-breakpoint-down(sm) {
|
||||
min-height: 100vh;
|
||||
max-height: 100%;
|
||||
height: auto;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.menu-items {
|
||||
padding: 0;
|
||||
margin-bottom: 0;
|
||||
height: auto;
|
||||
list-style-type: none;
|
||||
|
||||
li {
|
||||
padding: 10px 15px;
|
||||
transition: 0.4s;
|
||||
position: relative;
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
@include justify-content(space-between);
|
||||
|
||||
&:hover {
|
||||
background: rgba(240, 244, 249, 0.8);
|
||||
}
|
||||
|
||||
a {
|
||||
color: lighten($darkslategray, .73);
|
||||
font-size: $default-font-size;
|
||||
text-decoration: none;
|
||||
|
||||
i {
|
||||
margin-right: 8px;
|
||||
font-size: $default-font-size;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: color(gray-lightest);
|
||||
@include border-radius(4px);
|
||||
|
||||
a {
|
||||
color: theme-color(primary);
|
||||
}
|
||||
}
|
||||
|
||||
&.compose {
|
||||
&:hover {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.online-status {
|
||||
margin-top: 1rem;
|
||||
|
||||
.chat {
|
||||
font-size: $default-font-size;
|
||||
color: theme-color(primary);
|
||||
margin-bottom: 0;
|
||||
font-family: $type1-semibold;
|
||||
}
|
||||
|
||||
.status {
|
||||
height: 10px;
|
||||
width: 10px;
|
||||
@include border-radius(100%);
|
||||
display: inline-flex;
|
||||
justify-content: flex-start;
|
||||
transform: translateX(-43px) translateY(2px);
|
||||
|
||||
&:after {
|
||||
font-size: 12px;
|
||||
color: $darkslategray;
|
||||
margin: -5px 0 0 18px;
|
||||
}
|
||||
}
|
||||
|
||||
.status.offline {
|
||||
background: theme-color(danger);
|
||||
|
||||
&:after {
|
||||
content: "Offline";
|
||||
}
|
||||
}
|
||||
|
||||
.status.online {
|
||||
background: theme-color(success);
|
||||
|
||||
&:after {
|
||||
content: "Online";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.profile-list {
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.profile-list-item {
|
||||
border-bottom: 1px solid $border-color;
|
||||
padding: 6px 0;
|
||||
display: block;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
@extend .d-flex;
|
||||
|
||||
.pro-pic {
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
padding: 0;
|
||||
width: 20%;
|
||||
max-width: 40px;
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
@include border-radius(100%);
|
||||
}
|
||||
}
|
||||
|
||||
.user {
|
||||
width: 100%;
|
||||
@extend .d-flex;
|
||||
@extend .flex-column;
|
||||
padding: 5px 10px 0 15px;
|
||||
|
||||
.u-name {
|
||||
margin: 0;
|
||||
font-family: $type1-regular;
|
||||
font-size: $default-font-size;
|
||||
line-height: 1;
|
||||
@extend %ellipsor;
|
||||
color: color(black);
|
||||
}
|
||||
|
||||
.u-designation {
|
||||
font-size: calc(#{$default-font-size} - 0.1rem);
|
||||
@extend %ellipsor;
|
||||
@extend .text-muted;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar.open {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
/* Message Content */
|
||||
.email-wrapper {
|
||||
.message-body {
|
||||
.sender-details {
|
||||
padding: 20px 15px 0;
|
||||
border-bottom: $border-property;
|
||||
@include display-flex;
|
||||
|
||||
.details {
|
||||
padding-bottom: 0;
|
||||
|
||||
.msg-subject {
|
||||
margin-bottom: 0;
|
||||
font-family: $type1-semibold;
|
||||
}
|
||||
|
||||
.sender-email {
|
||||
margin-bottom: 20px;
|
||||
font-family: $type1-regular;
|
||||
|
||||
i {
|
||||
font-size: 1rem;
|
||||
font-family: $type1-bold;
|
||||
margin: 0 1px 0 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.message-content {
|
||||
padding: 50px 15px;
|
||||
}
|
||||
|
||||
.attachments-sections {
|
||||
ul {
|
||||
list-style: none;
|
||||
border-top: $border-property;
|
||||
padding: 30px 15px 20px;
|
||||
|
||||
li {
|
||||
padding: 10px;
|
||||
margin-right: 20px;
|
||||
border: $border-property;
|
||||
@include border-radius(5px);
|
||||
@extend .d-inline-flex;
|
||||
@extend .flex-row;
|
||||
@extend .align-items-stretch;
|
||||
|
||||
.thumb {
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
@extend .d-flex;
|
||||
@extend .justify-content-center;
|
||||
@extend .align-items-center;
|
||||
|
||||
i {
|
||||
font-size: 30px;
|
||||
margin: 0;
|
||||
color: $darkslategray;
|
||||
}
|
||||
}
|
||||
|
||||
.details {
|
||||
p.file-name {
|
||||
display: block;
|
||||
@extend %ellipsor;
|
||||
margin-bottom: 0;
|
||||
color: $darkslategray;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
@extend .d-flex;
|
||||
@extend .align-items-center;
|
||||
|
||||
.file-size {
|
||||
margin-right: 10px;
|
||||
margin-bottom: 0;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: 13px;
|
||||
margin-right: 10px;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
/* Ace Editor */
|
||||
|
||||
.ace_editor {
|
||||
margin: auto;
|
||||
height: 300px;
|
||||
width: 100%;
|
||||
.ace_content{
|
||||
font-size: $default-font-size;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
/* Avgrund Popup */
|
||||
|
||||
.avgrund-popin {
|
||||
position: absolute;
|
||||
background: #fff;
|
||||
padding: 37px 33px;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
z-index: 1000;
|
||||
font-size: $default-font-size;
|
||||
font-family: $type1-regular;
|
||||
font-weight: initial;
|
||||
line-height: 1.85;
|
||||
@include border-radius(10px);
|
||||
|
||||
-webkit-transform: scale(0.8);
|
||||
-moz-transform: scale(0.8);
|
||||
-ms-transform: scale(0.8);
|
||||
-o-transform: scale(0.8);
|
||||
transform: scale(0.8);
|
||||
p{
|
||||
font-size: $default-font-size;
|
||||
font-family: $type1-regular;
|
||||
font-weight: initial;
|
||||
}
|
||||
}
|
||||
|
||||
.avgrund-overlay {
|
||||
background: $modal-backdrop-bg;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: 101;
|
||||
visibility: hidden;
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
|
||||
body.avgrund-ready,
|
||||
.avgrund-ready .avgrund-popin,
|
||||
.avgrund-ready .avgrund-overlay {
|
||||
-webkit-transform-origin: 50% 50%;
|
||||
-moz-transform-origin: 50% 50%;
|
||||
-ms-transform-origin: 50% 50%;
|
||||
-o-transform-origin: 50% 50%;
|
||||
transform-origin: 50% 50%;
|
||||
|
||||
-webkit-transition: 0.3s all ease-out;
|
||||
-moz-transition: 0.3s all ease-out;
|
||||
-ms-transition: 0.3s all ease-out;
|
||||
-o-transition: 0.3s all ease-out;
|
||||
transition: 0.3s all ease-out;
|
||||
}
|
||||
|
||||
body.avgrund-active {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.avgrund-active .avgrund-popin {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
|
||||
-webkit-transform: scale(1.1);
|
||||
-moz-transform: scale(1.1);
|
||||
-ms-transform: scale(1.1);
|
||||
-o-transform: scale(1.1);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.avgrund-active .avgrund-overlay {
|
||||
visibility: visible;
|
||||
opacity: .5;
|
||||
filter: alpha(opacity=50);
|
||||
height: 20000px;
|
||||
}
|
||||
|
||||
.avgrund-popin.stack {
|
||||
-webkit-transform: scale(1.5);
|
||||
-moz-transform: scale(1.5);
|
||||
-ms-transform: scale(1.5);
|
||||
-o-transform: scale(1.5);
|
||||
transform: scale(1.5);
|
||||
}
|
||||
|
||||
.avgrund-active .avgrund-popin.stack {
|
||||
-webkit-transform: scale(1.1);
|
||||
-moz-transform: scale(1.1);
|
||||
-ms-transform: scale(1.1);
|
||||
-o-transform: scale(1.1);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.avgrund-active .avgrund-blur {
|
||||
}
|
||||
|
||||
/* Optional close button styles */
|
||||
.avgrund-close {
|
||||
display: block;
|
||||
color:#fff;
|
||||
background: $body-color;
|
||||
font-size: 10px;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
height: 17px;
|
||||
width: 17px;
|
||||
text-align:center;
|
||||
line-height: 16px;
|
||||
|
||||
@include border-radius(50px);
|
||||
&:hover{
|
||||
color: #fff;
|
||||
text-decoration:none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
/* Bootstrap Tour */
|
||||
|
||||
.tour-tour {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-family: $type1-regular;
|
||||
background: $white;
|
||||
.popover-title {
|
||||
background: theme-color(primary);
|
||||
color: $white;
|
||||
font-size: .8125rem;
|
||||
font-family: $type1-semibold;
|
||||
padding: .75rem;
|
||||
}
|
||||
&.left {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-left-color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.right {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-right-color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.top {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-top-color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bottom {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-bottom-color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tour-step-background {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,154 @@
|
||||
/* Chartist */
|
||||
|
||||
// Line Charts Starts
|
||||
// Data -1
|
||||
|
||||
.ct-series-a .ct-line {
|
||||
stroke: lighten($blue, 15);
|
||||
stroke-width: 3px;
|
||||
stroke-dasharray: 10px 20px;
|
||||
}
|
||||
|
||||
.ct-series-a .ct-point {
|
||||
stroke: lighten($blue, 1);
|
||||
stroke-width: 10px;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
// Data -2
|
||||
|
||||
.ct-series-b .ct-line {
|
||||
stroke: lighten($green, 15);
|
||||
stroke-width: 3px;
|
||||
stroke-dasharray: 10px 20px;
|
||||
}
|
||||
|
||||
.ct-series-b .ct-point {
|
||||
stroke: lighten($green, 1);
|
||||
stroke-width: 10px;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
// Data -3
|
||||
|
||||
.ct-series-c .ct-line {
|
||||
stroke: lighten($orange, 15);
|
||||
stroke-width: 3px;
|
||||
stroke-dasharray: 10px 20px;
|
||||
}
|
||||
|
||||
.ct-series-c .ct-point {
|
||||
stroke: lighten($orange, 1);
|
||||
stroke-width: 10px;
|
||||
stroke-linecap: round;
|
||||
}
|
||||
// Line Charts Ends
|
||||
// Bar Charts Starts
|
||||
// Data -1
|
||||
|
||||
.ct-series-a .ct-bar {
|
||||
stroke: lighten($blue, 15);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
// Data -2
|
||||
|
||||
.ct-series-b .ct-bar {
|
||||
stroke: lighten($green, 15);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
// Data -3
|
||||
|
||||
.ct-series-c .ct-bar {
|
||||
stroke: lighten($orange, 15);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
// Data -4
|
||||
|
||||
.ct-series-d .ct-bar {
|
||||
stroke: lighten($red, 15);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
// Bar Charts Ends
|
||||
// Pie Chart Starts
|
||||
// Data -1
|
||||
.ct-series-a .ct-slice-pie {
|
||||
fill: lighten($blue, 15);
|
||||
stroke-width: 4px;
|
||||
}
|
||||
// Data -2
|
||||
|
||||
.ct-series-b .ct-slice-pie {
|
||||
fill: lighten($green, 15);
|
||||
stroke-width: 4px;
|
||||
}
|
||||
// Data 3
|
||||
|
||||
.ct-series-c .ct-slice-pie {
|
||||
fill: lighten($red, 15);
|
||||
stroke-width: 4px;
|
||||
}
|
||||
// Data -4
|
||||
|
||||
.ct-series-d .ct-slice-pie {
|
||||
fill: lighten($orange, 15);
|
||||
stroke-width: 4px;
|
||||
}
|
||||
// Pie Chart Starts
|
||||
// Donut chart Starts
|
||||
// Data -1
|
||||
.ct-series-a .ct-slice-donut-solid {
|
||||
fill: lighten($blue, 15);
|
||||
}
|
||||
|
||||
// Data -2
|
||||
.ct-series-b .ct-slice-donut-solid {
|
||||
fill: lighten($green, 15);
|
||||
}
|
||||
|
||||
// Data -3
|
||||
.ct-series-c .ct-slice-donut-solid {
|
||||
fill: lighten($red, 15);
|
||||
}
|
||||
|
||||
// Data -d
|
||||
.ct-series-a .ct-slice-donut-solid {
|
||||
fill: lighten($orange, 15);
|
||||
}
|
||||
|
||||
// E-commerce Dashboard Chart
|
||||
#ct-chart-dash-barChart {
|
||||
// Data -1
|
||||
.ct-series-a .ct-bar {
|
||||
stroke: lighten($red, 10);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
// Data -2
|
||||
.ct-series-b .ct-bar {
|
||||
stroke: lighten($blue, 10);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
// Data -3
|
||||
.ct-series-c .ct-bar {
|
||||
stroke: lighten($blue, 15);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
// Data -4
|
||||
.ct-series-d .ct-bar {
|
||||
stroke: lighten($blue, 20);
|
||||
stroke-width: 20px;
|
||||
stroke-dasharray: 0;
|
||||
stroke-linecap: squre;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
.chartjs-legend{
|
||||
ul{
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
@include flex-direction(row);
|
||||
@include flex-wrap(wrap);
|
||||
li{
|
||||
margin-right: 8%;
|
||||
@include display-flex;
|
||||
@include align-items(center);
|
||||
span{
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
margin-right: 1rem;
|
||||
display: inline-block;
|
||||
font-size: $default-font-size;
|
||||
}
|
||||
}
|
||||
}
|
||||
.rtl & {
|
||||
ul{
|
||||
padding-right: 0;
|
||||
li{
|
||||
margin-right: 0;
|
||||
margin-left: 8%;
|
||||
span{
|
||||
margin-right: 0;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
/* Clockpicker */
|
||||
|
||||
.clockpicker-popover {
|
||||
background-color: $border-color;
|
||||
&.left {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-left-color: $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.right {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-right-color: $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.top {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-top-color: $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.bottom {
|
||||
.arrow {
|
||||
&:after {
|
||||
border-bottom-color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
/* CodeMirror */
|
||||
|
||||
.CodeMirror {
|
||||
font-size: $default-font-size;
|
||||
height: auto;
|
||||
text-align: left;
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
/* Colcade */
|
||||
|
||||
* { box-sizing: border-box; }
|
||||
|
||||
.grid {
|
||||
border: 1px solid color(gray-light)est;
|
||||
}
|
||||
|
||||
.grid:after {
|
||||
display: block;
|
||||
content: '';
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.grid-col {
|
||||
float: left;
|
||||
width: 49%;
|
||||
margin-right: 2%;
|
||||
background: rgba(77,199,160,0.2);
|
||||
}
|
||||
|
||||
.grid-col--4 { margin-right: 0; }
|
||||
|
||||
/* hide two middle */
|
||||
.grid-col--2, .grid-col--3 { display: none; }
|
||||
|
||||
@media ( min-width: 768px ) {
|
||||
.grid-col { width: 32%; }
|
||||
.grid-col--2 { display: block; }
|
||||
}
|
||||
|
||||
@media ( min-width: 1200px ) {
|
||||
.grid-col { width: 23.5%; }
|
||||
.grid-col--2, .grid-col--3 { display: block; }
|
||||
}
|
||||
|
||||
.grid-item {
|
||||
background: rgb(77,199,160);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.grid-item--a { height: 80px; }
|
||||
.grid-item--b { height: 140px; }
|
||||
.grid-item--c { height: 300px; }
|
||||
@@ -0,0 +1,22 @@
|
||||
/* Colorpicker */
|
||||
|
||||
.asColorPicker-dropdown {
|
||||
max-width: initial;
|
||||
}
|
||||
.asColorPicker-trigger{
|
||||
height: auto;
|
||||
@extend .input-group-text;
|
||||
span {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.asColorPicker-input {
|
||||
@extend .form-control;
|
||||
}
|
||||
|
||||
.asColorPicker-wrap {
|
||||
@extend .input-group;
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
/* Context Menu */
|
||||
|
||||
.context-menu-icon {
|
||||
&:before {
|
||||
color: $black;
|
||||
font: normal normal normal 15px/1 "Material Design Icons";
|
||||
}
|
||||
&.context-menu-icon-cut {
|
||||
&:before {
|
||||
content: '\F190';
|
||||
}
|
||||
}
|
||||
&.context-menu-icon-edit {
|
||||
&:before {
|
||||
content: '\F3EF';
|
||||
}
|
||||
}
|
||||
&.context-menu-icon-copy {
|
||||
&:before {
|
||||
content: '\F18F';
|
||||
}
|
||||
}
|
||||
&.context-menu-icon-paste {
|
||||
&:before {
|
||||
content: '\F613';
|
||||
}
|
||||
}
|
||||
&.context-menu-icon-delete {
|
||||
&:before {
|
||||
content: '\F6CB';
|
||||
}
|
||||
}
|
||||
&.context-menu-icon-quit {
|
||||
&:before {
|
||||
content: '\F156';
|
||||
}
|
||||
}
|
||||
}
|
||||
.context-menu-list {
|
||||
box-shadow: none;
|
||||
border: 1px solid $border-color;
|
||||
.context-menu-item {
|
||||
span {
|
||||
color: $black;
|
||||
font-size: .75rem;
|
||||
font-family: $type1-semibold;
|
||||
}
|
||||
&.context-menu-hover {
|
||||
background: $black;
|
||||
span {
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
/* Data Tables */
|
||||
|
||||
.dataTables_wrapper {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
label {
|
||||
font-size: .8125rem;
|
||||
}
|
||||
select {
|
||||
@extend .form-control;
|
||||
padding: .4rem;
|
||||
}
|
||||
.dataTables_length {
|
||||
select {
|
||||
margin-left: .25rem;
|
||||
margin-right: .25rem;
|
||||
}
|
||||
}
|
||||
.dataTable {
|
||||
.btn {
|
||||
padding: 0.1rem 1rem;
|
||||
vertical-align: top;
|
||||
}
|
||||
thead {
|
||||
th {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
.sorting,
|
||||
.sorting_asc,
|
||||
.sorting_desc,
|
||||
.sorting_asc_disabled,
|
||||
.sorting_desc_disabled {
|
||||
&:before,
|
||||
&:after {
|
||||
line-height: 2.5;
|
||||
font-family: Material Design Icons;
|
||||
font-size: .65rem;
|
||||
}
|
||||
&:before {
|
||||
content: "\F05D";
|
||||
right: 1.2em;
|
||||
}
|
||||
&:after {
|
||||
content: "\F045";
|
||||
right: 0.2em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.dataTables_paginate {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.dataTables_info {
|
||||
font-size: $default-font-size;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,157 @@
|
||||
/* Datepicker */
|
||||
|
||||
.datepicker.datepicker-dropdown,.datepicker.datepicker-inline{
|
||||
padding: 0 25px;
|
||||
width: 30%;
|
||||
max-width: 500px;
|
||||
min-width: 250px;
|
||||
.datepicker-days{
|
||||
padding: .8rem .7rem;
|
||||
table.table-condensed{
|
||||
width:100%;
|
||||
thead{
|
||||
tr{
|
||||
th{
|
||||
text-align: center;
|
||||
padding: .5rem 0;
|
||||
&.prev{
|
||||
color: color(gray);
|
||||
padding-bottom: 1rem;
|
||||
padding-top: 1rem;
|
||||
text-align: left;
|
||||
background: $white;
|
||||
}
|
||||
&.datepicker-switch{
|
||||
color: color(gray);
|
||||
background: $white;
|
||||
padding-bottom: 1rem;
|
||||
padding-top: 1rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
&.next{
|
||||
color:grey;
|
||||
padding-bottom: 1rem;
|
||||
padding-top: 1rem;
|
||||
text-align: right;
|
||||
background: $white;
|
||||
}
|
||||
&.dow{
|
||||
font-family: $type1-regular;
|
||||
color: color(gray);
|
||||
font-size: .875rem;
|
||||
font-weight: initial;
|
||||
&:first-child{
|
||||
text-align: left;
|
||||
}
|
||||
&:last-child{
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
tbody{
|
||||
position: relative;
|
||||
top: 13px;
|
||||
td{
|
||||
text-align: center;
|
||||
&.day{
|
||||
font-size: .9375rem;
|
||||
padding: .5rem 0;
|
||||
color: color(gray);
|
||||
&:hover{
|
||||
background: $white;
|
||||
}
|
||||
&:first-child{
|
||||
text-align: left;
|
||||
}
|
||||
&:last-child{
|
||||
text-align: right;
|
||||
}
|
||||
&.active{
|
||||
color:#fff;
|
||||
background:transparent;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&:before{
|
||||
content: "";
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
background: theme-color(success);
|
||||
@include border-radius(100%);
|
||||
display: block;
|
||||
margin: auto;
|
||||
vertical-align: middle;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
z-index: -1;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
&.today{
|
||||
color:#fff;
|
||||
background:transparent;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
&:before{
|
||||
content: "";
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
background: theme-color(primary);
|
||||
@include border-radius(100%);
|
||||
display: block;
|
||||
margin: auto;
|
||||
vertical-align: middle;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
z-index: -1;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.old.day{
|
||||
color: darken(color(gray-lightest),4.5%);
|
||||
}
|
||||
&.new.day{}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.datepicker.datepicker-inline{
|
||||
width:100%;
|
||||
max-width: 100%;
|
||||
min-width: 250px;
|
||||
thead{
|
||||
tr{
|
||||
th{
|
||||
&.prev{
|
||||
color:grey;
|
||||
padding-bottom:0.5rem;
|
||||
padding-top:0.5rem;
|
||||
}
|
||||
&.datepicker-switch{
|
||||
color: theme-color(primary);
|
||||
padding-bottom:0.5rem;
|
||||
padding-top:0.5rem;
|
||||
}
|
||||
&.next{
|
||||
color:grey;
|
||||
padding-bottom:0.5rem;
|
||||
padding-top:0.5rem;
|
||||
}
|
||||
&.dow{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.datepicker {
|
||||
> div {
|
||||
display: initial;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
/* Dropify */
|
||||
|
||||
.dropify-wrapper{
|
||||
border: 2px dashed $border-color;
|
||||
@include border-radius(7px);
|
||||
&:hover{
|
||||
background-size: 30px 30px;
|
||||
background-image: -webkit-linear-gradient(135deg,#F2F7F8 25%,transparent 25%,transparent 50%,#F2F7F8 50%,#F2F7F8 75%,transparent 75%,transparent);
|
||||
background-image: linear-gradient(135deg,#F2F7F8 25%,transparent 25%,transparent 50%,#F2F7F8 50%,#F2F7F8 75%,transparent 75%,transparent);
|
||||
-webkit-animation: stripes 2s linear infinite;
|
||||
animation: stripes 2s linear infinite;
|
||||
}
|
||||
.dropify-message{
|
||||
span.file-icon{
|
||||
&:before {
|
||||
display: inline-block;
|
||||
font: normal normal normal 24px/1 "Material Design Icons";
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
line-height: inherit;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
content: '\F552';
|
||||
color: $body-color;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
}
|
||||
p{
|
||||
font-size: .8125rem;
|
||||
color: $body-color;
|
||||
}
|
||||
}
|
||||
.dropify-preview{
|
||||
.dropify-infos{
|
||||
background: rgba(255,255,255,.9);
|
||||
.dropify-infos-inner{
|
||||
.dropify-filename{
|
||||
color: theme-color(primary);
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.dropify-infos-message{
|
||||
color :#333;
|
||||
font-weight:500;
|
||||
}
|
||||
}
|
||||
}
|
||||
.dropify-render{
|
||||
img{
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
}
|
||||
.dropify-clear{
|
||||
background: #fff;
|
||||
border: none;
|
||||
font-weight: 700;
|
||||
color: color(gray);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/* Dropzone */
|
||||
|
||||
.dropzone {
|
||||
border: 1px solid $border-color;
|
||||
height: 200px;
|
||||
.dz-message {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
span {
|
||||
font-size: .8125rem;
|
||||
color: $body-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/* Flot chart */
|
||||
|
||||
.float-chart-container {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 300px;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
.float-chart {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
canvas{
|
||||
position:absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
max-width: none;
|
||||
height: 400px;
|
||||
}
|
||||
@@ -0,0 +1,187 @@
|
||||
/* Full Calendar */
|
||||
|
||||
#calendar{
|
||||
.fc-header-toolbar{
|
||||
background: $white;
|
||||
padding: 28px 0px 28px 0px;
|
||||
margin-bottom: 0;
|
||||
.fc-button-group{
|
||||
.fc-button{
|
||||
box-shadow: none;
|
||||
padding: 1px 12px;
|
||||
@include border-radius(2px);
|
||||
margin-right: 4px;
|
||||
font-size: 0.9375rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.33;
|
||||
border: none;
|
||||
background: theme-color(primary);
|
||||
color: $white;
|
||||
text-shadow: none;
|
||||
@include transition-duration(0.3s);
|
||||
&:first-letter{
|
||||
text-transform: uppercase;
|
||||
}
|
||||
&.fc-state-active{
|
||||
background: $white;
|
||||
color: theme-color(primary);
|
||||
}
|
||||
&.fc-prev-button,&.fc-next-button{
|
||||
background: $white;
|
||||
color: theme-color(primary);
|
||||
margin-right: 7px;
|
||||
height: 2.0625rem;
|
||||
width: 2.25rem;
|
||||
border: none;
|
||||
span{
|
||||
top: -3px;
|
||||
right: 9px;
|
||||
&:after{
|
||||
font: normal normal normal 24px/1 "Material Design Icons";
|
||||
display: block;
|
||||
line-height: 21px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.fc-prev-button{
|
||||
span{
|
||||
&:after{
|
||||
content: "\F141";
|
||||
}
|
||||
}
|
||||
}
|
||||
&.fc-next-button{
|
||||
span{
|
||||
&:after{
|
||||
content: "\F142";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.fc-today-button{
|
||||
box-shadow: none;
|
||||
padding: 1px 12px;
|
||||
@include border-radius(2px);
|
||||
margin-right: 4px;
|
||||
font-size: 0.9375rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.33;
|
||||
border: none;
|
||||
background: theme-color(primary);
|
||||
color: $white;
|
||||
text-shadow: none;
|
||||
@include transition-duration(0.3s);
|
||||
&:first-letter{
|
||||
text-transform: uppercase;
|
||||
}
|
||||
}
|
||||
.fc-left,
|
||||
.fc-right {
|
||||
@media (max-width:767px) {
|
||||
float: none;
|
||||
.fc-button {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
.fc-center{
|
||||
h2{
|
||||
font-size: 1.125rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
@media (max-width:767px) {
|
||||
display: block;
|
||||
h2 {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.fc-view-container{
|
||||
.fc-view{
|
||||
border-color: $border-color;
|
||||
table{
|
||||
thead.fc-head{
|
||||
border-color: $border-color;
|
||||
tr{
|
||||
td{
|
||||
.fc-widget-header{
|
||||
border-top: none;
|
||||
table{
|
||||
thead{
|
||||
tr{
|
||||
th.fc-day-header{
|
||||
text-transform: uppercase;
|
||||
padding: 0.4375rem 0 0.4375rem 0;
|
||||
border-color: $border-color;
|
||||
font-size: $default-font-size;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
tbody.fc-body{
|
||||
tr{
|
||||
td.fc-widget-content{
|
||||
border-color: $border-color;
|
||||
.fc-day-grid-container{
|
||||
.fc-day-grid{
|
||||
.fc-row{
|
||||
border-color: $border-color;
|
||||
.fc-bg{
|
||||
table{
|
||||
tr{
|
||||
td{
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.fc-content-skeleton{
|
||||
table{
|
||||
thead{
|
||||
tr{
|
||||
td.fc-day-top{
|
||||
padding: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
tbody{
|
||||
tr{
|
||||
td{
|
||||
&.fc-event-container{
|
||||
.fc-h-event{
|
||||
background: theme-color(success);
|
||||
border: none;
|
||||
padding: 6px 12px 6px 22px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: $white;
|
||||
@include border-radius(0px);
|
||||
}
|
||||
}
|
||||
&.fc-more-cell{
|
||||
font-weight: 600;
|
||||
color: theme-color(dark);
|
||||
padding: 0 7px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
/* Google Charts */
|
||||
|
||||
.google-chart-container {
|
||||
.google-charts {
|
||||
width: 100%;
|
||||
height: 280px;
|
||||
min-height: 280px;
|
||||
min-width: 100%;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/* Icheck */
|
||||
|
||||
.icheck,
|
||||
.icheck-flat,
|
||||
.icheck-square,
|
||||
.icheck-line {
|
||||
margin-bottom: .5rem;
|
||||
label {
|
||||
font-size: .8125rem;
|
||||
line-height: 1.5;
|
||||
margin-left: 5px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
/* Jquery File Upload */
|
||||
|
||||
.ajax-upload-dragdrop {
|
||||
border-color: $border-color;
|
||||
border-style: dotted;
|
||||
max-width:100%;
|
||||
span {
|
||||
b {
|
||||
font-size: .8125rem;
|
||||
color: $body-color;
|
||||
font-weight: initial;
|
||||
}
|
||||
}
|
||||
.ajax-file-upload {
|
||||
background: theme-color(info);
|
||||
box-shadow: none;
|
||||
height: auto;
|
||||
@extend .btn;
|
||||
}
|
||||
}
|
||||
|
||||
.ajax-file-upload-container {
|
||||
min-height: 100px;
|
||||
.ajax-file-upload-statusbar {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
/* Js-grid */
|
||||
|
||||
.jsgrid {
|
||||
.jsgrid-button {
|
||||
background-image: url(../images/sprites/jsgrid-icons.png);
|
||||
}
|
||||
.jsgrid-grid-header {
|
||||
border: 1px solid $border-color;
|
||||
border-top: 0;
|
||||
}
|
||||
.jsgrid-table {
|
||||
@extend .table;
|
||||
th {
|
||||
font-weight: initial;
|
||||
font-family: $type1-semibold;
|
||||
}
|
||||
.jsgrid-filter-row {
|
||||
input[type=text],
|
||||
select {
|
||||
@extend .form-control;
|
||||
}
|
||||
input[type=number] {
|
||||
@extend .form-control;
|
||||
padding: .56rem 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.jsgrid-header-sort {
|
||||
&:before {
|
||||
margin-top: 10px;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.jsgrid-header-sort-asc {
|
||||
&:before {
|
||||
border-color: transparent transparent $body-color;
|
||||
}
|
||||
}
|
||||
.jsgrid-header-sort-desc {
|
||||
&:before {
|
||||
border-color: $body-color transparent transparent
|
||||
}
|
||||
}
|
||||
.jsgrid-pager {
|
||||
line-height: 2;
|
||||
@extend .pagination;
|
||||
.jsgrid-pager-nav-button,
|
||||
.jsgrid-pager-page {
|
||||
@extend .page-item;
|
||||
a {
|
||||
@extend .page-link;
|
||||
}
|
||||
}
|
||||
}
|
||||
.jsgrid-pager-current-page {
|
||||
padding: 0.5rem 0.75rem;
|
||||
font-weight: initial;
|
||||
line-height: 1.25;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
/* Jvectormap */
|
||||
|
||||
.jvectormap-container {
|
||||
background: $white;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
/* Light Gallery */
|
||||
|
||||
.lightGallery{
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
.image-tile{
|
||||
position: relative;
|
||||
@extend .col-xl-3;
|
||||
@extend .col-lg-3;
|
||||
@extend .col-md-3;
|
||||
@extend .col-md-4;
|
||||
@extend .col-6;
|
||||
margin-bottom: 30px;
|
||||
.demo-gallery-poster{
|
||||
@extend .d-flex;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
img{
|
||||
display: block;
|
||||
margin: auto;
|
||||
width: 40%;
|
||||
max-width: 60px;
|
||||
min-width: 20px;
|
||||
}
|
||||
}
|
||||
img{
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
/* Listify */
|
||||
|
||||
.listify-list{
|
||||
input{
|
||||
border: 1px solid $white-smoke;
|
||||
color: color(gray-light);
|
||||
background: #fff;
|
||||
}
|
||||
button{
|
||||
|
||||
}
|
||||
ul.list{
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
li{
|
||||
display: block;
|
||||
border-bottom: $border-property;
|
||||
padding: 15px 10px;
|
||||
h5{
|
||||
color: theme-color("primary");
|
||||
}
|
||||
p{
|
||||
color: color(gray-light);
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
/* No-ui-slider */
|
||||
|
||||
.noUi-target {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
@include border-radius(0px);
|
||||
&.noUi-horizontal{
|
||||
height: 0.25rem;
|
||||
.noUi-handle {
|
||||
left: -17px;
|
||||
}
|
||||
}
|
||||
&.noUi-vertical{
|
||||
width: 0.25rem;
|
||||
height: 156px;
|
||||
display: inline-block;
|
||||
.noUi-handle {
|
||||
left: -6px;
|
||||
}
|
||||
}
|
||||
|
||||
.noUi-base {
|
||||
background: color(gray-lightest);
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
|
||||
.noUi-connect {
|
||||
background: theme-color(primary);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.noUi-origin {
|
||||
background: theme-color(success);
|
||||
|
||||
.noUi-handle {
|
||||
position: relative;
|
||||
background: $white;
|
||||
@include border-radius(100%);
|
||||
border:$border-width solid $border-color;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
top: -7px;
|
||||
outline: none;
|
||||
@include transition-duration(0.4s);
|
||||
|
||||
&:after,
|
||||
&:before {
|
||||
display: none;
|
||||
}
|
||||
&:after {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top:5px;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: auto;
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
background: theme-color(primary);
|
||||
@include border-radius(100%);
|
||||
}
|
||||
.noUi-tooltip{
|
||||
font-family: $type1-semibold;
|
||||
@include border-radius(4px);
|
||||
border: none;
|
||||
line-height: 1;
|
||||
font-size: $default-font-size;
|
||||
padding: 13px 12px;
|
||||
bottom: 190%;
|
||||
}
|
||||
&.noUi-active {}
|
||||
}
|
||||
}
|
||||
}
|
||||
.noUi-pips{
|
||||
.noUi-marker-horizontal,.noUi-marker-vertical{
|
||||
background: $border-color;
|
||||
}
|
||||
.noUi-marker-horizontal{
|
||||
height: 9px;
|
||||
width: 1px;
|
||||
}
|
||||
.noUi-marker-vertical{
|
||||
height: 1px;
|
||||
width: 9px;
|
||||
}
|
||||
.noUi-value{
|
||||
color: $black;
|
||||
font-size: 0.94rem;
|
||||
font-family: $type1-semibold;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Slider Color variations */
|
||||
@each $color, $value in $theme-colors {
|
||||
.slider-#{$color} {
|
||||
@include slider-color-variant($value);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
/* Owl-carousel */
|
||||
|
||||
.owl-carousel {
|
||||
img {
|
||||
border-radius: 4px;
|
||||
}
|
||||
&.full-width {
|
||||
.owl-nav {
|
||||
position: absolute;
|
||||
top: 30%;
|
||||
width: 100%;
|
||||
margin-top: 0;
|
||||
.owl-prev,
|
||||
.owl-next {
|
||||
background: transparent;
|
||||
color: $white;
|
||||
i {
|
||||
&:before {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: rgba($black, .5);
|
||||
border-radius: 100%;
|
||||
font-size: 1.6rem;
|
||||
font-weight: bold;
|
||||
line-height: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.owl-prev {
|
||||
float: left;
|
||||
}
|
||||
.owl-next {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.owl-dots {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
.item-video {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
/* Progressbar-js */
|
||||
|
||||
.ui-progress {
|
||||
border-radius: 50px;
|
||||
svg {
|
||||
background: $border-color;
|
||||
border-radius: 50px;
|
||||
}
|
||||
}
|
||||
.progressbar-js-circle {
|
||||
width: 100%;
|
||||
}
|
||||
@@ -0,0 +1,143 @@
|
||||
/* Pws-tabs */
|
||||
|
||||
.pws_tabs_container {
|
||||
ul.pws_tabs_controll {
|
||||
border-bottom: 1px solid theme-color(success);
|
||||
li {
|
||||
&:first-child{
|
||||
a{
|
||||
@include border-radius(5px 0px 0px 0px);
|
||||
}
|
||||
}
|
||||
&:last-child{
|
||||
a{
|
||||
border-right: 1px solid theme-color(success);
|
||||
@include border-radius(0px 5px 0px 0px);
|
||||
}
|
||||
}
|
||||
a {
|
||||
border: 1px solid theme-color(success);
|
||||
border-bottom: none;
|
||||
border-right: none;
|
||||
background: #fff;
|
||||
color: theme-color(success);
|
||||
padding: 0.6em 1.3em;
|
||||
margin-right: 0;
|
||||
|
||||
&:hover {
|
||||
background: #fff;
|
||||
color: theme-color(success);
|
||||
}
|
||||
|
||||
&.pws_tab_active {
|
||||
background: theme-color(success);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.demo-tabs {
|
||||
border: 1px solid theme-color(success);
|
||||
@include border-radius(0px 5px 5px 5px);
|
||||
overflow: hidden;
|
||||
background: color(white-smoke);
|
||||
margin-bottom: 45px;
|
||||
padding-top: 3.5rem;
|
||||
|
||||
.CodeMirror {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
// Styles for vertical Tab
|
||||
&.pws_tabs_vertical{
|
||||
.pws_tabs_controll{
|
||||
border-right: none;
|
||||
border-bottom:none;
|
||||
li{
|
||||
&:first-child{
|
||||
a{
|
||||
@include border-radius(5px 0px 0px 0px);
|
||||
}
|
||||
}
|
||||
&:last-child{
|
||||
a{
|
||||
border-bottom: 1px solid theme-color(success);
|
||||
@include border-radius(0px 0px 0px 5px);
|
||||
border-right: 0px;
|
||||
}
|
||||
}
|
||||
a{
|
||||
@include border-radius(0px);
|
||||
border: 1px solid theme-color(success);
|
||||
border-right: none;
|
||||
border-bottom: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Styles for vertical Tab
|
||||
|
||||
// Styles for horizontal Tab
|
||||
&.pws_tabs_horizontal_bottom{
|
||||
.pws_tabs_list{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.pws_tabs_controll{
|
||||
border-top: 1px solid theme-color(success);
|
||||
border-right: none;
|
||||
border-bottom: none;
|
||||
li{
|
||||
&:first-child{
|
||||
a{
|
||||
@include border-radius(0px 0px 0px 5px);
|
||||
}
|
||||
}
|
||||
&:last-child{
|
||||
a{
|
||||
@include border-radius(0px 0px 5px 0px);
|
||||
border-right: 1px solid theme-color(success);
|
||||
}
|
||||
}
|
||||
a{
|
||||
@include border-radius(0px);
|
||||
border: 1px solid theme-color(success);
|
||||
border-top: none;
|
||||
border-right: none;
|
||||
margin-right: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Styles for vertical Tab
|
||||
|
||||
// Styles for RTL Tab
|
||||
&.pws_tabs_rtl{
|
||||
.pws_tabs_controll {
|
||||
li {
|
||||
&:first-child{
|
||||
a{
|
||||
@include border-radius(0px 5px 0px 0px);
|
||||
border-right: 1px solid theme-color(success);
|
||||
}
|
||||
}
|
||||
&:last-child{
|
||||
a{
|
||||
border-right: none;
|
||||
@include border-radius(5px 0px 0px 0px);
|
||||
}
|
||||
}
|
||||
a {
|
||||
border: 1px solid theme-color(success);
|
||||
border-bottom: none;
|
||||
border-right: none;
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// Styles for RTL Tab
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
/* Quill Editor */
|
||||
|
||||
.quill-container {
|
||||
height: 300px;
|
||||
}
|
||||
.ql-toolbar,
|
||||
.quill-container {
|
||||
&.ql-snow {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,75 @@
|
||||
/* Rating */
|
||||
|
||||
.br-theme-fontawesome-stars,
|
||||
.br-theme-css-stars {
|
||||
.br-widget {
|
||||
a.br-selected,
|
||||
a.br-active {
|
||||
&:after {
|
||||
color: color(yellow);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.br-theme-bars-1to10,
|
||||
.br-theme-bars-movie,
|
||||
.br-theme-bars-pill,
|
||||
.br-theme-bars-reversed,
|
||||
.br-theme-bars-horizontal {
|
||||
.br-widget {
|
||||
a {
|
||||
background-color: rgba(theme-color(warning), .6);
|
||||
color: theme-color(warning);
|
||||
&.br-selected,
|
||||
&.br-active {
|
||||
background-color: theme-color(warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.br-theme-bars-square {
|
||||
.br-widget {
|
||||
a {
|
||||
border-color: rgba(theme-color(warning), .6);
|
||||
color: rgba(theme-color(warning), .6);
|
||||
&.br-selected,
|
||||
&.br-active {
|
||||
border-color: theme-color(warning);
|
||||
color: theme-color(warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.br-theme-bars-movie,
|
||||
.br-theme-bars-reversed,
|
||||
.br-theme-bars-1to10,
|
||||
.br-theme-bars-horizontal {
|
||||
.br-widget {
|
||||
.br-current-rating {
|
||||
color: $body-color;
|
||||
font-size: $default-font-size;
|
||||
font-weight: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.br-theme-bars-1to10 {
|
||||
height: 26px;
|
||||
.br-widget {
|
||||
height: 24px;
|
||||
.br-current-rating {
|
||||
line-height: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.br-theme-bars-pill {
|
||||
.br-widget {
|
||||
a {
|
||||
line-height: 2.5;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
/* Select2 */
|
||||
|
||||
.select2-container--default {
|
||||
.select2-results__option--highlighted[aria-selected] {
|
||||
background: theme-color(primary);
|
||||
}
|
||||
.select2-selection--single,
|
||||
.select2-dropdown,
|
||||
.select2-selection--multiple {
|
||||
border-color: $border-color;
|
||||
.select2-search__field {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
.select2-selection--single {
|
||||
height: auto;
|
||||
@extend .form-control;
|
||||
.select2-search__field {
|
||||
@extend .form-control;
|
||||
}
|
||||
.select2-selection__rendered {
|
||||
line-height: 14px;
|
||||
}
|
||||
}
|
||||
.select2-dropdown {
|
||||
font-size: .8125rem;
|
||||
}
|
||||
&.select2-container--focus {
|
||||
.select2-selection--multiple {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
.select2-selection--multiple {
|
||||
.select2-selection__choice {
|
||||
color: color(white);
|
||||
border: 0;
|
||||
border-radius: 3px;
|
||||
padding: 6px;
|
||||
font-size: .625rem;
|
||||
font-family: inherit;
|
||||
line-height: 1;
|
||||
.select2-selection__choice__remove {
|
||||
color: color(white);
|
||||
}
|
||||
&:nth-child(5n+1) {
|
||||
background: theme-color(primary);
|
||||
}
|
||||
&:nth-child(5n+2) {
|
||||
background: theme-color(success);
|
||||
}
|
||||
&:nth-child(5n+3) {
|
||||
background: theme-color(info);
|
||||
}
|
||||
&:nth-child(5n+4) {
|
||||
background: theme-color(danger);
|
||||
}
|
||||
&:nth-child(5n+5) {
|
||||
background: theme-color(warning);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
/* Summernote Editor */
|
||||
|
||||
.note-editor{
|
||||
&.note-frame {
|
||||
border: 1px solid $border-color;
|
||||
}
|
||||
}
|
||||
.note-popover {
|
||||
border: 1px solid $border-color;
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
/* SweetAlert */
|
||||
|
||||
.swal2-container {
|
||||
z-index: 1500;
|
||||
}
|
||||
|
||||
.swal2-modal {
|
||||
min-height: 315px;
|
||||
@extend .d-flex;
|
||||
@include align-items(center);
|
||||
@include justify-content(center);
|
||||
@include flex-direction(column);
|
||||
@include border-radius(10px);
|
||||
|
||||
.swal2-title {
|
||||
font-size: 25px;
|
||||
line-height: 1;
|
||||
font-family: $type1-semibold;
|
||||
color: $body-color;
|
||||
font-weight: initial;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.swal2-icon,
|
||||
.swal2-success-ring {
|
||||
margin-top: 0;
|
||||
margin-bottom: 42px;
|
||||
}
|
||||
|
||||
.swal2-buttonswrapper {
|
||||
margin-top: 0;
|
||||
padding: 0;
|
||||
|
||||
.swal2-styled {
|
||||
@extend .btn;
|
||||
margin-top: 0;
|
||||
font-weight: initial;
|
||||
|
||||
&.swal2-confirm {
|
||||
@extend .btn;
|
||||
@extend .bg-success;
|
||||
@extend .border-success;
|
||||
font-weight: initial;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
&.swal2-cancel {
|
||||
@extend .btn;
|
||||
margin-top: 32px;
|
||||
border: 1px solid $border-color;
|
||||
color: $white;
|
||||
font-weight: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.swal2-content {
|
||||
font-size: $default-font-size;
|
||||
font-family: $type1-semibold;
|
||||
color: $body-color;
|
||||
font-weight: initial;
|
||||
margin-top: 11px;
|
||||
}
|
||||
|
||||
.swal2-close {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.swal2-success-ring {
|
||||
left: -30px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
/* Switchery */
|
||||
|
||||
.switchery {
|
||||
width: 35px;
|
||||
height: 21px;
|
||||
border-radius: 11px;
|
||||
>small {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.switchery-small {
|
||||
width: 25px;
|
||||
height: 13px;
|
||||
>small {
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
.switchery-large {
|
||||
width: 50px;
|
||||
height: 28px;
|
||||
border-radius: 14px;
|
||||
>small {
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/* Tags */
|
||||
|
||||
div.tagsinput {
|
||||
padding: 15px 15px 10px;
|
||||
border-color: $border-color;
|
||||
span.tag {
|
||||
background: theme-color(primary);
|
||||
border: 0;
|
||||
color: color(white);
|
||||
padding: 6px 14px;
|
||||
font-size: .8125rem;
|
||||
font-family: inherit;
|
||||
line-height: 1;
|
||||
a {
|
||||
color: color(white);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/* TinyMCE Editor */
|
||||
|
||||
.mce-tinymce {
|
||||
&.mce-panel,
|
||||
.mce-panel {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
/* Toast */
|
||||
|
||||
.jq-toast-wrap {
|
||||
.jq-icon-success {
|
||||
background-color: theme-color("success");
|
||||
}
|
||||
.jq-icon-info {
|
||||
background-color: theme-color("info");
|
||||
}
|
||||
.jq-icon-warning {
|
||||
background-color: theme-color("warning");
|
||||
}
|
||||
.jq-icon-error {
|
||||
background-color: theme-color("danger");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
/* Typeahead */
|
||||
|
||||
.tt-menu,
|
||||
.gist {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.twitter-typeahead {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.typeahead,
|
||||
.tt-query,
|
||||
.tt-hint {
|
||||
@extend .form-control;
|
||||
}
|
||||
|
||||
.typeahead {
|
||||
background-color: color(white);
|
||||
&:focus {
|
||||
border-color: $border-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.tt-query {
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
|
||||
.tt-hint {
|
||||
color: color(gray)
|
||||
}
|
||||
|
||||
.tt-menu {
|
||||
width: 100%;
|
||||
margin: 12px 0;
|
||||
padding: 8px 0;
|
||||
background-color: color(white);
|
||||
border: 1px solid $border-color;
|
||||
-webkit-border-radius: 8px;
|
||||
-moz-border-radius: 8px;
|
||||
border-radius: 8px;
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||||
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||||
box-shadow: 0 5px 10px rgba(0,0,0,.2);
|
||||
}
|
||||
|
||||
.tt-suggestion {
|
||||
padding: 3px 20px;
|
||||
font-size: inherit;
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
color: color(white);
|
||||
background-color: theme-color(primary);
|
||||
}
|
||||
.tt-cursor {
|
||||
color: color(white);
|
||||
background-color: theme-color(primary);
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,351 @@
|
||||
/* Wizard */
|
||||
|
||||
.wizard {
|
||||
display: block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
a {
|
||||
outline: 0;
|
||||
}
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
>li {
|
||||
display: block;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
>.steps {
|
||||
.current-info {
|
||||
position: absolute;
|
||||
left: -999em;
|
||||
}
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%;
|
||||
.number {
|
||||
font-size: $default-font-size;
|
||||
}
|
||||
>ul {
|
||||
>li {
|
||||
width: 25%;
|
||||
@media (max-width: 767px) {
|
||||
width: 50%;
|
||||
}
|
||||
float: left;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
width: auto;
|
||||
margin: 0 0.5em 0.5em;
|
||||
padding: 1em 1em;
|
||||
text-decoration: none;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
font-size: $default-font-size;
|
||||
font-family: $type1-semibold;
|
||||
&:hover {
|
||||
display: block;
|
||||
width: auto;
|
||||
margin: 0 0.5em 0.5em;
|
||||
padding: 1em;
|
||||
text-decoration: none;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
&:active {
|
||||
display: block;
|
||||
width: auto;
|
||||
margin: 0 0.5em 0.5em;
|
||||
padding: 1em;
|
||||
text-decoration: none;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
}
|
||||
.disabled {
|
||||
a {
|
||||
background: color(gray-lightest);
|
||||
color: color(gray);
|
||||
cursor: default;
|
||||
&:hover {
|
||||
background: color(gray-lightest);
|
||||
color: color(gray);
|
||||
cursor: default;
|
||||
}
|
||||
&:active {
|
||||
background: color(gray-lightest)e;
|
||||
color: color(gray);
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
.current {
|
||||
a {
|
||||
background: theme-color(primary);
|
||||
color: color(white);
|
||||
cursor: default;
|
||||
&:hover {
|
||||
background: theme-color(primary);
|
||||
color: color(white);
|
||||
cursor: default;
|
||||
}
|
||||
&:active {
|
||||
background: theme-color(primary);
|
||||
color: color(white);
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
.done {
|
||||
a {
|
||||
background: lighten(theme-color(primary), 20%);
|
||||
color: color(white);
|
||||
&:hover {
|
||||
background: lighten(theme-color(primary), 20%);
|
||||
color: color(white);
|
||||
}
|
||||
&:active {
|
||||
background: lighten(theme-color(primary), 20%);
|
||||
color: color(white);
|
||||
}
|
||||
}
|
||||
}
|
||||
.error {
|
||||
a {
|
||||
background: theme-color(danger);
|
||||
color: #fff;
|
||||
&:hover {
|
||||
background: theme-color(danger);
|
||||
color: #fff;
|
||||
}
|
||||
&:active {
|
||||
background: theme-color(danger);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
>.content {
|
||||
>.title {
|
||||
position: absolute;
|
||||
left: -999em;
|
||||
}
|
||||
background: $content-bg;
|
||||
display: block;
|
||||
margin: 0.5em;
|
||||
min-height: 24em;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
width: auto;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
>.body {
|
||||
float: left;
|
||||
position: absolute;
|
||||
width: 95%;
|
||||
height: 95%;
|
||||
padding: 2.5%;
|
||||
ul {
|
||||
list-style: disc;
|
||||
>li {
|
||||
display: list-item;
|
||||
}
|
||||
}
|
||||
>iframe {
|
||||
border: 0 none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
input {
|
||||
display: block;
|
||||
border: 1px solid $border-color;
|
||||
}
|
||||
input[type="checkbox"] {
|
||||
display: inline-block;
|
||||
}
|
||||
input.error {
|
||||
background: rgb(251, 227, 228);
|
||||
border: 1px solid lighten(theme-color(danger), 20%);
|
||||
color: theme-color(danger);
|
||||
}
|
||||
label {
|
||||
display: inline-block;
|
||||
margin-bottom: 0.5em;
|
||||
}
|
||||
label.error {
|
||||
color: theme-color(danger);
|
||||
display: inline-block;
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
}
|
||||
}
|
||||
>.actions {
|
||||
padding-top: 20px;
|
||||
>ul {
|
||||
>li {
|
||||
float: left;
|
||||
margin: 0 0.5em;
|
||||
}
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
}
|
||||
position: relative;
|
||||
display: block;
|
||||
text-align: right;
|
||||
width: 100%;
|
||||
a {
|
||||
@extend .btn;
|
||||
@extend .btn-primary;
|
||||
}
|
||||
.disabled {
|
||||
a {
|
||||
@extend .btn-outline-primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.vertical {
|
||||
>.steps {
|
||||
display: inline;
|
||||
float: left;
|
||||
width: 30%;
|
||||
@media (max-width: 767px) {
|
||||
width: 42%;
|
||||
}
|
||||
>ul {
|
||||
>li {
|
||||
float: none;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
>.content {
|
||||
display: inline;
|
||||
float: left;
|
||||
margin: 0 2.5% 0.5em 2.5%;
|
||||
width: 65%;
|
||||
@media (max-width: 767px) {
|
||||
width: 52%;
|
||||
}
|
||||
}
|
||||
>.actions {
|
||||
display: inline;
|
||||
float: right;
|
||||
margin: 0 2.5%;
|
||||
width: 95%;
|
||||
@media (max-width: 767px) {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
>ul {
|
||||
>li {
|
||||
margin: 0 0 0 1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tabcontrol {
|
||||
display: block;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
a {
|
||||
outline: 0;
|
||||
}
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
>li {
|
||||
display: block;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
>.steps {
|
||||
.current-info {
|
||||
position: absolute;
|
||||
left: -999em;
|
||||
}
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%;
|
||||
>ul {
|
||||
position: relative;
|
||||
margin: 6px 0 0 0;
|
||||
top: 1px;
|
||||
z-index: 1;
|
||||
>li {
|
||||
float: left;
|
||||
margin: 5px 2px 0 0;
|
||||
padding: 1px;
|
||||
-webkit-border-top-left-radius: 5px;
|
||||
-webkit-border-top-right-radius: 5px;
|
||||
-moz-border-radius-topleft: 5px;
|
||||
-moz-border-radius-topright: 5px;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
&:hover {
|
||||
background: #edecec;
|
||||
border: 1px solid $border-color;
|
||||
padding: 0;
|
||||
}
|
||||
>a {
|
||||
color: color(gray-light);
|
||||
display: inline-block;
|
||||
border: 0 none;
|
||||
margin: 0;
|
||||
padding: 10px 30px;
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
>li.current {
|
||||
background: color(white);
|
||||
border: 1px solid $border-color;
|
||||
border-bottom: 0 none;
|
||||
padding: 0 0 1px 0;
|
||||
margin-top: 0;
|
||||
>a {
|
||||
padding: 15px 30px 10px 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
>.content {
|
||||
>.title {
|
||||
position: absolute;
|
||||
left: -999em;
|
||||
}
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 35em;
|
||||
overflow: hidden;
|
||||
border-top: 1px solid $border-color;
|
||||
padding-top: 20px;
|
||||
>.body {
|
||||
float: left;
|
||||
position: absolute;
|
||||
width: 95%;
|
||||
height: 95%;
|
||||
padding: 2.5%;
|
||||
ul {
|
||||
list-style: disc;
|
||||
>li {
|
||||
display: list-item;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,150 @@
|
||||
/* Wysi Editor */
|
||||
|
||||
.wysi-editor {
|
||||
#toolbar [data-wysihtml-action] {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#toolbar,
|
||||
textarea {
|
||||
width: 920px;
|
||||
padding: 5px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-ms-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 280px;
|
||||
border: 1px solid $border-color;
|
||||
font-family: inherit;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
textarea:focus {
|
||||
color: black;
|
||||
border: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.wysihtml-action-active,
|
||||
.wysihtml-command-active {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
[data-wysihtml-dialog] {
|
||||
margin: 5px 0 0;
|
||||
padding: 5px;
|
||||
border: 1px solid #666;
|
||||
}
|
||||
|
||||
a[data-wysihtml-command-value="red"] {
|
||||
color: theme-color(danger);
|
||||
}
|
||||
|
||||
a[data-wysihtml-command-value="green"] {
|
||||
color: theme-color(success);
|
||||
}
|
||||
|
||||
a[data-wysihtml-command-value="blue"] {
|
||||
color: theme-color(info);
|
||||
}
|
||||
|
||||
.wysihtml-editor,
|
||||
.wysihtml-editor table td {
|
||||
outline: 1px dotted $border-color;
|
||||
}
|
||||
|
||||
code {
|
||||
background: #ddd;
|
||||
padding: 10px;
|
||||
white-space: pre;
|
||||
display: block;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
display: block;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #fff;
|
||||
margin-bottom: 9px;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.toolbar a {
|
||||
display: inline-block;
|
||||
height: 1.5em;
|
||||
border-radius: 3px;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5em;
|
||||
text-decoration: none;
|
||||
background: color(white);
|
||||
border: 1px solid $border-color;
|
||||
padding: 0 0.2em;
|
||||
margin: 1px 0;
|
||||
color: theme-color(primary);
|
||||
}
|
||||
|
||||
.toolbar .wysihtml-action-active,
|
||||
.toolbar a.wysihtml-command-active {
|
||||
background: #222;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.toolbar .block {
|
||||
padding: 1px;
|
||||
display: inline-block;
|
||||
background: #eee;
|
||||
border-radius: 3px;
|
||||
margin: 0 1px 1px 0;
|
||||
}
|
||||
|
||||
div[data-wysihtml-dialog="createTable"] {
|
||||
position: absolute;
|
||||
background: white;
|
||||
}
|
||||
|
||||
div[data-wysihtml-dialog="createTable"] td {
|
||||
width: 10px;
|
||||
height: 5px;
|
||||
border: 1px solid $border-color;
|
||||
}
|
||||
|
||||
.wysihtml-editor table td.wysiwyg-tmp-selected-cell {
|
||||
outline: 2px solid theme-color(success);
|
||||
}
|
||||
|
||||
.editor-container-tag {
|
||||
padding: 5px 10px;
|
||||
position: absolute;
|
||||
color: white;
|
||||
background: rgba(0,0,0,0.8);
|
||||
width: 100px;
|
||||
margin-left: -50px;
|
||||
-webkit-transition: 0.1s left, 0.1s top;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
max-width: 700px;
|
||||
margin: 40px;
|
||||
}
|
||||
|
||||
.editable .wysihtml-uneditable-container {
|
||||
outline: 1px dotted $border-color;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.editable .wysihtml-uneditable-container-right {
|
||||
float: right;
|
||||
width: 50%;
|
||||
margin-left: 2em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.editable .wysihtml-uneditable-container-left {
|
||||
float: left;
|
||||
width: 50%;
|
||||
margin-right: 2em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
/* X-editable */
|
||||
|
||||
.editable-form {
|
||||
.editable {
|
||||
color: $body-color;
|
||||
font-size: .8125rem;
|
||||
}
|
||||
.editable-click {
|
||||
border-color: $body-color;
|
||||
}
|
||||
}
|
||||
.editable-container {
|
||||
&.editable-inline {
|
||||
max-width: 100%;
|
||||
.editableform {
|
||||
max-width: 100%;
|
||||
.control-group {
|
||||
max-width: 100%;
|
||||
white-space: initial;
|
||||
>div {
|
||||
max-width: 100%;
|
||||
}
|
||||
.editable-input {
|
||||
// max-width: 50%;
|
||||
input,
|
||||
textarea {
|
||||
max-width: 100%;
|
||||
}
|
||||
.combodate {
|
||||
.form-control {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
.editable-buttons {
|
||||
@media (max-width: 991px) {
|
||||
display: block;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.editable-submit {
|
||||
@extend .btn-info;
|
||||
@extend .btn-xs;
|
||||
@extend .mt-1;
|
||||
}
|
||||
.editable-cancel {
|
||||
@extend .btn-secondary;
|
||||
@extend .btn-xs;
|
||||
@extend .mt-1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user