This repository has been archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
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
Showing
47 changed files
with
859 additions
and
190 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
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
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 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
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
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
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,76 @@ | ||
--- | ||
title: Box Informativo | ||
description: Elemento que pode ser utilizado no dashboard de um painel para exibir informações resumidas, principalmente dados numéricos. | ||
type: component | ||
--- | ||
|
||
<%= partial 'partials/doc-menu-components'%> | ||
|
||
<section class="col-md-9"> | ||
|
||
<%= partial 'partials/doc-intro-content' %> | ||
|
||
<div class="row ls-overflow-hidden"> | ||
<div class="col-md-5"> | ||
<div class="ls-box"> | ||
<h2 class="ls-title-5">Quando <strong>usar?</strong></h2> | ||
<p>- Há necessidade de exibir dados numéricos (valores, quantidades, etc.) sobre um o serviço contratado.</p> | ||
</div> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="ls-box"> | ||
<h2 class="ls-title-5">Quando <strong>não</strong> usar?</h2> | ||
<p>- A informação tenha foco em ajuda ou dica.</p> | ||
<p>- A informação seja um identificador, endereço ou nome de servidor.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<br> | ||
|
||
<div class="ls-box-demo"> | ||
<h3 class="doc-title-6">Desktop</h3> | ||
<%= partial 'documentacao/shared/box-info/_box-info' %> | ||
<h3 class="doc-title-6">Mobile</h3> | ||
<iframe width="320" height="680" src="<%= base_url %>/documentacao/shared/box-info/box-info-mobile" frameborder="0"></iframe> | ||
</div> | ||
<% code("html") do %><%= partial 'documentacao/shared/box-info/_box-info' %><% end %> | ||
|
||
|
||
<p>Casa você deseje exibir o box sem dados, basta inserir no conteúdo, um parágrafo a classe <code>.ls-no-data</code>:</p> | ||
|
||
<div class="ls-box-demo"> | ||
<h3 class="doc-title-6">Desktop</h3> | ||
<%= partial 'documentacao/shared/box-info/_box-info-no-data' %> | ||
<h3 class="doc-title-6">Mobile</h3> | ||
<iframe width="320" height="320" src="<%= base_url %>/documentacao/shared/box-info/box-info-no-data-mobile" frameborder="0"></iframe> | ||
</div> | ||
<% code("html") do %><%= partial 'documentacao/shared/box-info/_box-info-no-data' %><% end %> | ||
|
||
|
||
<h2 class="doc-title-5">Opções e variações da estrutura</h2> | ||
<p> | ||
<strong>Label</strong><br> | ||
Os títulos podem variar de acordo com o contexto, por exemplo: Informações do plano, Quantidade de sites, etc. | ||
</p> | ||
<p> | ||
<strong>Escala</strong><br> | ||
Os números exibidos podem ser simples com até 6 dígitos (100.000) ou informativos, como 10 milhões, 100 GB, 1.000 sites, etc. | ||
</p> | ||
<p> | ||
<strong>Status</strong><br> | ||
Pode ficar oculto ou ser exibido no canto direito. | ||
</p> | ||
<p> | ||
<strong>Ação principal</strong><br> | ||
No lugar do status, é possível exibir um botão de ação. | ||
</p> | ||
|
||
<div class="ls-box-demo"> | ||
<h3 class="doc-title-6">Desktop</h3> | ||
<%= partial 'documentacao/shared/box-info/_box-info-demo' %> | ||
<h3 class="doc-title-6">Mobile</h3> | ||
<iframe width="320" height="580" src="<%= base_url %>/documentacao/shared/box-info/box-info-demo-mobile" frameborder="0"></iframe> | ||
</div> | ||
<% code("html") do %><%= partial 'documentacao/shared/box-info/_box-info-demo' %><% end %> | ||
|
||
</section> |
67 changes: 67 additions & 0 deletions
67
source/documentacao/componentes/estrutura-principal.html.erb
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,67 @@ | ||
--- | ||
title: Estrutura principal | ||
description: É daqui que você vai começar. Nosso Boilerplate responsivo tem header, menu lateral e uma estrutura de conteúdo principal que é fluida, ou seja, sem largura limitada. | ||
type: component | ||
--- | ||
|
||
<%= partial 'partials/doc-menu-components'%> | ||
|
||
<section class="col-md-9"> | ||
|
||
<%= partial 'partials/doc-intro-content' %> | ||
|
||
<div class="row"> | ||
<div class="col-md-6"> | ||
<div class="ls-box"> | ||
<h2 class="ls-title-5">Quando <strong>usar?</strong></h2> | ||
<p>- Sempre que quiser fazer um painel de administração ou um sistema completo, responsivo e bonitão.</p> | ||
</div> | ||
</div> | ||
<div class="col-md-6"> | ||
<div class="ls-box"> | ||
<h2 class="ls-title-5">Quando <strong>não</strong> usar?</h2> | ||
<p>- Se você está pensando em fazer um site. Essa estrutura foi planejada especialmente para painéis de administração e não é recomendada para sites.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<br> | ||
|
||
<h2 class="doc-title-4">Header de painel principal</h2> | ||
<p>Você pode inserir um título, um logo, informações adicionais com menor destaque. Do lado direito, uma área para acesso ao perfil e atalhos para outras funcionalidades.</p> | ||
|
||
<div class="ls-box-demo"> | ||
<h3 class="doc-title-6">Desktop</h3> | ||
<%= partial 'documentacao/shared/structure/header-main' %> | ||
<h3 class="doc-title-6">Mobile</h3> | ||
<iframe class="doc-border-silver" width="340" height="400" src="<%= base_url %>/documentacao/shared/structure/header-main-mobile" frameborder="0"></iframe> | ||
</div> | ||
<% code("html") do %><%= partial 'documentacao/shared/structure/header-main-mobile' %><% end %> | ||
|
||
|
||
<h2 class="doc-title-4">Header de painel interno</h2> | ||
<p>Muito semelhante ao header principal, com a inclusão de um botão voltar na lateral superior esquerda. Esta versão deve ser utilizada quando o painel é acessado a partir de uma listagem. O botão voltar substitui a navegação pelo browser e também ajuda o usuário a se localizar, indicando que ele está um nível abaixo.</p> | ||
|
||
<div class="ls-box-demo"> | ||
<h3 class="doc-title-6">Desktop</h3> | ||
<%= partial 'documentacao/shared/structure/header-internal' %> | ||
<h3 class="doc-title-6">Mobile</h3> | ||
<iframe class="doc-border-silver" width="340" height="400" src="<%= base_url %>/documentacao/shared/structure/header-internal-mobile" frameborder="0"></iframe> | ||
</div> | ||
<% code("html") do %><%= partial 'documentacao/shared/structure/header-internal-mobile' %><% end %> | ||
|
||
|
||
<h2 class="doc-title-4">Menu, submenu e seções internas</h2> | ||
<p>Do mais simples ao mais complexo, com o Locastyle é possível criar painéis para todos os tipos de demanda. O menu pode receber até itens de 2º nívele as páginas internas podem ser divididas em seções.</p> | ||
|
||
<div class="ls-box-demo"> | ||
<h3 class="doc-title-6">Desktop</h3> | ||
<div id="doc-header-full" class="doc-border-silver"> | ||
<%= partial 'documentacao/shared/structure/header-full' %> | ||
</div> | ||
<h3 class="doc-title-6">Mobile</h3> | ||
<iframe class="doc-border-silver" width="340" height="400" src="<%= base_url %>/documentacao/shared/structure/header-full-mobile" frameborder="0"></iframe> | ||
</div> | ||
<% code("html") do %><%= partial 'documentacao/shared/structure/header-full' %><% end %> | ||
|
||
|
||
</section> |
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
Oops, something went wrong.