Skip to content

Commit

Permalink
linux系统,引入主题色文件名大小写编译错误bug #22
Browse files Browse the repository at this point in the history
  • Loading branch information
daxiongYang committed May 27, 2018
1 parent d7bc593 commit 67d9fba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/assets/scss/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// 站点主色
// tips: 要达到整站主题修改效果, 请确保[$--color-primary]站点主色与[/src/element-ui-theme/index.js]文件中[import './element-[#17b3a3]/index.css']当前主题色一致
// tips: 要达到整站主题修改效果, 请确保[$--color-primary]站点主色与[/src/element-ui-theme/index.js]文件中[active]属性值一致
$--color-primary: #17b3a3;

// Navbar
Expand Down
21 changes: 11 additions & 10 deletions src/element-ui-theme/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,23 @@
*
* tips:
* 1. 此处只包含element-ui组件主题
* 2. 要达到整站主题修改效果, 请确保[import './element-[#17b3a3]/index.css']当前主题色与[/src/assets/scss/_variables.scss]文件中[$--color-primary]属性值一致
* 2. 要达到整站主题修改效果, 请确保[active]当前主题色与[/src/assets/scss/_variables.scss]文件中[$--color-primary]属性值一致
*/
import './element-#17b3a3/index.css' // 当前主题色
export default {
const theme = {
active: '#17b3a3', // 当前主题色
list: [
'#3e8ef7', // 蓝色
'#997b71', // 棕色
'#0bb2d4', // 青色
'#3e8ef7', // 蓝色
'#11c26d', // 绿色
'#757575', // 灰色
'#17b3a3', // 蓝绿色
'#667afa', // 靛青色
'#997b71', // 棕色
'#9463f7', // 紫色
'#757575', // 灰色
'#eb6709', // 橙色
'#f74584', // 粉红色
'#9463f7', // 紫色
'#ff4c52', // 红色
'#17b3a3', // 蓝绿色
'#fcb900' // 黄色
'#fcb900', // 黄色
'#ff4c52' // 红色
]
}
require(`./element-${theme.active.toUpperCase()}/index.css`)

1 comment on commit 67d9fba

@daxiongYang
Copy link
Contributor Author

@daxiongYang daxiongYang commented on 67d9fba Jun 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

此次提交修复代码使用require引入,导致将所有主题样式打包bug。请移步到8edecdc

Please sign in to comment.