-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Finaliza versão 1.0 Beta do GainTime
- Finaliza versão 1.0 Beta do GainTime
- Loading branch information
JP Rodrigues
committed
May 12, 2016
1 parent
0a460a9
commit ed50d34
Showing
52 changed files
with
154 additions
and
1,226 deletions.
There are no files selected for viewing
This file was deleted.
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 |
---|---|---|
@@ -1,2 +1,59 @@ | ||
# GainTime | ||
Administration panel. Simple and Fast. | ||
Painel administrativo. Simples e rápido. | ||
|
||
[Arquivos compilados do GainTime](https://github.com/GainTime/gainTime) | ||
|
||
### Instalação | ||
|
||
* Via git: | ||
- Crie uma vendor: | ||
``` | ||
$ mkdir vendors; cd vendors | ||
``` | ||
- Faça o download: | ||
``` | ||
$ git submodule add https://github.com/GainTime/build-GainTime | ||
``` | ||
- Escolha a versão com a qual deseja trabalhar: `git checkout vx.y.z` (opcional) | ||
``` | ||
$ git checkout v0.2 | ||
``` | ||
``` | ||
$ git checkout v0.2.1 | ||
``` | ||
- Informe ao git pra usar aquela versão no submodulo, commitando sua "pasta" | ||
- Pronto :smile: | ||
### Estrutura | ||
``` | ||
. | ||
├── build | ||
│ ├── js | ||
│ │ └── gainTime.js | ||
│ └── scss | ||
│ ├── base | ||
│ │ ├── _base.scss | ||
│ │ ├── _mixins.scss | ||
│ │ └── _variables.scss | ||
│ ├── layouts | ||
│ │ ├── _footer.scss | ||
│ │ ├── _header.scss | ||
│ │ └── _sections.scss | ||
│ ├── modules | ||
│ │ ├── _buttons.scss | ||
│ │ ├── _colors.scss | ||
│ │ ├── _components.scss | ||
│ │ ├── _forms.scss | ||
│ │ └── _typography.scss | ||
│ └── GainTime.scss | ||
├── vendors | ||
│ └── jquery-2.1.4.min.js | ||
└── README.md | ||
``` | ||
### Uso | ||
A estilização do GainTime foi escrita em [SASS](http://sass-lang.com/). Aqui está a [documentação do SASS](http://sass-lang.com/documentation/file.SASS_REFERENCE.html). | ||
### Vendors | ||
O GainTime utiliza [JQuery](https://jquery.com/) |
33 changes: 33 additions & 0 deletions
33
src/assets/js/inputLabels.js → build/js/gainTime.js
100755 → 100644
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
File renamed without changes.
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
File renamed without changes.
18 changes: 9 additions & 9 deletions
18
src/scss/base/_variables.scss → build/scss/base/_variables.scss
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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
$header-height: 70px; | ||
$footer-height: 60px; | ||
$header-height: 70px; | ||
$menu-list: 5; | ||
|
||
$body-c: #F0F0F0; | ||
$box-c: #fff; | ||
$cancel-c: #EF4836; | ||
$delete-c: #F44336; | ||
$download-c: #7cb124; | ||
$edit-c: #2196f3; | ||
$fail-c: #F44336; | ||
$warning-c: #FCF8E3; | ||
$send-c: #2ECC71; | ||
$success-c: #7cb124; | ||
$btn-edit-color: #2196f3; | ||
$btn-delete-color: $fail-c; | ||
$btn-download-color: $success-c; | ||
$btn-send-color: #2ECC71; | ||
$btn-cancel-color: #EF4836; | ||
$btn-warning-color: #F5AB35; | ||
$wait-c: #F5AB35; | ||
$warning-c: #FCF8E3; | ||
|
||
//These colors are variations of the same color. These colors are used on footer | ||
//These colors are variations of the same color. These colors are used on footer | ||
$base-c: #174368; | ||
$base-c2: #30618A; | ||
$base-c3: #5A8BB4; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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 @@ | ||
.fail { | ||
background-color: $fail-c; | ||
} | ||
|
||
.success { | ||
background-color: $success-c; | ||
} | ||
|
||
.warning { | ||
background-color: $warning-c; | ||
color: #1a1a1a; | ||
} | ||
|
||
/*For actions-btn*/ | ||
.edit { | ||
background-color: $edit-c; | ||
} | ||
|
||
.del { | ||
background-color: $delete-c; | ||
} | ||
|
||
.download { | ||
background-color: $download-c; | ||
} | ||
|
||
/*for buttons*/ | ||
.send { | ||
background-color: $send-c; | ||
} | ||
|
||
.cancel { | ||
background-color: $cancel-c; | ||
} | ||
|
||
.wait { | ||
background-color: $wait-c; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.