akaunting/public/css/custom.css

1729 lines
34 KiB
CSS
Raw Normal View History

2019-11-16 10:21:14 +03:00
@font-face {
font-family: element-icons;
2020-04-19 17:49:47 +03:00
src: url("./../fonts/vendor/element-ui/lib/theme-chalk/element-icons.woff")
format("woff"),
url("./../fonts/vendor/element-ui/lib/theme-chalk/element-icons.ttf")
format("truetype");
2019-11-16 10:21:14 +03:00
font-weight: 400;
font-display: "auto";
font-style: normal;
}
body {
height: 100%;
}
2021-06-02 12:26:45 +03:00
.datepicker[readonly] {
background-color: transparent !important;
}
2020-02-11 05:14:42 +03:00
/*--Layout Content--*/
2020-04-19 17:49:47 +03:00
.content-layout {
2020-02-11 05:14:42 +03:00
max-width: 1300px !important;
}
/*--Layout Content Finish--*/
/*--------Cursor Styles--------*/
/*--Cursor Pointer--*/
2020-04-19 17:49:47 +03:00
.cursor-pointer {
cursor: pointer !important;
}
/*--Cursor Pointer Finish--*/
2019-12-28 18:21:31 +03:00
/*--Cursor Default--*/
2020-04-19 17:49:47 +03:00
.cursor-default {
cursor: default !important;
}
/*--Cursor Pointer Finish--*/
/*--------Cursor Styles Finish--------*/
/*--------Border Radius Styles--------*/
/*--Border Radius None--*/
2020-04-19 17:49:47 +03:00
.border-radius-none {
border-radius: 0 !important;
}
/*--Border Radius None Finish--*/
2019-12-26 14:11:39 +03:00
/*--Border Radius Default--*/
2020-04-19 17:49:47 +03:00
.border-radius-default {
border-radius: 0.25rem !important;
2019-12-26 15:15:21 +03:00
}
/*--Border Radius Default Finish--*/
/*--------Border Radius Styles Finish--------*/
2019-12-26 15:15:21 +03:00
/*--------Overflow Styles--------*/
/*--Overflow Y Hidden--*/
2020-04-19 17:49:47 +03:00
.overflow-y-hidden {
overflow-y: hidden !important;
2019-11-16 10:21:14 +03:00
}
/*--Overflow Y Hidden Finish--*/
2019-11-16 10:21:14 +03:00
/*--Overflow Y Scroll--*/
2020-04-19 17:49:47 +03:00
.overflow-y-scroll {
overflow-y: scroll !important;
2019-12-28 14:47:20 +03:00
}
/*--Overflow Y Scroll Finish--*/
2019-12-28 14:47:20 +03:00
/*--Overflow X Hidden--*/
2020-04-19 17:49:47 +03:00
.overflow-x-hidden {
overflow-x: hidden !important;
}
/*--Overflow X Hidden Finish--*/
2019-12-28 14:47:20 +03:00
/*--Overflow X Scroll--*/
2020-04-19 17:49:47 +03:00
.overflow-x-scroll {
overflow-x: scroll !important;
2019-11-16 10:21:14 +03:00
}
/*--Overflow X Scroll Finish--*/
/*--------Overflow Styles Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Akaunting Backgrounds--------*/
/*--Login Page Background--*/
2020-04-19 17:49:47 +03:00
.login-page {
background: url("../img/login.png") no-repeat center center fixed;
height: 100%;
width: 100%;
padding: 5% 0;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
/*--Login Page Background Finish--*/
/*--Wizard Page Background--*/
2020-04-19 17:49:47 +03:00
.wizard-page {
background: url("../img/login.png") no-repeat center center fixed;
height: 100%;
width: 100%;
padding: 5% 0;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
/*--Wizard Page Background Finish--*/
/*--Installation Page Background--*/
2020-04-19 17:49:47 +03:00
.installation-page {
background: url("../img/login.png") no-repeat center center fixed;
height: 100%;
width: 100%;
padding: 5% 0;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
/*--Installation Page Background Finish--*/
/*--------Akaunting Backgrounds Finish--------*/
/*--------Credit Card--------*/
2020-04-19 17:49:47 +03:00
.card-input__input:hover,
.card-input__input:focus {
border-color: #55588b !important;
2019-11-16 10:21:14 +03:00
}
/*--------Credit Card Finish--------*/
2019-11-16 10:21:14 +03:00
2020-02-11 05:14:42 +03:00
/*--------Custom Toggle--------*/
2020-04-19 17:49:47 +03:00
.custom-toggle {
2020-02-11 05:14:42 +03:00
width: 60px;
}
2020-04-19 17:49:47 +03:00
.custom-toggle input:checked + .status-green:before {
2020-02-11 05:14:42 +03:00
left: 10px;
}
2020-02-11 05:25:05 +03:00
2020-04-19 17:49:47 +03:00
.custom-toggle-slider:after {
2020-02-11 05:25:05 +03:00
top: -1px;
}
2020-02-11 05:14:42 +03:00
/*--------Custom Toggle Finish--------*/
/*--Button Element Focus--*/
2020-04-19 17:49:47 +03:00
button:focus {
outline: none !important;
2020-01-02 13:08:50 +03:00
}
2020-02-13 11:36:47 +03:00
/*--Button Element Focus Finish--*/
2019-11-16 10:21:14 +03:00
/*--Button Hover--*/
2020-04-19 17:49:47 +03:00
.btn:hover {
transform: translateY(0px);
2019-11-28 17:51:49 +03:00
}
/*--Button Hover Finish--*/
2019-11-16 10:21:14 +03:00
/*--------Chart Donut Height--------*/
2020-04-19 17:49:47 +03:00
.chart-donut {
position: relative !important;
height: 23vh !important;
2019-11-16 10:21:14 +03:00
}
/*--------Chart Donut Height Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Wizard Steps--------*/
2020-04-19 17:49:47 +03:00
.wizard-header {
border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0;
2019-12-25 19:09:04 +03:00
}
/*--------Wizard Steps Finish--------*/
2019-12-25 19:09:04 +03:00
2020-04-19 17:49:47 +03:00
.dropup .dropdown-toggle::after {
2019-11-16 10:21:14 +03:00
display: none !important;
}
2020-04-19 17:49:47 +03:00
.role-list {
2019-11-16 10:21:14 +03:00
text-overflow: ellipsis;
overflow: hidden;
}
/*--------Navbar Notification--------*/
2020-04-19 17:49:47 +03:00
.nav-link .badge-update {
2019-11-16 10:21:14 +03:00
position: absolute;
top: 15%;
margin-left: -0.2rem;
transform: translateY(50%);
width: 1rem !important;
height: 1rem !important;
font-size: 0.5rem;
}
2019-11-28 16:20:41 +03:00
2020-04-19 17:49:47 +03:00
.nav-link .badge-reminder {
2019-11-28 16:20:41 +03:00
position: absolute;
top: -59%;
margin-left: -0.35rem;
transform: translateY(50%);
width: 1rem !important;
height: 1rem !important;
font-size: 0.5rem;
}
2019-11-16 10:21:14 +03:00
/*--------Navbar Notification Finish--------*/
/*--------Index Page Tables--------*/
2020-04-19 17:49:47 +03:00
.table-responsive {
2019-11-16 10:21:14 +03:00
overflow-x: visible !important;
}
/*--------Index Page Tables Finish--------*/
2020-02-13 11:36:47 +03:00
/*--------Left Menu--------*/
2020-04-19 17:49:47 +03:00
.menu-dropdown {
2019-11-16 10:21:14 +03:00
position: absolute !important;
2020-01-10 14:50:22 +03:00
left: 1.2rem;
}
2020-04-19 17:49:47 +03:00
.menu-dropdown-width {
2020-01-10 14:50:22 +03:00
min-width: 13rem !important;
2019-11-16 10:21:14 +03:00
}
2020-02-13 11:36:47 +03:00
2020-04-19 17:49:47 +03:00
.g-sidenav-hidden .navbar-vertical.navbar-expand-xs {
2020-02-13 11:36:47 +03:00
overflow: hidden !important;
}
/*--------Left Menu Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Max Width 100 Pixel--------*/
2020-04-19 17:49:47 +03:00
.mwpx-100 {
max-width: 100px !important;
}
2021-06-25 18:10:58 +03:00
.mwpx-200 {
max-width: 200px !important;
}
.mwpx-300 {
max-width: 300px !important;
}
.mwpx-400 {
max-width: 400px !important;
}
.mwpx-500 {
max-width: 500px !important;
}
/*--------Max Width 100 Pixel Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Form Group--------*/
2020-04-19 17:49:47 +03:00
.form-group.visible-field .form-control {
2019-11-16 10:21:14 +03:00
background-color: #fff;
}
/*--------Form Group Finish--------*/
/*--Long Texts--*/
2020-04-19 17:49:47 +03:00
.long-texts {
2019-11-16 10:21:14 +03:00
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
/*--Long Texts Finish--*/
2019-11-16 10:21:14 +03:00
/*--Akaunting Column Style--*/
2020-04-19 17:49:47 +03:00
.col-aka {
margin-left: -51px;
}
/*--Akaunting Column Styl Finish--*/
/*--------Table Head Row Margin--------*/
2020-04-19 17:49:47 +03:00
.thead-light .row {
2019-11-16 10:21:14 +03:00
margin: 0;
}
/*--------Table Head Row Margin Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Table Head Column Letter Spacing--------*/
2020-04-19 17:49:47 +03:00
.table thead th {
letter-spacing: 0;
2019-11-16 10:21:14 +03:00
}
/*--------Table Head Column Letter Spacing Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Table Body Row Margin--------*/
2020-04-19 17:49:47 +03:00
.table,
tbody .row {
margin-right: 0;
margin-left: 0;
2019-11-16 10:21:14 +03:00
}
/*--------Table Body Row Margin Finish--------*/
2019-11-16 10:21:14 +03:00
2020-08-10 14:21:48 +03:00
/*--------Table Cell Text Wrap--------*/
2020-09-07 15:45:38 +03:00
#reconciliations-table .el-table td,
#reconciliations-table .el-table th,
#reconciliations-table .table td,
#reconciliations-table .table th {
2020-08-10 14:21:48 +03:00
white-space: normal;
}
/*--------Table Cell Text Wrap Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Item Column Image--------*/
2020-04-19 17:49:47 +03:00
.item-img {
2019-11-16 10:21:14 +03:00
width: 38px;
height: 38px;
}
/*--------Item Column Image Finish--------*/
2020-06-04 19:57:15 +03:00
/*--------User Column Image--------*/
.user-img {
width: 36px;
height: 36px;
}
/*--------User Column Image Finish--------*/
2020-01-05 15:22:47 +03:00
/*--------Border--------*/
2020-04-19 17:49:47 +03:00
.border-1 {
2020-01-05 15:22:47 +03:00
border: 1px solid #e5e5e5 !important;
}
/*--------Border Finish--------*/
/*--------Border Top--------*/
2020-04-19 17:49:47 +03:00
.border-top-1 {
border-top: 1px solid #e9ecef !important;
}
/*--------Border Top Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Border Bottom--------*/
2020-04-19 17:49:47 +03:00
.border-bottom-1 {
2019-11-16 10:21:14 +03:00
border-bottom: 1px solid #e9ecef !important;
}
/*--------Border Bottom Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Border Top Style--------*/
2020-04-19 17:49:47 +03:00
.border-top-style {
2019-11-16 10:21:14 +03:00
border-top-style: hidden !important;
}
/*--------Border Top Style Finish--------*/
/*--------Border Bottom Style--------*/
2020-04-19 17:49:47 +03:00
.border-bottom-style {
2019-11-16 10:21:14 +03:00
border-bottom-style: hidden !important;
}
/*--------Border Bottom Style Finish--------*/
/*--------Invoice Bill Show Table Position--------*/
2020-04-19 17:49:47 +03:00
.show-table {
2019-11-16 10:21:14 +03:00
margin-right: -2.5rem !important;
2020-04-19 17:49:47 +03:00
margin-left: -2.5rem !important;
2019-11-16 10:21:14 +03:00
}
/*--------Invoice Bill Show Table Position Finished--------*/
/*--------Table Head Line--------*/
2020-04-19 17:49:47 +03:00
.table-head-line {
2019-11-16 10:21:14 +03:00
line-height: 26px;
}
2020-04-19 17:49:47 +03:00
.table tbody + tbody {
2019-11-16 10:21:14 +03:00
border-top: 1px solid #e9ecef;
}
/*--------Table Head Line Finish--------*/
/*--Display Grid--*/
2020-04-19 17:49:47 +03:00
.d-grid {
2019-12-13 18:08:07 +03:00
display: grid !important;
2019-11-16 10:21:14 +03:00
}
/*--Display Grid Finish--*/
2019-11-16 10:21:14 +03:00
/*--------Card Header Bulk Action--------*/
2020-04-19 17:49:47 +03:00
.d-none.show {
display: flex !important;
2019-11-16 10:21:14 +03:00
}
2020-04-19 17:49:47 +03:00
.form-group.d-none.show {
display: unset !important;
2020-02-07 15:43:31 +03:00
}
2020-04-19 17:49:47 +03:00
.btn .d-none.show {
display: inherit !important;
2019-11-16 10:21:14 +03:00
}
/*--------Card Header Bulk Action Finish--------*/
/*--------Card Action Button--------*/
2020-04-19 17:49:47 +03:00
.card-action-button {
2019-11-16 10:21:14 +03:00
position: absolute;
right: 0;
z-index: 1;
}
/*--------Card Action Button Finish--------*/
/*--Akaunting Button Animation--*/
2020-04-19 17:49:47 +03:00
.aka-loader-frame {
2019-11-16 10:21:14 +03:00
width: 59.88px;
2019-11-18 02:54:28 +03:00
height: 31px;
2019-11-16 10:21:14 +03:00
}
2020-04-19 17:49:47 +03:00
.aka-loader {
2019-11-16 10:21:14 +03:00
width: 10px;
height: 10px;
border-radius: 50%;
position: relative;
animation: aka-loader 0.7s ease alternate infinite;
animation-delay: 0.28s;
2020-11-12 17:14:44 +03:00
top: -13px !important;
2019-11-16 10:21:14 +03:00
margin: -10px auto 0;
}
2020-04-19 17:49:47 +03:00
.aka-loader::after,
.aka-loader::before {
content: "";
2019-11-16 10:21:14 +03:00
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
animation: aka-loader 0.8s ease alternate infinite;
}
2020-04-19 17:49:47 +03:00
.aka-loader::before {
2019-11-16 10:21:14 +03:00
left: -15px;
animation-delay: 0.14s;
}
2020-04-19 17:49:47 +03:00
.aka-loader::after {
2019-11-16 10:21:14 +03:00
right: -15px;
animation-delay: 0.42s;
}
2020-04-19 17:49:47 +03:00
@keyframes aka-loader {
0% {
2019-11-16 10:21:14 +03:00
box-shadow: 0 28px 0 -28px #ffffff;
}
2020-04-19 17:49:47 +03:00
100% {
2019-11-16 10:21:14 +03:00
box-shadow: 0 28px 0 #ffffff;
}
}
2020-04-19 17:49:47 +03:00
.btn-outline-confirm:disabled span {
2020-02-22 12:29:46 +03:00
opacity: 1 !important;
}
2020-04-19 17:49:47 +03:00
.btn .aka-loader {
2019-11-16 10:21:14 +03:00
display: none !important;
}
2020-04-19 17:49:47 +03:00
.btn:disabled span {
2019-11-16 10:21:14 +03:00
opacity: 0;
}
2020-04-19 17:49:47 +03:00
.btn:disabled .aka-loader {
2019-11-16 10:21:14 +03:00
display: block !important;
}
/*--Akaunting Button Animation Finish--*/
2019-11-16 10:21:14 +03:00
/*--------Settings Index Page--------*/
2019-12-25 11:42:01 +03:00
/*--------Settings Icons--------*/
2020-04-19 17:49:47 +03:00
.settings-icons {
2019-11-16 10:21:14 +03:00
position: relative;
top: -0.4rem;
height: 45px;
width: 45px;
padding-top: 10px;
}
2019-12-25 11:42:01 +03:00
/*--------Settings Icons Finish--------*/
2019-11-16 10:21:14 +03:00
2019-12-25 11:42:01 +03:00
/*--------Settings Button Focus--------*/
2020-04-19 17:49:47 +03:00
.btn-icon-clipboard:focus {
2019-11-16 10:21:14 +03:00
outline: none;
}
2019-12-25 11:42:01 +03:00
/*--------Settings Button Focus Finish--------*/
2019-11-16 10:21:14 +03:00
2019-12-25 11:42:01 +03:00
/*--------Shadow None Focus--------*/
2020-04-19 17:49:47 +03:00
.shadow-none--hover:focus {
2019-11-16 10:21:14 +03:00
box-shadow: none !important;
}
2019-12-25 11:42:01 +03:00
/*--------Shadow None Focus Finish--------*/
/*--------Settings Index Page Finish--------*/
2019-11-16 10:21:14 +03:00
/*--------Avatar Size--------*/
2020-04-19 17:49:47 +03:00
.avatar-size {
2019-11-16 10:21:14 +03:00
width: 128px;
height: 128px;
font-size: 4.5rem;
}
/*--------Avatar Size--------*/
/*--------Button Disabled Hover--------*/
2020-04-19 17:49:47 +03:00
.btn:disabled:hover {
2019-11-16 10:21:14 +03:00
box-shadow: none !important;
}
/*--------Button Disabled Hover Finish--------*/
/*--------Recurring Inputs--------*/
2020-04-19 17:49:47 +03:00
.recurring-single {
2019-11-16 10:21:14 +03:00
margin-top: 29px !important;
}
/*--------Recurring Inputs--------*/
/*--------Invoice and Bill Total Column--------*/
2020-04-19 17:49:47 +03:00
.total-column {
2019-11-16 10:21:14 +03:00
padding-top: 1.75rem !important;
}
2020-02-26 14:55:27 +03:00
2020-04-19 17:49:47 +03:00
.item-total {
2020-02-26 14:55:27 +03:00
width: 15%;
}
2019-11-16 10:21:14 +03:00
/*--------Invoice and Bill Total Column Finish--------*/
/*--------Custom Table--------*/
2020-04-19 17:49:47 +03:00
.table thead th {
2019-11-16 10:21:14 +03:00
border-bottom: 0;
}
2020-04-19 17:49:47 +03:00
.table-flush tbody tr td {
2019-11-16 10:21:14 +03:00
border: 0 !important;
}
/*--------Custom Table Finish--------*/
/*--------Height 0--------*/
2020-04-19 17:49:47 +03:00
.h-0 {
2019-11-16 10:21:14 +03:00
height: 0 !important;
}
/*--------Height 0 Finish--------*/
2019-12-19 11:03:02 +03:00
/*--------Editor Text--------*/
2020-04-19 17:49:47 +03:00
.ql-editor p {
2019-12-19 11:03:02 +03:00
font-size: 0.775rem !important;
2020-02-01 11:05:30 +03:00
margin-bottom: 0 !important;
2019-12-19 11:03:02 +03:00
}
/*--------Editor text Finish--------*/
2019-11-16 10:21:14 +03:00
2020-04-19 17:49:47 +03:00
table .align-items-center td span.badge {
2019-12-12 19:15:20 +03:00
height: 24px;
padding-top: 8px;
font-size: 9px;
}
2019-12-25 19:09:04 +03:00
/*--------Print Template--------*/
2020-04-19 17:49:47 +03:00
.choose {
2019-12-25 19:09:04 +03:00
cursor: pointer;
}
2020-04-19 17:49:47 +03:00
.choose:hover > img {
opacity: 0.5 !important;
2019-12-25 19:09:04 +03:00
}
2020-04-19 17:49:47 +03:00
.bg-print {
background-color: rgba(229, 229, 229, 0.4) !important;
2019-12-25 19:09:04 +03:00
}
2020-04-19 17:49:47 +03:00
.print-edge {
2020-01-08 17:17:37 +03:00
width: 140px;
2019-12-25 19:09:04 +03:00
}
/*--------Print Template Finish--------*/
/*--------Report Column--------*/
2020-04-19 17:49:47 +03:00
.report-column-name {
2020-03-09 17:17:42 +03:00
-webkit-box-flex: 0;
-ms-flex: 0 0 10%;
flex: 0 0 10%;
width: 10%;
max-width: 10%;
}
2020-03-10 14:54:20 +03:00
2020-04-19 17:49:47 +03:00
.report-column-value {
2020-03-10 14:54:20 +03:00
-webkit-box-flex: 0;
-ms-flex: 0 0 6.66%;
flex: 0 0 6.66%;
max-width: 6.66%;
}
/*--------Report Column Finish--------*/
2020-01-11 17:03:25 +03:00
2020-01-14 17:05:55 +03:00
/*--------App Comment--------*/
2020-04-19 17:49:47 +03:00
.media-comment-text {
2020-01-14 17:05:55 +03:00
border-top-left-radius: 0.4375rem;
padding: 1rem;
}
/*--------App Comment Finish--------*/
/*--------Blank Page Image--------*/
2020-04-19 17:49:47 +03:00
.blank-image {
2020-01-22 19:03:34 +03:00
height: 300px;
}
/*--------Blank Page Image Finish--------*/
2020-01-22 19:03:34 +03:00
2020-01-28 19:56:08 +03:00
/*--------Text Pre Nowrap--------*/
2020-04-19 17:49:47 +03:00
.text-pre-nowrap {
2020-01-24 21:20:08 +03:00
white-space: pre-wrap !important;
}
2020-01-28 19:56:08 +03:00
/*--------Text Pre Nowrap Finish--------*/
2020-02-09 16:06:06 +03:00
/*--------Table Without toggle button--------*/
2020-04-19 17:49:47 +03:00
.tr-py {
2020-02-09 16:06:06 +03:00
padding-top: 5px;
padding-bottom: 5px;
}
/*--------Table Without toggle button Finish--------*/
/*--------Table No Records--------*/
2020-04-19 17:49:47 +03:00
.nr-py {
2020-02-09 16:06:06 +03:00
padding-top: 5px;
padding-bottom: 5px;
}
/*--------Table No Records Finish--------*/
/*--------From Group Disabled--------*/
2020-04-19 17:49:47 +03:00
.form-group.disabled .input-group-text,
.form-group.readonly .input-group-text {
background-color: #e9ecef;
}
/*--------From Group Disabled Finish--------*/
2020-01-28 19:56:08 +03:00
/*--------Modal Dialog Resizing--------*/
2020-04-19 17:49:47 +03:00
@media (min-width: 576px) {
.modal-payment .modal-dialog {
max-width: 559px !important;
2020-01-28 19:56:08 +03:00
}
}
/*--------Modal Dialog Resizing Finish--------*/
2020-01-22 19:03:34 +03:00
2020-02-15 13:04:37 +03:00
/*--Save Buttons Responsive--*/
2020-04-19 17:49:47 +03:00
.save-buttons {
2020-02-15 13:04:37 +03:00
float: right !important;
}
/*--Save Buttons Responsive Finish--*/
/*--Index Pages Badge Min Width--*/
2020-04-19 17:49:47 +03:00
.mw-60 {
min-width: 60px;
}
/*--Index Pages Badge Min Width Finish--*/
/*--Quantity Width--*/
2020-04-19 17:49:47 +03:00
.w-10 {
width: 10%;
}
/*--Quantity Width Finish--*/
2020-02-16 18:49:42 +03:00
2020-03-21 04:42:45 +03:00
/*--Discount Width--*/
2020-04-19 17:49:47 +03:00
.w-12 {
2020-03-21 04:42:45 +03:00
width: 12%;
}
/*--Discount Width Finish--*/
/*--------Responsive--------*/
/*--Xs Breakpoint--*/
2020-04-19 17:49:47 +03:00
@media (max-width: 575.98px) {
.col-xs-1 {
width: 8.33%;
}
.col-xs-2 {
width: 16.66%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-4 {
width: 33.33%;
}
.col-xs-5 {
width: 41.66%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-7 {
width: 58.33%;
}
.col-xs-8 {
width: 66.66%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-10 {
width: 83.33%;
}
.col-xs-11 {
width: 91.66%;
}
.col-xs-12 {
width: 100%;
}
.btn-alone {
2019-11-16 10:21:14 +03:00
width: 100%;
height: 40px;
2020-04-19 17:49:47 +03:00
font-size: 0.875rem;
padding: 0.425rem 1.25rem;
2019-11-16 10:21:14 +03:00
margin-top: 0.4rem;
margin-bottom: -1rem;
}
2021-02-27 22:25:27 +03:00
#header .header-body .btn,
.save-buttons .btn {
width: 100%;
height: 40px;
font-size: 0.875rem;
padding: 0.425rem 1.25rem;
margin-top: 16px;
}
2020-04-19 17:49:47 +03:00
.header-button-top {
2019-11-16 10:21:14 +03:00
width: 100%;
height: 40px;
2020-04-19 17:49:47 +03:00
font-size: 0.875rem;
padding: 0.425rem 1.25rem;
2019-12-28 13:16:07 +03:00
margin-top: 16px;
2019-11-16 10:21:14 +03:00
}
2020-04-19 17:49:47 +03:00
.header-drop-top {
display: block !important;
}
2020-04-19 17:49:47 +03:00
.header-button-bottom {
2019-11-16 10:21:14 +03:00
width: 100%;
height: 40px;
2020-04-19 17:49:47 +03:00
font-size: 0.875rem;
padding: 0.425rem 1.25rem;
2019-11-16 10:21:14 +03:00
margin-top: 0.5rem;
margin-bottom: -1rem;
}
2020-04-19 17:49:47 +03:00
.footer-texts {
2019-11-16 10:21:14 +03:00
width: 100%;
text-align: center;
white-space: nowrap;
font-size: 0.75rem !important;
}
2020-04-19 17:49:47 +03:00
.blank-image {
2020-01-22 19:03:34 +03:00
height: 200px;
}
2020-04-19 17:49:47 +03:00
.col-aka {
2019-11-16 10:21:14 +03:00
margin-left: 0;
}
2020-04-19 17:49:47 +03:00
.left-menu-toggle {
2019-11-16 10:21:14 +03:00
display: block !important;
padding-top: 0.4rem !important;
}
2020-04-19 17:49:47 +03:00
.dashboard-action {
2019-11-16 10:21:14 +03:00
float: right;
}
2020-02-13 11:36:47 +03:00
2020-04-19 17:49:47 +03:00
.dropdown-menu-xs-left {
right: auto;
left: 0 !important;
}
2020-04-19 17:49:47 +03:00
.dropdown-menu-xs-right {
right: 0 !important;
left: auto;
}
2020-04-19 17:49:47 +03:00
.pagination-xs {
2020-02-13 11:36:47 +03:00
padding-right: 0;
padding-top: 1.5rem;
}
2020-02-13 14:21:48 +03:00
2020-04-19 17:49:47 +03:00
.el-range-editor.el-input__inner {
2020-02-13 14:21:48 +03:00
width: 100% !important;
margin-top: 1rem;
}
2020-02-15 13:04:37 +03:00
2020-04-19 17:49:47 +03:00
.save-buttons {
2020-02-15 13:04:37 +03:00
float: none !important;
}
2021-02-27 22:25:27 +03:00
input[type=hidden].form-control.datepicker.input {
display: none;
}
.item-columns-edit {
margin-left: 23px !important;
}
2019-11-16 10:21:14 +03:00
}
/*--Xs Breakpoint Finish--*/
2019-11-16 10:21:14 +03:00
/*--Sm Breakpoint--*/
2020-04-19 17:49:47 +03:00
@media (min-width: 576px) and (max-width: 767.98px) {
2019-11-16 10:21:14 +03:00
}
/*--Sm Breakpoint Finish--*/
2019-11-16 10:21:14 +03:00
/*--Md Breakpoint--*/
2020-04-19 17:49:47 +03:00
@media (min-width: 768px) and (max-width: 991.98px) {
.sidenav .navbar-nav .dropdown-menu {
2019-11-16 10:21:14 +03:00
left: 1rem !important;
}
}
/*--Md Breakpoint Finish--*/
2019-11-16 10:21:14 +03:00
/*--Lg Breakpoint--*/
2020-04-19 17:49:47 +03:00
@media (min-width: 992px) and (max-width: 1199.98px) {
.sidenav .navbar-nav .dropdown-menu {
2019-11-16 10:21:14 +03:00
left: 1rem;
}
}
/*--Lg Breakpoint Finish--*/
/*--------Responsive Finish--------*/
2020-04-18 22:11:06 +03:00
/*--------Menu Fix--------*/
.navbar-vertical .navbar-nav .nav-link:hover:not(.active) {
color: #fff;
}
.navbar-vertical .navbar-nav .nav-link:hover:not(.active) {
color: #fff;
}
.navbar-vertical .navbar-nav .nav-link.active i {
color: #161842 !important;
}
2020-04-19 17:49:47 +03:00
2020-04-18 22:11:06 +03:00
@media (min-width: 1200px) {
.g-sidenav-show #panel {
2020-04-19 17:49:47 +03:00
margin-left: 250px;
2020-04-18 22:11:06 +03:00
}
}
@media (max-width: 991.98px) {
.g-sidenav-show.g-sidenav-hidden .sidenav {
2020-04-19 17:49:47 +03:00
max-width: 62px !important;
2020-04-18 22:11:06 +03:00
}
}
2020-10-09 16:24:25 +03:00
@media (min-width: 1200px) {
2020-10-15 15:47:19 +03:00
.g-sidenav-show .sidenav {
max-width: 250px !important;
2020-10-09 16:24:25 +03:00
}
2020-04-18 22:11:06 +03:00
}
.scrollbar-inner {
width: 100%;
}
.scrollbar-inner .sidenav-header {
padding: 0 24px;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.g-sidenav-pinned #sidenav-collapse-main {
display: block;
}
@media (min-width: 1200px) {
.g-sidenav-pinned .navbar-vertical.navbar-expand-xs {
2020-04-19 17:49:47 +03:00
max-width: 250px !important;
2020-04-18 22:11:06 +03:00
}
}
2020-04-19 17:49:47 +03:00
@media (min-width: 768px) {
2020-04-18 22:11:06 +03:00
.navbar-vertical .navbar-collapse:before {
2020-04-19 17:49:47 +03:00
content: "";
2020-04-18 22:11:06 +03:00
display: block;
margin: 0;
}
}
@media (max-width: 768px) {
.navbar.navbar-top.navbar-expand.navbar-dark.border-bottom {
z-index: 99999;
}
.dropdown-menu-xl {
min-width: 345px !important;
}
.aka-select.aka-select--medium {
max-width: 294px !important;
}
}
2020-04-18 22:11:06 +03:00
.navbar-vertical.navbar-expand-xs {
position: fixed;
top: 0;
bottom: 0;
display: block;
overflow-y: auto;
width: 100%;
max-width: 62px;
padding-right: 0;
padding-left: 0;
z-index: 999999;
2020-04-18 22:11:06 +03:00
}
2020-04-19 17:49:47 +03:00
.navbar-vertical .navbar-nav .nav-link:not(.active) {
2020-04-18 22:11:06 +03:00
color: #fff !important;
}
.form-group.has-error .el-input__inner {
border-color: #ef3232 !important;
}
2020-09-07 12:51:56 +03:00
.form-group .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")
}
/*--lightbox Start--*/
.vue-lb-info {
position: initial !important;
padding-top: 8px !important;
2020-09-09 15:43:27 +03:00
background-color: #3c3f72 !important;
color: #ffffff;
border-bottom-left-radius: 0.375rem;
border-bottom-right-radius: 0.375rem;
}
.vue-lb-modal-image {
border: 1px solid #3c3f72;
}
/*--lightbox Finish--*/
2020-11-09 20:30:05 +03:00
2020-12-25 15:53:38 +03:00
/*-- Search string & BulkAction Start -- */
#app > .card > .card-header.bg-gradient-primary {
2020-11-09 20:30:05 +03:00
min-height: 88px;
}
2020-12-07 12:03:02 +03:00
/*-- Search string & BulkAction Finish --*/
/*-- Embed accordion textarea Start--*/
.embed-card-body-footer {
margin-bottom: -1.5rem;
2020-12-29 21:55:21 +03:00
border-top: 1px solid #e9ecef;
margin-left: -25px;
margin-right: -25px;
}
.embed-acoordion-textarea .form-control-label {
margin-top: 20px;
margin-bottom: -10px;
2020-12-07 12:03:02 +03:00
}
.embed-acoordion-textarea {
margin-bottom: 0;
}
.embed-acoordion-textarea .embed-card-body-footer-textarea {
margin-left: -12px;
}
.embed-acoordion-textarea textarea {
border: none;
margin-top: 5px;
resize: none;
-webkit-box-shadow: none;
box-shadow: none;
background-clip: unset;
margin-left: 15px;
}
.embed-acoordion-textarea textarea:focus {
border: none;
-webkit-box-shadow: none;
box-shadow: none;
background-clip: unset;
}
/*-- Embed accordion textarea Start Finish--*/
.document-item-body {
margin-left: -25px;
margin-right: -25px;
}
.item-columns-edit {
display: inline-block;
margin-left: 50px;
2020-12-29 17:31:26 +03:00
font-weight: normal;
font-size:12px;
2020-12-07 12:03:02 +03:00
background: #f6f9fc;
color: #8898aa;
padding: 6px 12px;
border-radius: 6px 6px 0 0;
}
2020-12-29 17:31:26 +03:00
.item-columns-edit button {
font-weight: normal;
}
2020-12-07 12:03:02 +03:00
.document-total-currency {
float: right;
margin-bottom: 0;
max-width: 150px;
}
.document-total-span {
vertical-align: middle;
line-height: 44px;
margin-right: 15px;
}
2021-01-04 00:25:39 +03:00
.table-padding-05 td {
2020-12-07 12:03:02 +03:00
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.difference-money .disabled-money {
background-color: transparent !important;
border: none;
}
.banking-price-text {
color: #525f7f;
}
2020-12-07 12:03:02 +03:00
.disabled-money,
.disabled-money input {
border:none !important;
background-color: #ffffff !important;
box-shadow: none !important;
-webkit-box-shadow: none !important;
-webkit-transition: none !important;
transition: none !important;
2020-12-24 01:28:38 +03:00
padding: 0;
2020-12-07 12:03:02 +03:00
}
.form-group .custom-file {
height: calc(1.5em + 1.25rem + 130px) !important;
}
.dz-message .dz-button {
background: hsla(0,0%,100%,0);
border: none;
color: #8898aa;
2020-12-22 14:47:50 +03:00
}
2020-12-24 01:28:38 +03:00
.disabled-col-aka .col-aka {
margin-left: inherit !important;
}
2020-12-22 14:47:50 +03:00
.el-select-dropdown__item.is-disabled {
color: #C0C4CC !important;
cursor: not-allowed !important;
}
2020-12-24 01:28:38 +03:00
.btn-delete {
color: #8898aa;
}
.btn-delete:hover {
color: #ef3232;
}
.td-move {
width: 40px;
min-width: 40px;
padding-left: 0px;
padding-right: 0px;
/* width: 40px; padding-left: 15px; padding-top: 20px; padding-right: 16px; */
}
/* Contact Card Start */
.document-contact-without-contact .aka-select {
width: 384px;
}
.aka-select.aka-select--medium {
max-width: 320px;
}
.aka-select {
position: relative;
border-radius: 4px;
outline: none;
margin: 4px 0;
display: inline-block;
width: 100%;
min-width: 160px;
max-width: 320px;
}
.document-contact-without-contact .aka-box {
padding: 0;
}
.aka-box.aka-box--large, .aka-box--gray.aka-box--large {
padding: 16px;
margin-bottom: 16px;
}
.aka-box {
display: block;
padding: 12px;
margin-bottom: 12px;
border-radius: 8px;
border: 1px solid #b2c2cd;
background-color: #fff;
}
2020-12-29 21:55:21 +03:00
.aka-box:hover {
background-color: #f6f9fc;
}
.aka-box-content>:last-child {
2020-12-24 01:28:38 +03:00
margin-bottom: 0;
}
.aka-box-content>:first-child {
2020-12-24 01:28:38 +03:00
margin-top: 0;
}
.document-contact-without-contact-box {
display: flex;
height: 135px;
}
.btn-aka-link[class*="aka-btn"] {
margin: 0;
padding: 0;
}
.document-contact-without-contact-box-btn {
margin: 0;
}
.btn-aka-link {
border: none;
padding: 0;
background: transparent;
}
.aka-btn--fluid {
width: 100%;
}
.aka-text-link,
.aka-text-link-external,
.btn-aka-link,
.aka-datepicker-quicklinks
.aka-datepicker-quicklink,
.aka-table-action {
text-decoration: none;
color: #55588b;
font-weight: bold;
cursor: pointer;
}
.btn-aka-link:hover:not(.is-disabled):not(:focus) {
outline: 0;
}
.document-contact-without-contact-box-btn:hover:not(.is-disabled) {
text-decoration: none;
}
.btn-aka-link[class*="aka-btn"] {
margin: 0;
padding: 0;
}
.aka-text-link:hover,
.aka-text-link-external:hover,
.btn-aka-link:hover,
.aka-datepicker-quicklinks
.aka-datepicker-quicklink:hover,
.aka-table-action:hover {
2020-12-29 17:31:26 +03:00
color: #3c3f72;
2020-12-24 01:28:38 +03:00
text-decoration: underline;
}
.document-contact-without-contact-box-btn {
margin: 0;
}
.btn-aka-link {
border: none;
padding: 0;
background: transparent;
}
.aka-btn--fluid {
width: 100%;
}
.document-contact-without-contact .aka-select .aka-select-menu {
padding: 0;
top: 0;
overflow: hidden;
border-radius: 4px;
}
.is-open>.aka-select-menu {
visibility: visible;
height: auto;
-webkit-animation: panel-slide-down .1s ease-in-out forwards;
animation: panel-slide-down .1s ease-in-out forwards;
}
.aka-select-menu {
list-style: none;
box-sizing: border-box;
margin: 0;
padding: 0;
text-align: left;
display: block;
visibility: hidden;
position: absolute;
top: 110%;
z-index: 1000;
min-width: 100%;
padding: 8px 0;
border-radius: 4px;
color: #1c252c;
background-color: white;
box-shadow: 0 0 0 1px rgba(77,101,117,0.1), 0 3px 10px 0 rgba(77,101,117,0.2);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
height: 0;
-webkit-transform: translateY(4px);
transform: translateY(4px);
overflow: hidden;
padding: 0;
right: 0;
left: 0;
top: 100%;
border-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.document-contact-without-contact .aka-select .aka-select-menu .aka-select-search-container {
margin-top: 0;
}
.aka-select-search-container {
padding: 8px;
}
.is-open>.aka-select-menu {
visibility: visible;
height: auto;
-webkit-animation: panel-slide-down .1s ease-in-out forwards;
animation: panel-slide-down .1s ease-in-out forwards;
}
.aka-select-search-container .aka-prefixed-input {
max-width: 100%;
min-width: 0;
}
.aka-prefixed-input.aka-prefixed-input--fluid {
max-width: 100%;
min-width: 0;
}
.aka-prefixed-input {
width: 100%;
min-width: 160px;
max-width: 320px;
}
.aka-prefixed-input, .aka-suffixed-input {
display: -webkit-inline-flex;
display: inline-flex;
-webkit-align-items: center;
align-items: center;
}
.aka-prefixed-input-prefix {
position: relative;
display: inline-block;
box-sizing: border-box;
font-size: 19px;
line-height: 19px;
vertical-align: middle;
color: #b2c2cd;
pointer-events: none;
text-align: left;
width: 40px;
margin-right: -40px;
padding-left: 12px;
}
.aka-select-menu-options {
list-style: none;
box-sizing: border-box;
margin: 0;
padding: 0;
text-align: left;
max-height: 460px;
overflow: auto;
}
.aka-select-menu-option.is-active:not(.is-selected):not(.is-disabled) {
background-color: #f0f4fa;
}
.aka-select-menu-option {
padding: 8px 10px;
cursor: pointer;
display: -webkit-flex;
display: flex;
position: relative;
}
2020-12-29 21:55:21 +03:00
.aka-select-menu-option:hover {
background-color: #F5F7FA;
}
2020-12-24 01:28:38 +03:00
.text-strong {
font-weight: bold;
}
.aka-select-footer {
2020-12-24 01:28:38 +03:00
text-align: center;
2020-12-29 21:55:21 +03:00
border-top: 1px solid #dee2e6;
2020-12-24 01:28:38 +03:00
cursor: pointer;
2020-12-29 21:55:21 +03:00
color: #3c3f72;
2020-12-24 01:28:38 +03:00
font-weight: bold;
2020-12-29 21:55:21 +03:00
height: 40px;
line-height: 40px;
margin-top: 6px;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
.aka-select-footer:hover {
background-color: #3c3f72 !important;
color: white !important;
border-top-color: #3c3f72;
2020-12-24 01:28:38 +03:00
}
.document-item-table>.aka-table>.aka-table-body>.aka-table-row:last-child .btn-aka-link {
padding: 13px 15px;
margin: 0;
}
.document-add-info-content-info-business {
margin-top: 12px;
}
.document-add-info-content-info {
text-align: right;
}
.document-add-info .address .aka-text {
line-height: 16px;
}
.aka-text, .aka-text--body {
margin: 16px 0;
}
2020-12-25 01:21:46 +03:00
.box-shadow-none {
text-decoration: none;
-webkit-box-shadow: none;
box-shadow: none
}
.card-header.collapsed.background-none {
background-color: #f8f9fe;
}
/* Document Finish */
/* Akaunting Item Button Start */
.aka-select.aka-select--fluid {
min-width: 160px;
}
.aka-select.aka-select--fluid {
max-width: 100%;
min-width: 0;
}
.product-select .item-add-new:hover {
2020-12-29 17:31:26 +03:00
background-color: #f6f9fc;
text-decoration: none;
}
.product-select .item-add-new button {
height: 54px;
}
.product-select .aka-select.aka-select--fluid {
margin: -54px 0 !important
}
.product-select .aka-select-menu {
margin-left: 4%;
width: 92%;
min-width: 0;
padding: 0;
top: 0;
overflow: hidden;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-top-width: 0;
}
.aka-select-menu {
list-style: none;
box-sizing: border-box;
margin: 0;
padding: 0;
text-align: left;
display: block;
visibility: hidden;
position: absolute;
top: 110%;
z-index: 1000;
min-width: 100%;
padding: 8px 0;
border-radius: 4px;
color: #1c252c;
background-color: white;
box-shadow: 0 0 0 1px rgba(77,101,117,0.1), 0 3px 10px 0 rgba(77,101,117,0.2);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
height: 0;
-webkit-transform: translateY(4px);
transform: translateY(4px);
overflow: hidden;
padding: 0;
right: 0;
left: 0;
top: 100%;
border-top: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
-webkit-transform: translateY(0);
transform: translateY(0);
}
.product-select .aka-select.aka-select--fluid.is-open {
position: absolute;
display: block;
margin-top: -50px;
}
.item-select {
display: flex;
flex-flow: row nowrap;
}
.item-select-column {
white-space: nowrap;
overflow: hidden;
}
.item-select-price {
width: 135px;
text-align: right;
}
2021-01-19 18:32:26 +03:00
.item-select-info-description, .item-select-info-name {
width: 710px;
display: block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.item-select-column {
white-space: nowrap;
overflow: hidden;
}
.item-select .v-money.text-right.disabled-money {
color: #8898aa;
2020-12-29 21:55:21 +03:00
background-color: transparent !important;
}
.item-select .v-money.text-right.disabled-money:hover {
background-color: #F5F7FA !important;
}
/* Akaunting Item Button Finish */
/* Document Loading Start */
.document-loading {
position: absolute;
overflow: auto;
width: 100%;
height: 100%;
background: #f8f9fe;
z-index: 99;
border-radius: 0.375rem;
}
.document-loading div {
margin-top: 20%;
margin-left: 45%;
}
2020-12-30 23:17:49 +03:00
/* Document Loading Finish */
2021-01-19 18:32:26 +03:00
2020-12-30 23:17:49 +03:00
/* Custom File stype Start */
.form-file {
width: 100%;
}
.form-file .dz-message {
padding: 0.6rem 1rem;
}
/* Custom File stype Finish */
2021-01-03 13:33:32 +03:00
/* el-select__tags */
.el-select-tags-pl-38 .el-select .el-select__tags {
padding-left: 38px !important;
}
/* el-select__tags */
2021-01-04 01:53:45 +03:00
/* Akaunting select remove add suffix icon Start */
.el-input.el-input--prefix.el-input--suffix .el-select__caret.el-input__icon.el-icon-:before {
content: "\e6e1";
}
.el-input.el-input--prefix.el-input--suffix.is-focus .el-select__caret.el-input__icon.el-icon- {
-webkit-transform: rotateZ(0);
transform: rotateZ(0);
}
2021-01-04 18:26:52 +03:00
/* Akaunting select remove add suffix icon Finish */
.item-add-new .btn-link {
color: #55588b;
}
2021-01-13 13:45:50 +03:00
2021-01-04 18:26:52 +03:00
.item-columns-edit .btn-aka-link {
color: #8688ad;
2021-01-13 13:45:50 +03:00
}
2021-01-13 17:02:19 +03:00
.apps-store-bar .el-input__inner {
2021-01-13 18:43:33 +03:00
padding-left: 30px !important;
2021-01-13 17:02:19 +03:00
border: 0 !important;
}
.apps-store-bar .searh-field {
border: 0 !important;
}
.apps-store-bar .vr {
border-left: 2px solid rgba(0, 0, 0, 0.05);
height: 50px;
position: absolute;
left: 16.8%;
}
.apps-store-bar .searh-field .btn.btn-link.clear {
display: none !important;
}
2021-01-26 15:33:43 +03:00
.document-item-40-px {
width: 40px;
}
.document-item-10 {
width: 10%;
}
.document-item-20 {
width: 20%;
}
.document-item-25 {
width: 25%;
}
.document-item-30 {
width: 30%;
}
.document-total-50 {
width: 50%;
}
.document-total-30 {
width: 30%;
}
.document-total-25 {
width: 25%;
}
.document-total-40-px {
width: 40px;
}
@media (max-width: 575.98px) {
table#items {
min-width: 700px !important ;
}
.document-total-50 {
width: 20%;
}
.document-total-30 {
width: 40%;
}
.document-total-25 {
width: 35%;
}
.document-total-40-px {
max-width: 1px;
width: 1px;
padding: 0;
margin: 0;
}
.item-add-new button.btn.btn-link.w-100 {
text-align: left;
padding-left: 15%;
}
@supports (-webkit-touch-callout: none) {
.product-select .aka-select.aka-select--fluid.is-open {
position: relative;
height: 460px;
margin-top: unset !important;
}
}
}
/* Color Picker Submit Button Start */
.el-button.el-color-dropdown__btn.el-button--default.el-button--mini.is-plain {
color: #ffffff;
border-color: #6da252;
background-color: #6da252;
font-weight: 500;
box-shadow: 0 4px 6px rgb(30 31 57 / 11%), 0 1px 3px rgb(0 0 0 / 8%);
/*transition: all .15s ease; */
letter-spacing: .025em;
font-size: .75rem;
text-transform: none;
will-change: transform;
}
.el-button.el-color-dropdown__btn.el-button--default.el-button--mini.is-plain:hover {
animation: 0.7s ease alternate infinite;
animation-delay: 0.28s;
color: #fff !important;
background-color: #6da252 !important;
box-shadow: 0 7px 14px rgb(50 50 93 / 10%), 0 3px 6px rgb(0 0 0 / 8%);
border-color:#6da252 !important;
}
/* Color Picker Submit Button Finish */
/* Color Picker Submit Button Start */
.el-button.el-color-dropdown__link-btn.el-button--text.el-button--mini {
color: #55588b;
border-color: transparent;
background-color: transparent;
background-image: none;
transition: all .15s ease;
letter-spacing: .025em;
font-size: .75rem;
will-change: transform;
padding: 0.438rem 0.938rem;
font-weight: 600;
}
.el-button.el-color-dropdown__link-btn.el-button--text.el-button--mini:hover {
border-color: transparent;
background-color: #e5e5e5;
box-shadow: none;
}
/* Color Picker Submit Button Finish */
2021-05-01 17:25:53 +03:00
/* Select Tag Fixed Content Start */
.form-group .el-select .el-select__tags > span {
display: contents !important;
}
2021-06-04 15:09:54 +03:00
/* Select Tag Fixed Content Finish */
/* Line item */
2021-06-07 17:32:15 +03:00
.line-item-link-container {
height: 25px;
}
2021-06-04 15:09:54 +03:00
.line-item-link {
display: flex;
2021-06-07 17:32:15 +03:00
padding-bottom: 10px;
top: -12px;
2021-06-04 15:09:54 +03:00
}
.line-item-area {
display: flex;
justify-content: space-between;
align-items:center;
}
.line-item-content {
position: relative;
width: 100%;
2021-06-07 17:32:15 +03:00
max-width: 242px;
}
.line-item-content .form-group {
position: relative;
}
.line-item-content .badge {
position: absolute !important;
bottom: 12px;
right: 0;
2021-06-04 15:09:54 +03:00
}
.line-item-content-right {
display: flex;
align-items: center;
}
.line-item-content-right-price {
padding-right: 1.5rem;
}
.line-item-content-right-delete {
width:40px;
padding-right: 1.5rem;
2021-06-07 20:14:14 +03:00
/* padding-left: 5px !important; */
2021-06-04 15:09:54 +03:00
}
.line-item-text {
width: 54px;
2021-06-07 12:17:59 +03:00
text-align: right;
2021-06-04 15:09:54 +03:00
}
@media (max-width: 1500px) {
@media not all and (min-resolution:.001dpcm) { @media {
.line-item-content {
2021-06-10 12:44:38 +03:00
max-width:223px;
2021-06-04 15:09:54 +03:00
}
}}
}
2021-06-07 20:14:14 +03:00
@media only screen and (max-width: 600px) {
.line-item-content {
max-width: 133px;
}
}
2021-06-10 12:44:38 +03:00
/* Line item */