mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-06-27 16:00:04 +08:00
Change name
This commit is contained in:
@@ -1,26 +1,3 @@
|
||||
#GoFish
|
||||
#HackFlowy
|
||||
|
||||
A [Workflowy](http://workflowy.com) clone.
|
||||
|
||||
##License
|
||||
|
||||
The MIT License (MIT)
|
||||
Copyright © 2013 Abhishek Das
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the “Software”), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "gofish",
|
||||
"name": "hackflowy",
|
||||
"version": "0.0.1",
|
||||
"description": "A simple WorkFlowy clone",
|
||||
"dependencies": {
|
||||
|
||||
+3
-3
@@ -6,19 +6,19 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>GoFish</title>
|
||||
<title>HackFlowy</title>
|
||||
<link rel="stylesheet" href="stylesheets/normalize.css" />
|
||||
<link rel="stylesheet" href="stylesheets/app.css" />
|
||||
<script src="javascripts/vendor/custom.modernizr.js"></script>
|
||||
<script src="/javascripts/vendor/socket.io.min.js"></script>
|
||||
<script>
|
||||
var socket = io.connect('http://gofish.dev:3000');
|
||||
var socket = io.connect();
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<section id="gofish">
|
||||
<section id="hackflowy">
|
||||
<header id="header"></header>
|
||||
<section id="main">
|
||||
<div id="name">
|
||||
|
||||
+3
-3
@@ -6,7 +6,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>GoFish</title>
|
||||
<title>HackFlowy</title>
|
||||
|
||||
<link rel="stylesheet" href="stylesheets/normalize.css" />
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<section id="gofish">
|
||||
<section id="hackflowy">
|
||||
<header id="header">
|
||||
|
||||
</header>
|
||||
@@ -88,4 +88,4 @@
|
||||
'.js><\/script>')
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -51,7 +51,7 @@ $backgroundcolor: $lightgrey;
|
||||
|
||||
body {
|
||||
background-color: $lightgrey;
|
||||
#gofish {
|
||||
#hackflowy {
|
||||
background-color: white;
|
||||
height: 1000px;
|
||||
margin: 75px 100px;
|
||||
@@ -148,4 +148,4 @@ body {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+14
-14
@@ -5541,7 +5541,7 @@ body {
|
||||
background-color: #f9f9fa;
|
||||
}
|
||||
/* line 54, ../sass/app.scss */
|
||||
body #gofish {
|
||||
body #hackflowy {
|
||||
background-color: white;
|
||||
height: 1000px;
|
||||
margin: 75px 100px;
|
||||
@@ -5549,33 +5549,33 @@ body #gofish {
|
||||
padding: 60px 60px;
|
||||
}
|
||||
/* line 60, ../sass/app.scss */
|
||||
body #gofish #main {
|
||||
body #hackflowy #main {
|
||||
height: 880px;
|
||||
border-top: 1px solid #eeeeee;
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
}
|
||||
/* line 65, ../sass/app.scss */
|
||||
body #gofish #main #name h2 {
|
||||
body #hackflowy #main #name h2 {
|
||||
font-weight: normal;
|
||||
font-size: 30px;
|
||||
margin: 25px 0 5px 0;
|
||||
}
|
||||
/* line 71, ../sass/app.scss */
|
||||
body #gofish #main .children {
|
||||
body #hackflowy #main .children {
|
||||
margin-left: 40px;
|
||||
}
|
||||
/* line 73, ../sass/app.scss */
|
||||
body #gofish #main .children li {
|
||||
body #hackflowy #main .children li {
|
||||
list-style: none;
|
||||
}
|
||||
/* line 75, ../sass/app.scss */
|
||||
body #gofish #main .children li .task {
|
||||
body #hackflowy #main .children li .task {
|
||||
margin: 10px 0;
|
||||
height: 20px;
|
||||
color: #333333;
|
||||
}
|
||||
/* line 79, ../sass/app.scss */
|
||||
body #gofish #main .children li .task .link {
|
||||
body #hackflowy #main .children li .task .link {
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
margin-top: 1px;
|
||||
@@ -5596,21 +5596,21 @@ body #gofish #main .children li .task .link {
|
||||
border-radius: 12px;
|
||||
}
|
||||
/* line 99, ../sass/app.scss */
|
||||
body #gofish #main .children li .task .with-children > .link {
|
||||
body #hackflowy #main .children li .task .with-children > .link {
|
||||
background-color: #e0e0e0;
|
||||
}
|
||||
/* line 102, ../sass/app.scss */
|
||||
body #gofish #main .children li .task .open > .link {
|
||||
body #hackflowy #main .children li .task .open > .link {
|
||||
background-color: white;
|
||||
}
|
||||
/* line 105, ../sass/app.scss */
|
||||
body #gofish #main .children li .task .link:hover {
|
||||
body #hackflowy #main .children li .task .link:hover {
|
||||
cursor: pointer;
|
||||
z-index: 8;
|
||||
background-color: #aaa;
|
||||
}
|
||||
/* line 110, ../sass/app.scss */
|
||||
body #gofish #main .children li .task textarea.edit {
|
||||
body #hackflowy #main .children li .task textarea.edit {
|
||||
box-shadow: none;
|
||||
display: inline;
|
||||
background: transparent;
|
||||
@@ -5635,16 +5635,16 @@ body #gofish #main .children li .task textarea.edit {
|
||||
-webkit-writing-mode: horizontal-tb;
|
||||
}
|
||||
/* line 134, ../sass/app.scss */
|
||||
body #gofish #main .children li .task textarea.edit:focus {
|
||||
body #hackflowy #main .children li .task textarea.edit:focus {
|
||||
background-color: white;
|
||||
height: 18px;
|
||||
}
|
||||
/* line 142, ../sass/app.scss */
|
||||
body #gofish #main > .children {
|
||||
body #hackflowy #main > .children {
|
||||
margin-left: 0;
|
||||
}
|
||||
/* line 145, ../sass/app.scss */
|
||||
body #gofish #footer {
|
||||
body #hackflowy #footer {
|
||||
color: #333333;
|
||||
margin: 10px 0;
|
||||
font-size: 12px;
|
||||
|
||||
Reference in New Issue
Block a user