Skip to content

Commit

Permalink
完善功能
Browse files Browse the repository at this point in the history
  • Loading branch information
zollero committed Sep 18, 2017
1 parent 4081c96 commit 1a1836c
Show file tree
Hide file tree
Showing 24 changed files with 203 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
node_modules/
dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
Expand Down
1 change: 1 addition & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>Todo List</title><meta http-equiv=content-type content="text/html;charset=utf-8"><meta name=viewport content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"><link href=./static/css/app.fc41c1bea4c2d98e42dbdbd5444647e6.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.eaf9294cd8068bfefaa8.js></script><script type=text/javascript src=./static/js/vendor.6ae3bbd38389517fc15b.js></script><script type=text/javascript src=./static/js/app.33a41a5742c21641c2c0.js></script></body></html>
11 changes: 11 additions & 0 deletions dist/static/css/animate.min.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions dist/static/css/app.6017e14c7a9eb2eec5874ad4f97bae67.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions dist/static/css/app.fc41c1bea4c2d98e42dbdbd5444647e6.css

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions dist/static/css/base.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

ul, li {
list-style: none;
}

input:focus {
outline-offset: 0;
outline: none;
}

body {
width: 250px;
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
font-size: 14px;
}

/* 自定义-webkit-浏览器的右侧滚动条样式
定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸 */
::-webkit-scrollbar {
width: 2px;
background-color: #f6f6f6;
}
/* 定义滚动条轨道 内阴影+圆角 */
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
background-color: #f6f6f6;
}
/* 定义滑块 内阴影+圆角 */
::-webkit-scrollbar-thumb {
border-radius: 15px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #5a6985;
}
/* 修改input placeholder字体颜色 */
// ::-webkit-input-placeholder {
//   color: #4e4e4c;
// }
42 changes: 42 additions & 0 deletions dist/static/fonts/iconfont.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

@font-face {font-family: "iconfont";
src: url('iconfont.eot?t=1488506741493#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('iconfont.woff?t=1488506741493') format('woff'), /* chrome, firefox */
url('iconfont.ttf?t=1488506741493') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
url('iconfont.svg?t=1488506741493#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
display: inline-block;
font-family:"iconfont" !important;
font-size:16px;
font-style:normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
cursor: pointer;
}
.iconfont:active {
opacity: .7;
}
.iconfont.disabled {
opacity: .3;
cursor: default;
}
.iconfont.disabled:active {
opacity: .3;
}

.icon-check:before { content: "\e656"; color: #4ec34a; }

.icon-circle:before { content: "\e6d7"; }

.icon-add:before { content: "\e6d8"; }

.icon-notice:before { content: "\e709"; color: #465777; }

.icon-left:before { content: "\e799"; color: #fefefe; font-size: 25px; }

.icon-right:before { content: "\e65a"; color: #fefefe; font-size: 25px; }

.icon-delete:before { content: "\e7ed"; }

Binary file added dist/static/fonts/iconfont.eot
Binary file not shown.
61 changes: 61 additions & 0 deletions dist/static/fonts/iconfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/static/fonts/iconfont.ttf
Binary file not shown.
Binary file added dist/static/fonts/iconfont.woff
Binary file not shown.
1 change: 1 addition & 0 deletions dist/static/js/app.33a41a5742c21641c2c0.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1a1836c

Please sign in to comment.