Merge pull request #5050 from pablocubico/feature/4466-port-help-page-to-bootstrap
[4466] help page ported to bootstrap
This commit is contained in:
commit
311d7e3bcc
7 changed files with 101 additions and 67 deletions
|
|
@ -26,6 +26,7 @@ app.views.Help = app.views.StaticContentView.extend({
|
||||||
};
|
};
|
||||||
|
|
||||||
this.data = {
|
this.data = {
|
||||||
|
title_header: Diaspora.I18n.t( 'title_header' ),
|
||||||
title_getting_help: Diaspora.I18n.t( 'getting_help.title' ),
|
title_getting_help: Diaspora.I18n.t( 'getting_help.title' ),
|
||||||
title_account_and_data_management: Diaspora.I18n.t( 'account_and_data_management.title' ),
|
title_account_and_data_management: Diaspora.I18n.t( 'account_and_data_management.title' ),
|
||||||
title_aspects: Diaspora.I18n.t( 'aspects.title' ),
|
title_aspects: Diaspora.I18n.t( 'aspects.title' ),
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
h2.help_header {
|
||||||
|
border-bottom: 1px solid black;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
ul#help_nav {
|
ul#help_nav {
|
||||||
display: inline;
|
display: inline;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
@ -23,13 +29,18 @@ ul#help_nav {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
ul {
|
ul {
|
||||||
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
li {
|
li {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
a {
|
a {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
.section-selected {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -55,7 +66,10 @@ ul#help_nav {
|
||||||
background-color: rgb(242, 242, 242);
|
background-color: rgb(242, 242, 242);
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
@include border-radius(4px);
|
@include border-radius(4px);
|
||||||
a.toggle { text-decoration: none; }
|
a.toggle {
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
h4 {
|
h4 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
|
@ -74,7 +88,7 @@ ul#help_nav {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.answer {
|
.answer {
|
||||||
@include border-bottom-radius(4px);
|
@include border-radius(0px, 0px, 4px, 4px);
|
||||||
background-color: white;
|
background-color: white;
|
||||||
padding: 10px 20px;
|
padding: 10px 20px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -42,3 +42,6 @@
|
||||||
|
|
||||||
/* notifications */
|
/* notifications */
|
||||||
@import 'notifications';
|
@import 'notifications';
|
||||||
|
|
||||||
|
/* help */
|
||||||
|
@import 'help';
|
||||||
|
|
|
||||||
|
|
@ -146,6 +146,11 @@ $bring-dark-accent-forward-color: #DDD;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* padder helper to push content below the header, to be removed when porting to bootstrap is complete */
|
||||||
|
.bootstrap_header_padding {
|
||||||
|
padding-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
/* responsive */
|
/* responsive */
|
||||||
@media (max-width: 767px) {
|
@media (max-width: 767px) {
|
||||||
body {
|
body {
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,14 @@
|
||||||
|
|
||||||
|
<div class="bootstrap_header_padding"></div>
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
<div id="section_header">
|
<div id="section_header">
|
||||||
<h2 class="help_header">Help</h2>
|
<h2 class="help_header">{{ title_header }}</h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="span-5">
|
|
||||||
|
<div class="row-fluid">
|
||||||
|
<div class="span3">
|
||||||
<div id='faq_nav'>
|
<div id='faq_nav'>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
|
|
@ -65,5 +71,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="span-19 last" id=faq>
|
<div class="span9 last" id=faq>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -1,2 +1,4 @@
|
||||||
class HelpController < ApplicationController
|
class HelpController < ApplicationController
|
||||||
|
before_filter -> { @css_framework = :bootstrap }
|
||||||
|
layout ->(c) { request.format == :mobile ? "application" : "with_header_with_footer" }
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -374,6 +374,7 @@ en:
|
||||||
birthday_with_year: "%B %d %Y"
|
birthday_with_year: "%B %d %Y"
|
||||||
|
|
||||||
help:
|
help:
|
||||||
|
title_header: "Help"
|
||||||
tutorials: "tutorials"
|
tutorials: "tutorials"
|
||||||
tutorial: "tutorial"
|
tutorial: "tutorial"
|
||||||
irc: "IRC"
|
irc: "IRC"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue