changes UI 80%

pull/1/head
alireza hassani 5 years ago
parent 14e74e1c65
commit 47011717a3

@ -96,7 +96,7 @@ export default {
{
titleEn: " Portfolio Management ",
titleFa: " مدیریت نمونه کارها ",
icon: "rss",
icon: "art-gallery",
href: '/portfolio',
},
{

@ -18,10 +18,10 @@ if (UserService.get()) {
store.commit('auth/SET_AUTH_USER', UserService.get())
}
if (CategoryNameService.get()) {
Globalstore.commit('common/SET_CATEGORY_NAME', CategoryNameService.get())
} else {
// if (CategoryNameService.get()) {
// Globalstore.commit('common/SET_CATEGORY_NAME', CategoryNameService.get())
// } else {
Globalstore.dispatch('common/loadCategoryName');
}
// }
import '@Global/services/errorHandler.services'
import '@Global/services/errorHandler.services'

@ -49,4 +49,4 @@ $Value in $colors {
.WM-BG-LightGray {
color: #000 !important;
}
}

@ -192,12 +192,25 @@
width: calc(100% - 45px);
float: right;
}
.hasHelp .v-autocomplete, .hasHelp .vue-treeselect {
width: calc(100% - 45px);
float: right;
}
.hasConfig.hasHelp .v-autocomplete, .hasConfig.hasHelp .vue-treeselect {
width: calc(100% - 90px);
float: right;
}
.hasConfig .v-btn {
float: right;
margin-top: 20px;
margin-right: 10px;
}
.hasConfig .v-btn:nth-of-type(2) {
margin-right: 5px;
}
.hasConfig .v-card__text {
width: calc(100% - 50px);
@ -243,3 +256,10 @@
/* --------------------------------------------------------
Float Buttons :: End
-------------------------------------------------------- */
.color-square {
width: 16px;
height: 16px;
border-radius: 8px;
margin-left: 8px;
}

@ -432,6 +432,9 @@ $Value in $Shadows {
.v-expansion-panel-header {
padding: 0px;
}
.v-expansion-panels.flat .v-expansion-panel.v-expansion-panel--active.v-item--active {
border: none;
}
// ------------------------------------------------------------------

@ -29,7 +29,6 @@ $TealShadow:rgba(0, 137, 123, 0.2);
$Colors: (Red: $Red, Orange: $Orange, Yellow: $Yellow, Gold: $Gold, Purple: $Purple, Blue: $Blue, Green: $Green, Cyan: $Cyan, LightGray: $LightGray, Gray: $Gray, Brown: $Brown, Black: $Black, White: $White);
$colors: (red: $Red, orange: $Orange, yellow: $Yellow, gold: $Gold, purple: $Purple, blue: $Blue, green: $Green, cyan: $Cyan, gray: $Gray, brown: $Brown, black: $Black, white: $White, tael: $Teal);
$Shadows: (red: $RedShadow, orange: $OrangeShadow, yellow: $YellowShadow, gold: $GoldShadow, purple: $PurpleShadow, blue: $BlueShadow, green: $GreenShadow, cyan: $CyanShadow, gray: $GrayShadow, 'grey lighten-3': $LightGrayShadow, brown: $BrownShadow, black: $BlackShadow, white: $WhiteShadow, teal: $TealShadow);
:root {
--color-red: #ee3552;
--color-orange: #ff6b57;
@ -47,5 +46,8 @@ $Shadows: (red: $RedShadow, orange: $OrangeShadow, yellow: $YellowShadow, gold:
--color-light-gray: #e6e6e6;
--color-light-blue: #C9D3EC;
--color-link-hover: #181b31;
//------------------------Module Colors
--color-portfolio: #915117;
--color-client: #32c5d2;
--color-task: #ac3773;
}

@ -1,7 +1,7 @@
export default {
task: {
my_task: {name: '', name_en: ''},
my_request: {name: '', name_en: ''},
my_task: {name: ' وظایف من ', name_en: ' My Tasks '},
my_request: {name: ' درخواست های من ', name_en: ' My Requests '},
title: {
add: {name: 'تعریف وظیفه ', name_en: ' Define a Task '},
add_category: {name: 'افزودن نوع وظیفه', name_en: ' Add a Task Type '},
@ -21,4 +21,4 @@ export default {
status: {name: 'وضعیت وظیفه', name_en: 'Task Status'},
responsibility: {name: 'مسئول وظیفه', name_en: 'Task Responsibility'},
},
}
}

@ -12,7 +12,7 @@ export default{
},
},
client_title: {
name: 'عنوان مشتری',
name: 'عنوان مشتری',
name_en: 'Title',
title: {
add: {name:' افزودن عنوان مشتری جدید ', name_en: ' Add a Title '},
@ -20,14 +20,14 @@ export default{
}
},
client_category: {
name: 'دسته',
name: 'دسته',
name_en: 'Category',
title: {
list: {name:' ویرایش دسته بندی مشتری ها ', name_en: 'Edit Client\'s Category '},
},
},
client_status: {
name: 'وضعیت',
name: 'وضعیت',
name_en: 'Status',
title: {
list: {name:' ویرایش وضعیت مشتری ها ', name_en: ' Edit Client\'s Status '},
@ -49,4 +49,8 @@ export default{
request: {name: 'درخواســت های مـــن', name_en: 'MY Requests'},
client: {name: 'مشتــــــــریان مـــــــــن ', name_en: 'My Clients'}
}
}
}

@ -1,6 +1,6 @@
export default {
Task: 'cyan',
CRM: 'cyan',
Portfolio: 'cyan',
Portfolio: 'cyan',
}
task: 'purple',
client: 'cyan',
portfolio: 'brown',
blog: 'orange',
}

@ -7,15 +7,16 @@
v-for="( module ,key ) in getModules"
:key="key"
>
<wm-tile
:TileClass="module.title_class"
:TitleEn="module.title_en"
:TitleFa="module.title_fa"
:TitleEn="$_name(`${module.slug}.name_en`)"
:TitleFa="$_name(`${module.slug}.name`)"
:GradientBegin="module.gradient_begin"
:GradientEnd="module.gradient_end"
:ImageURL="module.img_url"
:ImageHeight="module.img_height"
></wm-tile>
/>
</a>
</v-layout>
<router-link v-if="getAuthUser.is_owner == 'true' || hostname == originHostName" :to="{name: 'AddModule'}">

Loading…
Cancel
Save