initial
This commit is contained in:
@@ -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