first commit
This commit is contained in:
10
resources/frontend/core/sass/includes/components/button.scss
Normal file
10
resources/frontend/core/sass/includes/components/button.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.at-btn {
|
||||
&__text {
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
&__icon {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
@import '../variables.scss';
|
||||
|
||||
.at-collapse {
|
||||
border-radius: 0px;
|
||||
border: none;
|
||||
|
||||
.at-collapse__content .at-collapse__content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&__header {
|
||||
padding: 21px;
|
||||
border-bottom: 0!important;
|
||||
}
|
||||
|
||||
&__content {
|
||||
padding: 0 21px;
|
||||
|
||||
.at-collapse__header {
|
||||
padding: 21px 0;
|
||||
}
|
||||
}
|
||||
|
||||
&__item {
|
||||
&--active {
|
||||
background-color: $blue-3;
|
||||
|
||||
.at-collapse__content {
|
||||
background-color: $blue-3;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__icon.icon-chevron-right {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&--simple {
|
||||
.at-collapse__header {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
10
resources/frontend/core/sass/includes/components/index.scss
Normal file
10
resources/frontend/core/sass/includes/components/index.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
@import './progress.scss';
|
||||
@import './collapse.scss';
|
||||
@import './button.scss';
|
||||
@import './list.scss';
|
||||
@import './input.scss';
|
||||
@import './v-select.scss';
|
||||
@import './select.scss';
|
||||
@import './textarea.scss';
|
||||
@import './table.scss';
|
||||
@import './ql-editor.scss';
|
||||
@@ -0,0 +1,9 @@
|
||||
.at-input {
|
||||
&__original {
|
||||
padding: 8.5px 12px;
|
||||
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
13
resources/frontend/core/sass/includes/components/list.scss
Normal file
13
resources/frontend/core/sass/includes/components/list.scss
Normal file
@@ -0,0 +1,13 @@
|
||||
.list {
|
||||
&__item {
|
||||
border-bottom: 3px solid $blue-3 !important;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
&--active {
|
||||
background-color: $blue-3;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
@import '../variables.scss';
|
||||
|
||||
.at-progress {
|
||||
&--bar {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.icon {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.at-progress-bar {
|
||||
padding-right: 0;
|
||||
margin-right: 0;
|
||||
|
||||
&__inner {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
&__wraper {
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
.ql-toolbar {
|
||||
&.ql-snow {
|
||||
border: 1px solid $border-color-base !important;
|
||||
}
|
||||
}
|
||||
|
||||
.ql-container {
|
||||
&.ql-snow {
|
||||
border: 1px solid $border-color-base !important;
|
||||
}
|
||||
}
|
||||
35
resources/frontend/core/sass/includes/components/select.scss
Normal file
35
resources/frontend/core/sass/includes/components/select.scss
Normal file
@@ -0,0 +1,35 @@
|
||||
.at-select {
|
||||
|
||||
& .at-select__input {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
&__dropdown {
|
||||
box-shadow: 0px 0px 10px rgba(63, 51, 86, 0.1);
|
||||
}
|
||||
|
||||
&__input {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
&__clear {
|
||||
font-size: 14px;
|
||||
margin-top: -7px;
|
||||
}
|
||||
|
||||
&__arrow {
|
||||
font-size: 14px;
|
||||
margin-top: -7px;
|
||||
color: $blue-1;
|
||||
}
|
||||
|
||||
&--error .at-select__selection {
|
||||
border: 1px solid $color-error;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
.at-table {
|
||||
tr {
|
||||
&:hover {
|
||||
background-color: $blue-3;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
.at-textarea {
|
||||
&--error .at-textarea__original {
|
||||
border: 1px solid $color-error;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
.vs {
|
||||
&__dropdown-toggle {
|
||||
background-color: #fff;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&__dropdown-toggle:hover {
|
||||
border: 1px solid $brand-blue-400;
|
||||
}
|
||||
|
||||
&__selected {
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
&__selected-options {
|
||||
margin-right: 25px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&__selected {
|
||||
padding: 6px 12px;
|
||||
font-size: 0.9rem;
|
||||
line-height: 26px;
|
||||
color: $text-color;
|
||||
white-space: nowrap;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
&__search,
|
||||
&__search:focus {
|
||||
margin: 0;
|
||||
border: none;
|
||||
padding: 6px 12px;
|
||||
font-size: 0.9rem;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
&__dropdown-menu {
|
||||
top: calc(100% + 2px);
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&__dropdown-option {
|
||||
padding: 8px 12px;
|
||||
font-size: 0.9rem;
|
||||
line-height: 1.5;
|
||||
color: $text-color;
|
||||
}
|
||||
|
||||
&__no-options {
|
||||
padding: 6px 12px;
|
||||
font-size: 0.9rem;
|
||||
line-height: 26px;
|
||||
color: $text-color;
|
||||
}
|
||||
|
||||
&__clear {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&__actions {
|
||||
display: none;
|
||||
}
|
||||
|
||||
&--open &__dropdown-toggle {
|
||||
border: 1px solid $brand-blue-400;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.has-error .vs__dropdown-toggle {
|
||||
border: 1px solid $color-error;
|
||||
}
|
||||
76
resources/frontend/core/sass/includes/core.scss
Normal file
76
resources/frontend/core/sass/includes/core.scss
Normal file
@@ -0,0 +1,76 @@
|
||||
body {
|
||||
//min-width: $container-lg;
|
||||
}
|
||||
|
||||
.content-wrapper {
|
||||
padding-top: 1rem;
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
.busy-mask {
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: 30px;
|
||||
color: $blue-1;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.at-container {
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #EEEEF5;
|
||||
box-sizing: border-box;
|
||||
box-shadow: 0px 0px 100px rgba(63, 51, 86, 0.05);
|
||||
border-radius: $border-radius-lger;
|
||||
|
||||
&__inner {
|
||||
padding: $spacing-06;
|
||||
}
|
||||
}
|
||||
|
||||
.controls-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
&__item {
|
||||
margin-bottom: $spacing-03;
|
||||
margin-right: $spacing-03;
|
||||
position: relative;
|
||||
|
||||
&:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
&--left-auto {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.at-input__original,
|
||||
.at-select__selection,
|
||||
.vs__dropdown-toggle {
|
||||
border: 1px solid #eeeef5;
|
||||
}
|
||||
}
|
||||
|
||||
&__btn {
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #EEEEF5;
|
||||
border-radius: 10px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
.label-tooltip {
|
||||
text-decoration: none;
|
||||
border-bottom: 1px dashed #3f536e;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.container-fluid {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
}
|
||||
25
resources/frontend/core/sass/includes/crud.scss
Normal file
25
resources/frontend/core/sass/includes/crud.scss
Normal file
@@ -0,0 +1,25 @@
|
||||
.crud {
|
||||
.page-controls {
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1em;
|
||||
|
||||
.control-items {
|
||||
display: flex;
|
||||
flex-flow: row nowrap
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
&__content {
|
||||
padding: 1.75em;
|
||||
@media (max-width: 768px) {
|
||||
padding: 1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
17
resources/frontend/core/sass/includes/form.scss
Normal file
17
resources/frontend/core/sass/includes/form.scss
Normal file
@@ -0,0 +1,17 @@
|
||||
.at-input {
|
||||
font-size: initial;
|
||||
|
||||
&--small &__original {
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
.at-select {
|
||||
&__selection {
|
||||
padding: 6px 12px;
|
||||
}
|
||||
|
||||
&--small &__selection {
|
||||
padding: 0 24px 0 8px;
|
||||
}
|
||||
}
|
||||
53
resources/frontend/core/sass/includes/menu.scss
Normal file
53
resources/frontend/core/sass/includes/menu.scss
Normal file
@@ -0,0 +1,53 @@
|
||||
.at-menu {
|
||||
&__item {
|
||||
color: $grey-400;
|
||||
|
||||
a {
|
||||
color: $grey-400;
|
||||
}
|
||||
|
||||
&#{&}--active &-link:not(.router-link-active)::after {
|
||||
transform: scaleX(0);
|
||||
}
|
||||
}
|
||||
|
||||
&__submenu {
|
||||
color: $grey-400;
|
||||
|
||||
&-title {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $grey-400;
|
||||
}
|
||||
|
||||
&#{&}--active &-link:not(.router-link-active)::after {
|
||||
transform: scaleX(0);
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&.at-menu__submenu--active {
|
||||
> .at-menu__submenu-title {
|
||||
color: $blue-900!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__item-link {
|
||||
font-weight: bold;
|
||||
color: $grey-400!important;
|
||||
|
||||
&.router-link-active {
|
||||
color: $blue-900!important;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
color: $blue-900!important;
|
||||
}
|
||||
|
||||
&::after {
|
||||
background-color: $blue-900!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
10
resources/frontend/core/sass/includes/projects.scss
Normal file
10
resources/frontend/core/sass/includes/projects.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.projects {
|
||||
&-grid {
|
||||
&__project {
|
||||
white-space: pre;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
28
resources/frontend/core/sass/includes/tasks.scss
Normal file
28
resources/frontend/core/sass/includes/tasks.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
.tasks {
|
||||
&-grid {
|
||||
&__task,
|
||||
&__project {
|
||||
white-space: pre;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
&__task {
|
||||
&--inactive {
|
||||
color: #888;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
}
|
||||
|
||||
&__tags {
|
||||
display: flex;
|
||||
column-gap: 0.3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.crud__content.crud__item-view {
|
||||
pre {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
}
|
||||
65
resources/frontend/core/sass/includes/typo.scss
Normal file
65
resources/frontend/core/sass/includes/typo.scss
Normal file
@@ -0,0 +1,65 @@
|
||||
h1, h2, h3, h4, h5, h6, h1, .h1, .h2, .h3, .h4, .h5, .h6 {
|
||||
font-family: $heading-font-family;
|
||||
color: $gray-1;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
line-height: 50px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-weight: 600;
|
||||
font-size: 30px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-weight: bold;
|
||||
font-size: 25px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-weight: bold;
|
||||
font-size: 20px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
|
||||
.h1 {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
line-height: 50px;
|
||||
}
|
||||
|
||||
.h2 {
|
||||
font-weight: 600;
|
||||
font-size: 30px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
.h3 {
|
||||
font-weight: bold;
|
||||
font-size: 25px;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
.h4 {
|
||||
font-weight: bold;
|
||||
font-size: 20px;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.h5 {
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
line-height: 20px;
|
||||
}
|
||||
865
resources/frontend/core/sass/includes/variables.scss
Normal file
865
resources/frontend/core/sass/includes/variables.scss
Normal file
@@ -0,0 +1,865 @@
|
||||
@use "sass:math";
|
||||
@import "~@cattr/ui-kit/src/stylesheet/src/mixins/index";
|
||||
@import "~@cattr/ui-kit/src/stylesheet/src/variables/timing-function";
|
||||
|
||||
$heading-font-family: 'Nunito', sans-serif;
|
||||
|
||||
/* Prefix */
|
||||
$css-prefix: at;
|
||||
|
||||
/* Cattr Color Palette */
|
||||
$blue-1 : #2E2EF9;
|
||||
$blue-2 : #6C6CFF;
|
||||
$blue-3 : #F4F4FF;
|
||||
|
||||
$red-1 : #FF5569;
|
||||
$red-2 : #FF919D;
|
||||
$red-3 : #FFBEC6;
|
||||
|
||||
$green-1 : #2DC48D;
|
||||
$green-2 : #6ECEB2;
|
||||
$green-3 : #A7E6D7;
|
||||
|
||||
$gray-1 : #151941;
|
||||
$gray-2 : #59566E;
|
||||
$gray-3 : #B1B1BE;
|
||||
$gray-4 : #E0DFED;
|
||||
$gray-5 : #E7ECF2;
|
||||
$gray-6 : #EEEEF5;
|
||||
$gray-7 : #FAFAFA;
|
||||
$gray-8 : #FFFFFF;
|
||||
|
||||
/* The Color of O2Team Brand */
|
||||
$brand-color : #6190E8;
|
||||
$brand-color-light : #78A4F4;
|
||||
$brand-color-dark : #346FC2;
|
||||
|
||||
/* Color */
|
||||
$color-normal : #6190E8;
|
||||
$color-primary : #6C6CFF;
|
||||
$color-success : #2DC48D;
|
||||
$color-error : #FF5569;
|
||||
$color-warning : #FFC82C;
|
||||
$color-info : #78A4FA;
|
||||
$color-white : #FFF;
|
||||
|
||||
/* Color PalettC */
|
||||
$brand-blue-50 : #ECF2FC;
|
||||
$brand-blue-100 : #D0DEF8;
|
||||
$brand-blue-200 : #B0C8F4;
|
||||
$brand-blue-300 : #90B1EF;
|
||||
$brand-blue-400 : #79A1EB;
|
||||
$brand-blue-500 : #6190E8;
|
||||
$brand-blue-600 : #5988E5;
|
||||
$brand-blue-700 : #F4F4FF;
|
||||
$brand-blue-800 : #6C6CFF;
|
||||
$brand-blue-900 : #2e2ef9;// #4949F9;
|
||||
|
||||
$green-50 : #E3F9ED;
|
||||
$green-100 : #B8F0D1;
|
||||
$green-200 : #89E7B3;
|
||||
$green-300 : #5ADD94;
|
||||
$green-400 : #36D57D;
|
||||
$green-500 : #2dc38d; //#13CE66
|
||||
$green-600 : #11C95E;
|
||||
$green-700 : #0EC253;
|
||||
$green-800 : #0BBC49;
|
||||
$green-900 : #06B038;
|
||||
|
||||
$red-50 : #FFE9E9;
|
||||
$red-100 : #FFC8C8;
|
||||
$red-200 : #FFA4A4;
|
||||
$red-300 : #FF8080;
|
||||
$red-400 : #FF6464;
|
||||
$red-500 : #FF4949;
|
||||
$red-600 : #FF4242;
|
||||
$red-700 : #FF3939;
|
||||
$red-800 : #FF3131;
|
||||
$red-900 : #FF2121;
|
||||
|
||||
$yellow-50 : #FFF8E6;
|
||||
$yellow-100 : #FFEFC0;
|
||||
$yellow-200 : #FFE496;
|
||||
$yellow-300 : #FFD96B;
|
||||
$yellow-400 : #FFD04C;
|
||||
$yellow-500 : #FFC82C;
|
||||
$yellow-600 : #FFC227;
|
||||
$yellow-700 : #FFBB21;
|
||||
$yellow-800 : #FFB41B;
|
||||
$yellow-900 : #FFA710;
|
||||
|
||||
$blue-50 : #EFF4FE;
|
||||
$blue-100 : #D7E4FE;
|
||||
$blue-200 : #BCD2FD;
|
||||
$blue-300 : #A1BFFC;
|
||||
$blue-400 : #8CB2FB;
|
||||
$blue-500 : #78A4FA;
|
||||
$blue-600 : #709CF9;
|
||||
$blue-700 : #F4F4FF;
|
||||
$blue-800 : #6C6CFF;
|
||||
$blue-900 : #2e2ef9;// #4949F9;
|
||||
|
||||
$grey-50 : #F7F7F7;
|
||||
$grey-100 : #ECECEC;
|
||||
$grey-200 : #DFDFDF;
|
||||
$grey-300 : #D2D2D2;
|
||||
$grey-400 : #C4C4CF;
|
||||
$grey-500 : #BFBFBF;
|
||||
$grey-600 : #B9B9B9;
|
||||
$grey-700 : #B1B1B1;
|
||||
$grey-800 : #A9A9A9;
|
||||
$grey-900 : #9B9B9B;
|
||||
|
||||
$black-50 : #E6E8EB;
|
||||
$black-100 : #C0C6CE;
|
||||
$black-200 : #96A0AD;
|
||||
$black-300 : #6B798C;
|
||||
$black-400 : #4C5D73;
|
||||
$black-500 : #2C405A;
|
||||
$black-600 : #273A52;
|
||||
$black-700 : #213248;
|
||||
$black-800 : #1B2A3F;
|
||||
$black-900 : #101C2E;
|
||||
|
||||
$text-color : #3F536E;
|
||||
$title-color : $brand-blue-900;
|
||||
|
||||
$border-color-gray : #CCC;
|
||||
$border-color-base : #C5D9E8;
|
||||
$border-color-split : tint($border-color-base, 20%);
|
||||
$border-color-light : tint($border-color-base, 30%);
|
||||
$border-color-lighter : tint($border-color-base, 50%);
|
||||
$border-color-lightest : tint($border-color-base, 80%);
|
||||
|
||||
$bg-color : #fdfdfd;
|
||||
$bg-color-base : #FAFBFC;
|
||||
$bg-color-light : #ECF5FD;
|
||||
$bg-color-lighter : tint($bg-color-light, 50%);
|
||||
$bg-color-gray : #f7f7f7;
|
||||
|
||||
/* Assistant Color */
|
||||
$roof-color : #C2ABC7;
|
||||
$curtain-color : #F0D0D5;
|
||||
$door-color : #F1E4ED;
|
||||
$wall-color : #EEF0F0;
|
||||
|
||||
/* Border */
|
||||
$border-radius-base : 4px;
|
||||
$border-radius-sm : 4px;
|
||||
$border-radius-lger : 20px;
|
||||
|
||||
/* Font */
|
||||
$font-family : 'Nunito', sans-serif;
|
||||
$code-family : Consolas, Menlo, Courier, monospace;
|
||||
|
||||
$font-size-smest : 11px;
|
||||
$font-size-smer : 12px;
|
||||
$font-size-sm : 0.9rem;
|
||||
$font-size-base : 1rem;
|
||||
$font-size-normal : 16px;
|
||||
$font-size-lg : 18px;
|
||||
$font-size-lger : 20px;
|
||||
|
||||
$line-height-base : 1.5;
|
||||
$line-height-computed : floor($font-size-base * $line-height-base);
|
||||
|
||||
/* Link */
|
||||
$link-color : $brand-blue-500;
|
||||
$link-hover-color : $brand-blue-400;
|
||||
$link-active-color : $brand-blue-700;
|
||||
$link-disabled-color : $grey-500;
|
||||
$link-hover-decoration : none;
|
||||
|
||||
/* Disabled cursor */
|
||||
$cursor-disabled : not-allowed;
|
||||
|
||||
/* Shadow */
|
||||
$shadow-color : rgba(100, 100, 100, .2);
|
||||
$shadow-1px-up : 0 -1px 6px $shadow-color;
|
||||
$shadow-1px-down : 0 1px 6px $shadow-color;
|
||||
$shadow-1px-left : -1px 0 6px $shadow-color;
|
||||
$shadow-1px-right : 1px 0 6px $shadow-color;
|
||||
|
||||
/* Button */
|
||||
$btn-default-color : $text-color;
|
||||
$btn-default-bg : $color-white;
|
||||
$btn-default-bg-hover : $border-color-lightest;
|
||||
$btn-default-bg-active : $border-color-lighter;
|
||||
$btn-default-border : $border-color-base;
|
||||
|
||||
$btn-primary-bg : $brand-blue-800;
|
||||
$btn-primary-border : $brand-blue-800;
|
||||
|
||||
$btn-success-bg : $green-500;
|
||||
$btn-success-border : $green-500;
|
||||
|
||||
$btn-error-bg : $color-error;
|
||||
$btn-error-border : $color-error;
|
||||
|
||||
$btn-warning-bg : $yellow-500;
|
||||
$btn-warning-border : $yellow-500;
|
||||
|
||||
$btn-info-bg : $blue-500;
|
||||
$btn-info-border : $blue-500;
|
||||
|
||||
$btn-text-border : $brand-blue-500;
|
||||
|
||||
$btn-disabled-color : $grey-300;
|
||||
$btn-disabled-bg : $grey-50;
|
||||
$btn-disabled-border : $grey-100;
|
||||
|
||||
$btn-font-weight : bold;
|
||||
|
||||
$btn-font-size-smer : 10px;
|
||||
$btn-font-size-sm : 11px;
|
||||
$btn-font-size-base : 12px;
|
||||
$btn-font-size-md : 14px;
|
||||
$btn-font-size-lg : 16px;
|
||||
|
||||
$btn-padding-smer : 2px 10px;
|
||||
$btn-padding-sm : 4px 12px;
|
||||
$btn-padding-base : 6px 16px;
|
||||
$btn-padding-md : 8px 16px;
|
||||
$btn-padding-lg : 10px 18px;
|
||||
|
||||
$btn-circle-size-smer : 24px;
|
||||
$btn-circle-size-sm : 28px;
|
||||
$btn-circle-size : 32px;
|
||||
$btn-circle-size-lg : 40px;
|
||||
|
||||
/* Tag */
|
||||
$tag-bg-color : $grey-50;
|
||||
$tag-border-color : $grey-200;
|
||||
|
||||
/* Checkbox */
|
||||
$checkbox-size : 16px;
|
||||
$checkbox-font-size : $font-size-smer;
|
||||
|
||||
$checkbox-border-c : $border-color-base;
|
||||
$checkbox-border-c-hover : $brand-blue-400;
|
||||
$checkbox-border-c-checked : $brand-blue-400;
|
||||
$checkbox-border-c-disabled : $grey-100;
|
||||
$checkbox-bg-c-disabled : $grey-50;
|
||||
$checkbox-label-c-disabled : $grey-700;
|
||||
|
||||
/* Input */
|
||||
$input-font-size-sm : 11px;
|
||||
$input-font-size-base : .9rem;
|
||||
$input-font-size-lg : 14px;
|
||||
|
||||
$input-padding-sm : 4px 10px;
|
||||
$input-padding-base : 6px 12px;
|
||||
$input-padding-lg : 8px 14px;
|
||||
|
||||
$input-font-color : $text-color;
|
||||
$input-font-color-disabled : $grey-700;
|
||||
|
||||
$input-border-color : $border-color-base;
|
||||
$input-border-color-hover : $brand-blue-400;
|
||||
$input-border-color-focus : $brand-blue-400;
|
||||
$input-border-color-disabled : $grey-100;
|
||||
$input-border-color-success : $color-success;
|
||||
$input-border-color-error : $color-error;
|
||||
$input-border-color-warning : $color-warning;
|
||||
$input-border-color-info : $color-info;
|
||||
|
||||
$input-bg-color : $color-white;
|
||||
$input-bg-color-disabled : $grey-50;
|
||||
|
||||
$input-icon-color : $border-color-base;
|
||||
$input-icon-font-size : 15px;
|
||||
|
||||
$input-placeholder-color : $grey-400;
|
||||
$input-placeholder-color-disabled : $grey-400;
|
||||
|
||||
$input-group-font-color : $grey-900;
|
||||
$input-group-bg-color : $grey-50;
|
||||
$input-group-bg-color-hover : $grey-100;
|
||||
$input-group-bg-color-active : $grey-200;
|
||||
|
||||
/* InputNumber */
|
||||
$inputnumber-min-width : 80px;
|
||||
$inputnumber-height-sm : 28px;
|
||||
$inputnumber-height-base : 32px;
|
||||
$inputnumber-height-lg : 40px;
|
||||
|
||||
$inputnumber-font-color : $input-font-color;
|
||||
|
||||
$inputnumber-bg-color : $input-bg-color;
|
||||
$inputnumber-bg-color-disabled : $input-bg-color-disabled;
|
||||
|
||||
$inputnumber-border-radius : $border-radius-base;
|
||||
$inputnumber-border-color : $input-border-color;
|
||||
$inputnumber-border-color-hover : $input-border-color-hover;
|
||||
$inputnumber-border-color-disabled : $input-border-color-disabled;
|
||||
|
||||
$inputnumber-padding-sm : 0 8px;
|
||||
$inputnumber-padding-base : 0 8px;
|
||||
$inputnumber-padding-lg : 0 8px;
|
||||
|
||||
$inputnumber-handler-width : 22px;
|
||||
$inputnumber-handler-border-color : $grey-200;
|
||||
$inputnumber-handler-bg-color-active : $grey-100;
|
||||
|
||||
$inputnumber-handler-font-color : $grey-500;
|
||||
$inputnumber-handler-font-color-hover : $grey-900;
|
||||
|
||||
$inputnumber-handler-font-size-sm : 9px;
|
||||
$inputnumber-handler-font-size-base : 10px;
|
||||
$inputnumber-handler-font-size-lg : 11px;
|
||||
|
||||
$inputnumber-handler-ele-height-sm : 14px;
|
||||
$inputnumber-handler-ele-height-base : 16px;
|
||||
$inputnumber-handler-ele-height-lg : 18px;
|
||||
|
||||
$inputnumber-handler-ele-height-sm-hover : 16px;
|
||||
$inputnumber-handler-ele-height-base-hover : 18px;
|
||||
$inputnumber-handler-ele-height-lg-hover : 20px;
|
||||
|
||||
$inputnumber-handler-ele-font-color-disabled : $grey-100;
|
||||
|
||||
/* Switch */
|
||||
$switch-min-width-sm : 32px;
|
||||
$switch-min-width-base : 40px;
|
||||
$switch-min-width-lg : 48px;
|
||||
|
||||
$switch-height-sm : 16px;
|
||||
$switch-height-base : 20px;
|
||||
$switch-height-lg : 24px;
|
||||
|
||||
$switch-border-radius-sm : 16px;
|
||||
$switch-border-radius-base : 20px;
|
||||
$switch-border-radius-lg : 24px;
|
||||
|
||||
$switch-border-color : $grey-500;
|
||||
$switch-border-color-checked : $brand-blue-400;
|
||||
$switch-border-color-disabled : $grey-100;
|
||||
|
||||
$switch-bg-color : $grey-500;
|
||||
$switch-bg-color-checked : $brand-blue-400;
|
||||
$switch-bg-color-disabled : $grey-100;
|
||||
|
||||
$switch-font-color : $color-white;
|
||||
$switch-font-color-disabled : $grey-300;
|
||||
|
||||
$switch-font-size-sm : $font-size-smest;
|
||||
$switch-font-size-base : $font-size-smer;
|
||||
$switch-font-size-lg : $font-size-sm;
|
||||
|
||||
$switch-circle-size-sm : 12px;
|
||||
$switch-circle-size-base : 16px;
|
||||
$switch-circle-size-lg : 20px;
|
||||
|
||||
$switch-circle-bg-color : $color-white;
|
||||
$switch-circle-bg-color-disabled : $grey-400;
|
||||
|
||||
/* Slider */
|
||||
$slider-bar-height : 4px;
|
||||
$slider-margin : 8px 0;
|
||||
|
||||
$slider-bar-bg-color : $brand-blue-400;
|
||||
$slider-bar-bg-color-disabled : $grey-400;
|
||||
$slider-track-bg-color : $grey-100;
|
||||
$slider-bar-border-radius : 2px;
|
||||
|
||||
$slider-dot-color : $brand-blue-400;
|
||||
$slider-dot-color-hover : $brand-blue-600;
|
||||
$slider-dot-color-disabled : $grey-300;
|
||||
$slider-dot-size : 12px;
|
||||
$slider-dot-wrapper-size : $slider-dot-size;
|
||||
$slider-dot-wrapper-offset : -6px;
|
||||
|
||||
/* Textarea */
|
||||
$textarea-padding : 6px 8px;
|
||||
|
||||
/* Alert */
|
||||
$alert-padding : 8px 16px;
|
||||
$alert-padding-lg : 14px 16px;
|
||||
$alert-border-radius : $border-radius-base;
|
||||
|
||||
$alert-text-color-success : #53664A;
|
||||
$alert-text-color-error : #AD3430;
|
||||
$alert-text-color-warning : #7F6128;
|
||||
$alert-text-color-info : #3B688C;
|
||||
|
||||
$alert-message-font-size : $font-size-sm;
|
||||
$alert-description-font-size : $font-size-smer;
|
||||
$alert-close-font-size : $font-size-smer;
|
||||
|
||||
$alert-icon-font-size : 15px;
|
||||
$alert-icon-font-size-lg : 28px;
|
||||
|
||||
$alert-icon-color-success : #7D9970;
|
||||
$alert-icon-color-error : #FA4C46;
|
||||
$alert-icon-color-warning : #CC9B3F;
|
||||
$alert-icon-color-info : #66B3F3;
|
||||
|
||||
$alert-bg-color-success : $green-50;
|
||||
$alert-bg-color-error : $red-50;
|
||||
$alert-bg-color-warning : $yellow-50;
|
||||
$alert-bg-color-info : $blue-50;
|
||||
|
||||
$alert-border-color-success : $green-100;
|
||||
$alert-border-color-error : $red-100;
|
||||
$alert-border-color-warning : $yellow-100;
|
||||
$alert-border-color-info : $blue-100;
|
||||
|
||||
/* Badge */
|
||||
$badge-height : 18px;
|
||||
$badge-padding : 0 6px;
|
||||
$badge-border-radius : math.div($badge-height, 2);
|
||||
$badge-font-size : $font-size-smer;
|
||||
$badge-font-color : $color-white;
|
||||
|
||||
$badge-bg-color : $red-500;
|
||||
$badge-bg-color-success : $green-500;
|
||||
$badge-bg-color-warning : $yellow-500;
|
||||
$badge-bg-color-info : $blue-500;
|
||||
|
||||
$badge-dot-size : 10px;
|
||||
|
||||
/* Card */
|
||||
$card-bg-color : $color-white;
|
||||
$card-border-color : $grey-100;
|
||||
$card-border-color-hover : $grey-50;
|
||||
$card-border-radius : $border-radius-base;
|
||||
$card-head-height : 48px;
|
||||
|
||||
/* Collapse */
|
||||
$collapse-border-color : $grey-200;
|
||||
$collapse-border-radius : $border-radius-base;
|
||||
|
||||
$collapse-header-bg-color : $grey-50;
|
||||
$collapse-header-text-color : $title-color;
|
||||
$collapse-header-text-color-disabled : $grey-400;
|
||||
|
||||
$collapse-icon-size : $font-size-smer;
|
||||
$collapse-icon-color : tint($title-color, 50%);
|
||||
|
||||
$collapse-body-text-color : $text-color;
|
||||
$collapse-body-bg-color : $color-white;
|
||||
|
||||
/* Loading Bar */
|
||||
$loading-bar-bg-color-success : $color-primary;
|
||||
$loading-bar-bg-color-error : $color-error;
|
||||
|
||||
/* Modal */
|
||||
$modal-initial-top : 100px;
|
||||
$modal-bg-color : $color-white;
|
||||
$modal-mask-bg-color : rgba(0, 0, 0, .5);
|
||||
$modal-section-border-color : $grey-100;
|
||||
|
||||
$modal-header-padding : 12px 16px;
|
||||
$modal-header-font-size : $font-size-base;
|
||||
$modal-close-font-size : $font-size-sm;
|
||||
$modal-icon-font-size : 32px;
|
||||
|
||||
$modal-body-padding : 16px;
|
||||
$modal-body-font-size : $font-size-sm;
|
||||
|
||||
$modal-footer-padding : 12px 16px;
|
||||
|
||||
$modal-icon-color-success : $green-300;
|
||||
$modal-icon-color-error : $red-300;
|
||||
$modal-icon-color-warning : $yellow-300;
|
||||
$modal-icon-color-info : $blue-300;
|
||||
|
||||
/* Message */
|
||||
$message-padding : 6px 16px;
|
||||
$message-font-size : $font-size-sm;
|
||||
$message-bg-color : $color-white;
|
||||
$message-box-shadow : 0 1px 8px rgba(0, 0, 0, .15);
|
||||
|
||||
$message-icon-color-success : $green-300;
|
||||
$message-icon-color-error : $red-300;
|
||||
$message-icon-color-warning : $yellow-300;
|
||||
$message-icon-color-info : $blue-300;
|
||||
$message-icon-color-loading : $blue-300;
|
||||
|
||||
/* Radio */
|
||||
$radio-size : 16px;
|
||||
$radio-dot-size : 8px;
|
||||
$radio-font-size : $font-size-smer;
|
||||
|
||||
$radio-border-c-hover : $brand-blue-400;
|
||||
$radio-border-c-checked : $brand-blue-400;
|
||||
$radio-border-c-disabled : $grey-100;
|
||||
$radio-bg-c-disabled : $grey-50;
|
||||
$radio-dot-c-disabled : $grey-300;
|
||||
|
||||
/* Rate */
|
||||
$rate-icon-font-size : 20px;
|
||||
$rate-icon-color : $grey-100;
|
||||
$rate-icon-color-on : $yellow-500;
|
||||
$rate-text-font-size : $font-size-smer;
|
||||
|
||||
/* Select */
|
||||
$select-font-size-sm : $font-size-smest;
|
||||
$select-font-size-base : $input-font-size-base;
|
||||
$select-font-size-lg : $font-size-base;
|
||||
|
||||
$select-bg-color : $color-white;
|
||||
$select-font-color : $text-color;
|
||||
|
||||
$select-border-c-hover : $brand-blue-400;
|
||||
$select-border-c-checked : $brand-blue-400;
|
||||
$select-border-c-disabled : $grey-100;
|
||||
$select-bg-c-disabled : $grey-50;
|
||||
|
||||
$select-selection-bg-color : $color-white;
|
||||
$select-selection-bg-color-disabled : tint($border-color-base, 70%);
|
||||
|
||||
$select-padding-sm : 0 24px 0 8px;
|
||||
$select-padding-base : 0 24px 0 8px;
|
||||
$select-padding-lg : 0 24px 0 8px;
|
||||
|
||||
$select-selection-height-sm : 24px;
|
||||
$select-selection-height-base : 26px;
|
||||
$select-selection-height-lg : 30px;
|
||||
|
||||
/* Select Dropdown */
|
||||
$select-dropdown-font-size-sm : $font-size-smest;
|
||||
$select-dropdown-font-size-base : $input-font-size-base;
|
||||
$select-dropdown-font-size-lg : $font-size-sm;
|
||||
|
||||
$select-dropdown-bg-color : $color-white;
|
||||
$select-dropdown-height : 200px;
|
||||
|
||||
$dropdown-option-padding-base : 6px 12px;
|
||||
$dropdown-option-bg-c-hover : $brand-blue-50;
|
||||
$dropdown-option-bg-c-selected : $grey-50;
|
||||
|
||||
$option-group-font-c : $grey-500;
|
||||
|
||||
/* Notification */
|
||||
$notification-width : 320px;
|
||||
$notification-padding : 8px 16px;
|
||||
$notification-padding-lg : 12px 16px;
|
||||
$notification-shadow : 0 2px 4px rgba(0, 0, 0, .12), 0 0 6px rgba(0, 0, 0, .04);
|
||||
$notification-text-color : $text-color;
|
||||
$notification-bg-color : $color-white;
|
||||
|
||||
$notification-font-size-lg : 28px;
|
||||
$notification-title-font-size : $font-size-sm;
|
||||
$notification-message-font-size : $font-size-smer;
|
||||
|
||||
$notification-icon-color : $text-color;
|
||||
$notification-icon-font-size : $font-size-sm;
|
||||
$notification-icon-font-size-lg : 24px;
|
||||
$notification-close-color : $grey-300;
|
||||
$notification-close-color-focus : $grey-700;
|
||||
$notification-close-font-size : $font-size-smer;
|
||||
$notification-close-font-size-lg : $font-size-base;
|
||||
|
||||
$notification-icon-color-success : $green-300;
|
||||
$notification-icon-color-error : $red-300;
|
||||
$notification-icon-color-warning : $yellow-300;
|
||||
$notification-icon-color-info : $blue-300;
|
||||
|
||||
/* Popover */
|
||||
$popover-title-font-size : $font-size-smer;
|
||||
$popover-content-font-size : $font-size-smest;
|
||||
$popover-popper-max-width : 400px;
|
||||
|
||||
$popover-bg-color : $color-white;
|
||||
$popover-title-bg-color : $grey-50;
|
||||
$popover-border-color : $grey-100;
|
||||
$popover-title-border-color : $brand-blue-50;
|
||||
|
||||
$popover-arrow-size : 10px;
|
||||
$popover-arrow-bg-color : $popover-bg-color;
|
||||
|
||||
$popover-padding : 4px 8px;
|
||||
$popover-title-padding : 6px 10px;
|
||||
$popover-content-padding : 8px 12px;
|
||||
|
||||
/* Progress */
|
||||
$progress-height : 10px;
|
||||
$progress-border-radius : 50px;
|
||||
$progress-font-color : $text-color;
|
||||
$progress-font-size : $font-size-smer;
|
||||
|
||||
$progress-track-bg-color : $grey-200;
|
||||
$progress-bar-bg-color : $brand-color-light;
|
||||
$progress-bar-bg-color-success : $color-success;
|
||||
$progress-bar-bg-color-error : $color-error;
|
||||
|
||||
/* Timeline */
|
||||
$timeline-dot-color : $blue-500;
|
||||
$timeline-dot-color-success : $green-500;
|
||||
$timeline-dot-color-error : $red-500;
|
||||
$timeline-dot-color-warning : $yellow-500;
|
||||
|
||||
$timeline-dot-bg-color : $color-white;
|
||||
|
||||
$timeline-dot-size : 12px;
|
||||
$timeline-custom-dot-size : 20px;
|
||||
$timeline-custom-dot-font-size : $font-size-normal;
|
||||
|
||||
$timeline-line-color : $grey-100;
|
||||
$timeline-item-last-min-height : 48px;
|
||||
$timeline-text-font-size : $font-size-smer;
|
||||
|
||||
/* Tooltip */
|
||||
$tooltip-padding : 4px 8px;
|
||||
$tooltip-arrow-size : 4px;
|
||||
$tooltip-max-width : 200px;
|
||||
$tooltip-font-color : $color-white;
|
||||
$tooltip-font-size : $font-size-smer;
|
||||
$tooltip-bg-color : rgba(0, 0, 0, .75);
|
||||
$tooltip-border-color : rgba(0, 0, 0, .75);
|
||||
|
||||
/* Table */
|
||||
$table-font-size-small : $font-size-smest;
|
||||
$table-font-size : $font-size-smer;
|
||||
$table-font-size-large : $font-size-base;
|
||||
|
||||
$table-text-color : $text-color;
|
||||
$table-border-color : $grey-100;
|
||||
$table-thead-bg-color : $grey-50;
|
||||
$table-tr-bg-color-hover : $bg-color-lighter;
|
||||
$table-tr-bg-color-stripe : tint($grey-50, 50%);
|
||||
$table-footer-height : 28px;
|
||||
|
||||
$table-cell-height-small : 32px;
|
||||
$table-cell-height : 40px;
|
||||
$table-cell-height-large : 56px;
|
||||
$table-cell-padding : 0 16px;
|
||||
|
||||
$table-sorter-width : 9px;
|
||||
$table-sorter-width-small : 7px;
|
||||
$table-sorter-height : 18px;
|
||||
$table-sorter-height-small : 14px;
|
||||
$table-sorter-icon-size : 9px;
|
||||
$table-sorter-icon-size-small : 7px;
|
||||
|
||||
/* Breadcrumb */
|
||||
$breadcrumb-font-size : $font-size-base;
|
||||
$breadcrumb-separator-color : $grey-300;
|
||||
|
||||
/* Dropdown */
|
||||
$dropdown-max-height : 200px;
|
||||
$dropdown-bg-color : $color-white;
|
||||
$dropdown-box-shadow : 0 1px 6px rgba(0, 0, 0, 0.2);
|
||||
$dropdown-font-size : $font-size-smer;
|
||||
|
||||
$dropdown-item-padding : 8px 16px;
|
||||
$dropdown-item-min-width : 100px;
|
||||
$dropdown-item-bg-color-hover : $brand-blue-50;
|
||||
$dropdown-item-bg-color-disabled : $grey-300;
|
||||
|
||||
$dropdown-divided-color : $brand-blue-50;
|
||||
|
||||
/* Menu */
|
||||
$menu-text-color : $text-color;
|
||||
$menu-text-color-disabled : $grey-400;
|
||||
$menu-text-color-dark : $grey-200;
|
||||
$menu-text-color-dark-hover : $color-white;
|
||||
$menu-bg-color-light : $color-white;
|
||||
$menu-bg-color-dark : $black-500;
|
||||
$menu-bg-color-dark-hover : $black-600;
|
||||
$menu-font-size : $font-size-base;
|
||||
$menu-icon-size : $font-size-base;
|
||||
|
||||
$menu-item-text-color-active : $brand-blue-500;
|
||||
$menu-item-bg-color-active : $brand-blue-50;
|
||||
$menu-item-bg-color-active-inline : rgba(236, 242, 252, 0.2);
|
||||
|
||||
$menu-submenu-padding : 12px 16px;
|
||||
$menu-item-padding : 12px 16px;
|
||||
$menu-item-padding-inline : 12px 16px;
|
||||
$menu-item-padding-base : 0 16px;
|
||||
|
||||
$menu-group-title-padding : 12px;
|
||||
$menu-group-title-text-color : $grey-500;
|
||||
$menu-group-title-font-size : $font-size-smer;
|
||||
$menu-group-item-padding : 12px 16px;
|
||||
|
||||
$menu-dropdown-item-padding : 12px 16px;
|
||||
$menu-dropdown-item-font-size : $font-size-smer;
|
||||
|
||||
$menu-height-horizontal : 48px;
|
||||
$menu-border-color : $border-color-lighter;
|
||||
$menu-prefix-bg-color : $brand-blue-500;
|
||||
$menu-prefix-bg-color-dark : $brand-blue-500;
|
||||
$menu-icon-color-inline : $border-color-base;
|
||||
|
||||
/* Pagination */
|
||||
$pagination-item-size-sm : 20px;
|
||||
$pagination-item-size : 28px;
|
||||
$pagination-input-width : 40px;
|
||||
$pagination-item-font-size-sm : $font-size-smest;
|
||||
$pagination-item-font-size : $font-size-smer;
|
||||
$pagination-btn-font-size : $font-size-smer;
|
||||
|
||||
$pagination-item-text-color : $text-color;
|
||||
$pagination-item-text-color-hover : $brand-blue-400;
|
||||
$pagination-item-text-color-active : $color-white;
|
||||
$pagination-btn-jump-text-color : $grey-100;
|
||||
|
||||
$pagination-item-bg-color : $color-white;
|
||||
$pagination-item-bg-color-active : $brand-blue-400;
|
||||
|
||||
$pagination-item-border-color : $border-color-base;
|
||||
$pagination-item-border-color-hover : $brand-blue-400;
|
||||
$pagination-item-border-color-active : $brand-blue-400;
|
||||
|
||||
/* Tabs */
|
||||
$tabs-border-color : $grey-100;
|
||||
$tabs-nav-height : 36px;
|
||||
$tabs-nav-height-sm : 32px;
|
||||
$tabs-nav-font-size : $font-size-base;
|
||||
$tabs-nav-font-size-sm : $font-size-smer;
|
||||
$tabs-navigation-btn-width : 32px;
|
||||
$tabs-navigation-color : $text-color;
|
||||
$tabs-navigation-color-hover : $brand-blue-500;
|
||||
$tabs-navigation-color-disabled : $grey-400;
|
||||
|
||||
$tabs-nav-item-padding : 0 20px;
|
||||
$tabs-nav-item-padding-sm : 0 16px;
|
||||
$tabs-nav-item-bg-color : $color-white;
|
||||
$tabs-nav-item-bg-color-card : $grey-50;
|
||||
$tabs-nav-item-icon-color : tint($text-color, 30%);
|
||||
$tabs-nav-item-icon-color-hover : $text-color;
|
||||
|
||||
/* Steps */
|
||||
$step-font-size : $font-size-base;
|
||||
$step-font-size-sm : $font-size-smer;
|
||||
$step-description-font-size : $font-size-smer;
|
||||
$step-description-font-size-sm : $font-size-smest;
|
||||
|
||||
$step-color : $grey-600;
|
||||
$step-color-active : $color-white;
|
||||
$step-color-process : $text-color;
|
||||
$step-color-error : $red-500;
|
||||
$step-text-color : $black-200;
|
||||
|
||||
$step-bg-color : $color-white;
|
||||
$step-bg-color-active : $brand-blue-500;
|
||||
$step-bg-color-error : $red-500;
|
||||
|
||||
$step-border-color : $grey-600;
|
||||
$step-border-color-active : $brand-blue-500;
|
||||
$step-border-color-error : $red-500;
|
||||
|
||||
$step-icon-color : $grey-600;
|
||||
$step-icon-color-active : $brand-blue-500;
|
||||
$step-icon-color-error : $red-500;
|
||||
|
||||
$step-label-size : 30px;
|
||||
$step-label-size-sm : 18px;
|
||||
|
||||
$step-line-color : $grey-600;
|
||||
$step-line-color-active : $brand-blue-500;
|
||||
|
||||
$step-main-height-vertical : 64px;
|
||||
$step-main-height-vertical-sm : 48px;
|
||||
|
||||
/**
|
||||
* Media queries
|
||||
*/
|
||||
/* Extra small screen / Mobile */
|
||||
$screen-xs : 480px;
|
||||
$screen-xs-min : $screen-xs;
|
||||
$screen-xs-max : $screen-xs-min - 1;
|
||||
|
||||
/* Small screen / Tablet */
|
||||
$screen-sm : 768px;
|
||||
$screen-sm-min : $screen-sm;
|
||||
$screen-sm-max : $screen-sm-min - 1;
|
||||
|
||||
/* Medium screen / Desktop */
|
||||
$screen-md : 992px;
|
||||
$screen-md-min : $screen-md;
|
||||
$screen-md-max : $screen-md-min - 1;
|
||||
|
||||
/* Large screen / Wide Desktop */
|
||||
$screen-lg : 1200px;
|
||||
$screen-lg-min : $screen-lg;
|
||||
$screen-lg-max : $screen-lg-min - 1;
|
||||
|
||||
/**
|
||||
* Grid system
|
||||
*/
|
||||
$grid-columns : 24;
|
||||
$grid-gutter-width : 0;
|
||||
|
||||
/* Container sizes */
|
||||
$container-sm : 720px + $grid-gutter-width;
|
||||
$container-md : 940px + $grid-gutter-width;
|
||||
$container-lg : 1140px + $grid-gutter-width;
|
||||
|
||||
/* z-index list */
|
||||
$zindex-menu : 900;
|
||||
$zindex-modal : 1000;
|
||||
$zindex-notification : 1010;
|
||||
$zindex-message : 1010;
|
||||
$zindex-popover : 1020;
|
||||
$zindex-dropdown : 1050;
|
||||
$zindex-tooltip : 1050;
|
||||
$zindex-loading-bar : 1080;
|
||||
|
||||
/* Vue Select Styles */
|
||||
$vs-colors: (
|
||||
lightest: rgba(60, 60, 60, 0.26),
|
||||
light: rgba(60, 60, 60, 0.5),
|
||||
dark: #333,
|
||||
darkest: rgba(0, 0, 0, .15),
|
||||
) !default;
|
||||
|
||||
// Global Component Variables
|
||||
$vs-component-line-height: 1.4 !default;
|
||||
$vs-component-placeholder-color: $grey-400 !default;
|
||||
|
||||
// Active State
|
||||
$vs-state-active-bg: $brand-blue-50 !default;
|
||||
$vs-state-active-color: #000 !default;
|
||||
|
||||
// Disabled State
|
||||
$vs-state-disabled-bg: rgb(248, 248, 248) !default;
|
||||
$vs-state-disabled-color: map_get($vs-colors, 'light') !default;
|
||||
$vs-state-disabled-controls-color: map_get($vs-colors, 'light') !default;
|
||||
$vs-state-disabled-cursor: not-allowed !default;
|
||||
|
||||
// Borders
|
||||
$vs-border-width: 1px !default;
|
||||
$vs-border-style: solid !default;
|
||||
$vs-border-radius: 4px !default;
|
||||
$vs-border-color: $border-color-base !default;
|
||||
|
||||
// Component Controls: Clear, Open Indicator
|
||||
$vs-controls-color: map_get($vs-colors, 'light') !default;
|
||||
$vs-controls-size: 0.5 !default;
|
||||
$vs-controls-deselect-text-shadow: 0 1px 0 #fff;
|
||||
|
||||
// Selected
|
||||
$vs-selected-bg: #f0f0f0 !default;
|
||||
$vs-selected-border-color: $vs-border-color !default;
|
||||
$vs-selected-border-style: $vs-border-style !default;
|
||||
$vs-selected-border-width: $vs-border-width !default;
|
||||
|
||||
// Dropdown
|
||||
$vs-dropdown-z-index: 1000 !default;
|
||||
$vs-dropdown-min-width: 160px !default;
|
||||
$vs-dropdown-max-height: 350px !default;
|
||||
$vs-dropdown-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2) !default;
|
||||
$vs-dropdown-bg: #fff !default;
|
||||
|
||||
/* Spacing */
|
||||
$spacing-01 : 0.125rem;
|
||||
$spacing-02 : 0.25rem;
|
||||
$spacing-03 : 0.5rem;
|
||||
$spacing-04 : 0.75rem;
|
||||
$spacing-05 : 1rem;
|
||||
$spacing-06 : 1.5rem;
|
||||
$spacing-07 : 2rem;
|
||||
$spacing-08 : 2.5rem;
|
||||
$spacing-09 : 3rem;
|
||||
|
||||
$layout-01 : 1rem;
|
||||
$layout-02 : 1.5rem;
|
||||
$layout-03 : 2rem;
|
||||
$layout-04 : 3rem;
|
||||
$layout-05 : 4rem;
|
||||
$layout-06 : 6rem;
|
||||
$layout-07 : 10rem;
|
||||
Reference in New Issue
Block a user