somewhere
This commit is contained in:
@@ -0,0 +1,92 @@
|
||||
// Here you can add other styles
|
||||
.copy-right {
|
||||
color: #872071;
|
||||
font-weight: bold;
|
||||
|
||||
&:hover {
|
||||
text-decoration: none;
|
||||
color: #872071;
|
||||
}
|
||||
}
|
||||
|
||||
pre {
|
||||
background: #000 !important;
|
||||
color: green !important;
|
||||
direction: ltr !important;
|
||||
text-align: left !important;
|
||||
padding: 20px !important;
|
||||
font-size: 20px !important;
|
||||
}
|
||||
|
||||
.c-app {
|
||||
.custom-subheader {
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
top: $header-height;
|
||||
left: 0;
|
||||
z-index: 10;
|
||||
transition: width $layout-transition-speed;
|
||||
-webkit-transition: width $layout-transition-speed;
|
||||
-moz-transition: width $layout-transition-speed;
|
||||
-ms-transition: width $layout-transition-speed;
|
||||
-o-transition: width $layout-transition-speed;
|
||||
|
||||
&.sideBarFull {
|
||||
width: calc(100% - #{$sidebar-width});
|
||||
}
|
||||
|
||||
&.sideBarMinimized {
|
||||
width: calc(100% - #{$sidebar-minimized-width});
|
||||
}
|
||||
|
||||
&.sideBarClose {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
|
||||
.form-group {
|
||||
&.err {
|
||||
.col-form-label {
|
||||
color: red !important;
|
||||
}
|
||||
|
||||
.form-control {
|
||||
border-color: red !important;
|
||||
}
|
||||
|
||||
.form-text {
|
||||
color: red !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.c-sidebar-nav-dropdown {
|
||||
.c-sidebar-nav-dropdown-toggle {
|
||||
background: rgba(gray, 0.2) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.vpd-main {
|
||||
.vpd-selected {
|
||||
.vpd-day-text {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.vpd-date {
|
||||
span {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
// vue persian dateTime picker styles
|
||||
.vpd-icon-btn {
|
||||
padding: 9px 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////////////////////// element ui rtl fix
|
||||
html:lang(fa) {
|
||||
.el-tag {
|
||||
/*margin-bottom: 10px!important;*/
|
||||
}
|
||||
|
||||
.text-area {
|
||||
textarea {
|
||||
height: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.el-popup-parent--hidden {
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
.el-tag .el-icon-close {
|
||||
right: auto !important;
|
||||
left: -5px !important;
|
||||
}
|
||||
|
||||
.el-table .el-table__body-wrapper .el-table__row .is-left {
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.el-form-item__label {
|
||||
float: right !important;
|
||||
text-align: right !important;
|
||||
}
|
||||
|
||||
.el-form-item__content {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 120px !important;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.el-form-item__content {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.secondTitle {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.el-upload__input {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.el-message-box__title,
|
||||
.el-message-box__message {
|
||||
direction: rtl !important;
|
||||
text-align: right !important;
|
||||
}
|
||||
|
||||
.el-message-box__message {
|
||||
padding-left: 12px !important;
|
||||
padding-right: 36px !important;
|
||||
}
|
||||
|
||||
.el-message-box__btns {
|
||||
text-align: left !important;
|
||||
}
|
||||
|
||||
.el-message-box__headerbtn {
|
||||
right: auto !important;
|
||||
left: 15px !important;
|
||||
}
|
||||
|
||||
.el-message-box__btns button:nth-child(2) {
|
||||
margin-left: 0 !important;
|
||||
margin-right: 10px !important;
|
||||
}
|
||||
|
||||
.el-message-box__status {
|
||||
right: 0 !important;
|
||||
}
|
||||
|
||||
.el-table td,
|
||||
.el-table th {
|
||||
text-align: right !important;
|
||||
}
|
||||
|
||||
.el-upload__input {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.el-checkbox__label {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
|
||||
.el-message__icon {
|
||||
margin-right: 0 !important;
|
||||
margin-left: 10px !important;
|
||||
}
|
||||
|
||||
.sidebar-subnav {
|
||||
background: rgba(0, 0, 0, 0.05) !important;
|
||||
}
|
||||
|
||||
.sidebar > .nav > li {
|
||||
border-bottom: 1px solid #eee !important;
|
||||
}
|
||||
|
||||
.brand-logo p {
|
||||
margin-top: 6px !important;
|
||||
}
|
||||
|
||||
.brand-logo-collapsed svg {
|
||||
fill: #fff !important;
|
||||
}
|
||||
|
||||
.nav-floating {
|
||||
background: #fff !important;
|
||||
}
|
||||
|
||||
.el-dialog__headerbtn {
|
||||
right: auto !important;
|
||||
left: 20px !important;
|
||||
}
|
||||
|
||||
.el-radio__label {
|
||||
padding-right: 10px !important;
|
||||
}
|
||||
|
||||
.el-scrollbar__wrap {
|
||||
margin-right: 0 !important;
|
||||
margin-left: -17px !important;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
// Variable overrides
|
||||
$gray-base: #1a1e24;
|
||||
@@ -0,0 +1,18 @@
|
||||
// If you want to override variables do it here
|
||||
@import 'variables';
|
||||
|
||||
// Import styles
|
||||
@import '~@coreui/coreui/scss/coreui';
|
||||
|
||||
// If you want to add something do it here
|
||||
@import 'custom';
|
||||
@import 'el_ui_rtl';
|
||||
|
||||
.card-header:not(.content-center) > .c-icon:first-child {
|
||||
margin-right: 0.1rem;
|
||||
margin-top: 0.1rem;
|
||||
vertical-align: top;
|
||||
width: 1.2rem;
|
||||
height: 1.2rem;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
Reference in New Issue
Block a user