-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 06c6d03
Showing
74 changed files
with
11,114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"presets": ["es2015", "stage-2"], | ||
"plugins": ["transform-runtime"], | ||
"comments": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.DS_Store | ||
node_modules/ | ||
dist/ | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# lightodo | ||
|
||
> A Todo SPA based on Vue.js | ||
## Build Setup | ||
|
||
``` bash | ||
# install dependencies | ||
npm install | ||
|
||
# serve with hot reload at localhost:8080 | ||
npm run dev | ||
|
||
# build for production with minification | ||
npm run build | ||
``` | ||
|
||
For detailed explanation on how things work, consult the [docs for vue-loader](http://vuejs.github.io/vue-loader). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/> | ||
<!-- datetimepicker --> | ||
<link rel="stylesheet" type="text/css" href="./lib/css/bootstrap.min.css"> | ||
<link rel="stylesheet" type="text/css" href="./lib/css/bootstrap-datetimepicker.min.css"> | ||
|
||
<link href="./lib/css/materialize.min.css" type="text/css" rel="stylesheet" media="screen,projection"/> | ||
<link href="./lib/css/materialdesignicons.min.css" media="all" rel="stylesheet" type="text/css" /> | ||
<link rel="stylesheet" type="text/css" href="./lib/css/sweetalert.css"> | ||
<title>LighTodo</title> | ||
</head> | ||
<body> | ||
<app></app> | ||
<!-- Scripts--> | ||
<!-- <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script> --> | ||
<script type="text/javascript" src="./lib/js/jquery-2.1.1.min.js"></script> | ||
<script src="./lib/js/materialize.min.js"></script> | ||
<!-- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.4.2/Sortable.min.js"></script> --> | ||
<script type="text/javascript" src="./lib/js/Sortable.min.js"></script> | ||
<!-- <script type="text/javascript" src="./lib/js/masonry.pkgd.min.js"></script> --> | ||
<!-- <script type="text/javascript" src="./lib/js/jets.min.js"></script> --> | ||
|
||
<!-- datetimepicker --> | ||
<!-- <script type="text/javascript" src="./lib/js/bootstrap.min.js"></script> --> | ||
<script type="text/javascript" src="./lib/js/bootstrap-datetimepicker.min.js"></script> | ||
|
||
<script type="text/javascript" src="./lib/js/store.js"></script> | ||
<script type="text/javascript" src="./lib/js/sortable.js"></script> | ||
<script type="text/javascript" src="./lib/js/datetime.js"></script> | ||
<!-- <script src = "https://cdn.wilddog.com/js/client/current/wilddog.js" ></script> --> | ||
<script type="text/javascript" src="./lib/js/Wilddog.js"></script> | ||
<script type="text/javascript" src="./lib/js/wd.js"></script> | ||
<script src="dist/build.js"></script> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
/*! | ||
* Bootstrap v3.0.0 | ||
* | ||
* Copyright 2013 Twitter, Inc | ||
* Licensed under the Apache License v2.0 | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Designed and built with all the love in the world by @mdo and @fat. | ||
*/ | ||
|
||
|
||
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */ | ||
|
||
/*只用这些*/ | ||
.input-group .form-control:first-child, | ||
.input-group-addon:first-child, | ||
.input-group-btn:first-child>.btn, | ||
.input-group-btn:first-child>.dropdown-toggle, | ||
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) { | ||
border-top-right-radius: 0; | ||
border-bottom-right-radius: 0 | ||
} | ||
|
||
.input-group-addon, | ||
.input-group-btn, | ||
.input-group .form-control { | ||
display: table-cell | ||
} | ||
|
||
.input-group .form-control { | ||
width: 100%; | ||
margin-bottom: 0 | ||
} | ||
|
||
.form-control[disabled], | ||
.form-control[readonly], | ||
fieldset[disabled] .form-control { | ||
cursor: not-allowed; | ||
background-color: #eee | ||
} | ||
|
||
.form-control:focus { | ||
border-color: #66afe9; | ||
outline: 0; | ||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); | ||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6) | ||
} | ||
|
||
.input-group-addon:not(:first-child):not(:last-child), | ||
.input-group-btn:not(:first-child):not(:last-child), | ||
.input-group .form-control:not(:first-child):not(:last-child) { | ||
border-radius: 0 | ||
} | ||
|
||
.input-group-addon { | ||
padding: 6px 12px; | ||
font-size: 14px; | ||
font-weight: normal; | ||
line-height: 1; | ||
text-align: center; | ||
background-color: #eee; | ||
border: 1px solid #ccc; | ||
border-radius: 4px | ||
} | ||
|
||
.input-group-addon, | ||
.input-group-btn { | ||
width: 1%; | ||
white-space: nowrap; | ||
vertical-align: middle | ||
} | ||
|
||
.glyphicon { | ||
position: relative; | ||
top: 1px; | ||
display: inline-block; | ||
font-family: 'Glyphicons Halflings'; | ||
-webkit-font-smoothing: antialiased; | ||
font-style: normal; | ||
font-weight: normal; | ||
line-height: 1 | ||
} | ||
|
||
.glyphicon-remove:before { | ||
content: "\e014" | ||
} | ||
|
||
.input-group-addon:last-child { | ||
border-left: 0 | ||
} | ||
|
||
.input-group .form-control:last-child, | ||
.input-group-addon:last-child, | ||
.input-group-btn:last-child>.btn, | ||
.input-group-btn:last-child>.dropdown-toggle, | ||
.input-group-btn:first-child>.btn:not(:first-child) { | ||
border-bottom-left-radius: 0; | ||
border-top-left-radius: 0 | ||
} | ||
|
||
.glyphicon-th:before { | ||
content: "\e011"; | ||
} | ||
|
||
/*datetimepicker*/ | ||
.dropdown-menu { | ||
position: absolute; | ||
top: 100%; | ||
left: 0; | ||
z-index: 1000; | ||
display: none; | ||
float: left; | ||
min-width: 160px; | ||
padding: 5px 0; | ||
margin: 2px 0 0; | ||
font-size: 14px; | ||
list-style: none; | ||
background-color: #fff; | ||
border: 1px solid #ccc; | ||
border: 1px solid rgba(0, 0, 0, 0.15); | ||
border-radius: 4px; | ||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); | ||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); | ||
background-clip: padding-box; | ||
} | ||
|
||
table { | ||
max-width: 100%; | ||
background-color: transparent; | ||
} | ||
|
||
.table-condensed thead>tr>th, .table-condensed tbody>tr>th, .table-condensed tfoot>tr>th, .table-condensed thead>tr>td, .table-condensed tbody>tr>td, .table-condensed tfoot>tr>td { | ||
padding: 5px; | ||
} | ||
|
||
legend { | ||
display: block; | ||
width: 100%; | ||
padding: 0; | ||
margin-bottom: 20px; | ||
font-size: 21px; | ||
line-height: inherit; | ||
color: #333; | ||
border: 0; | ||
border-bottom: 1px solid #e5e5e5; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* fallback */ | ||
@font-face { | ||
font-family: 'Material Icons'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url(../fonts/materialdesignicons-webfont.eot); /* For IE6-8 */ | ||
src: local('Material Icons'), | ||
local('MaterialIcons-Regular'), | ||
url(../fonts/materialdesignicons-webfont.woff2) format('woff2'), | ||
url(../fonts/materialdesignicons-webfont.woff) format('woff'), | ||
url(../fonts/materialdesignicons-webfont.ttf) format('truetype'); | ||
} | ||
|
||
.material-icons { | ||
font-family: 'Material Icons'; | ||
font-weight: normal; | ||
font-style: normal; | ||
font-size: 24px; /* Preferred icon size */ | ||
display: inline-block; | ||
line-height: 1; | ||
text-transform: none; | ||
letter-spacing: normal; | ||
word-wrap: normal; | ||
white-space: nowrap; | ||
direction: ltr; | ||
|
||
/* Support for all WebKit browsers. */ | ||
-webkit-font-smoothing: antialiased; | ||
/* Support for Safari and Chrome. */ | ||
text-rendering: optimizeLegibility; | ||
|
||
/* Support for Firefox. */ | ||
-moz-osx-font-smoothing: grayscale; | ||
|
||
/* Support for IE. */ | ||
font-feature-settings: 'liga'; | ||
} |
Oops, something went wrong.