Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
f2f4b945
authored
9 years ago
by
Kálmán Viktor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: help format fixes
parent
fee9c1a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
61 additions
and
86 deletions
+61
-86
circle/dashboard/static/dashboard/dashboard.less
+36
-61
circle/templates/info/help.html
+25
-25
No files found.
circle/dashboard/static/dashboard/dashboard.less
View file @
f2f4b945
...
...
@@ -1320,65 +1320,42 @@ textarea[name="new_members"] {
}
}
.help-tabs li {
/* help page */
.help-tabs li {
width: 50%;
text-align: center;
}
// note: padding-margin hack to skip banner on anchor
#help-tab-content h1 {
font-weight: bold;
padding-top: 55px; margin-top: -55px;
}
#help-tab-content h2 {
font-weight: bold;
padding-top: 55px; margin-top: -55px;
}
#help-tab-content h3 {
font-weight: bold;
padding-top: 55px; margin-top: -55px;
}
#help-tab-content h4 {
font-weight: bold;
padding-top: 55px; margin-top: -55px;
}
#help-tab-content h5 {
font-weight: bold;
padding-top: 55px; margin-top: -55px;
}
#help-tab-content blockquote {
background-color:#dfe4e4;
}
#help-tab-content {
h1, h2, h3, h4, h5 {
font-weight: bold;
padding-top: 55px; margin-top: -55px;
}
.row
{
margin-left:0px
;
margin-right:0px;
blockquote
{
background-color:#dfe4e4
;
}
}
#wrapper {
position: fixed;
padding-left: 0px;
background: #252525;
left: 0px;
top: 46px;
height: 100%;
width: 210px;
transition: all .4s ease 0s;
/* Firefox */
height: -moz-calc(100% - 130px);
/* WebKit */
height: -webkit-calc(100% - 120px);
/* Opera */
height: -o-calc(100% - 110px);
/* Standard */
height: calc(100% - 130px);
position: fixed;
padding-left: 0px;
background: #252525;
left: 0px;
top: 46px;
height: 100%;
width: 210px;
transition: all .4s ease 0s;
/* Firefox */
height: -moz-calc(100% - 130px);
/* WebKit */
height: -webkit-calc(100% - 120px);
/* Opera */
height: -o-calc(100% - 110px);
/* Standard */
height: calc(100% - 130px);
}
#sidebar-wrapper {
...
...
@@ -1470,14 +1447,13 @@ height: calc(100% - 130px);
transform: translateX(-250px);
}
#page-content {
margin-left: 0px;
-webkit-transition: background .5s;
-moz-transition: background .5s;
-o-transition: background .5s;
-ms-transition: background .5s;
transition: background .5s;
margin-left: 0px;
-webkit-transition: background .5s;
-moz-transition: background .5s;
-o-transition: background .5s;
-ms-transition: background .5s;
transition: background .5s;
}
}
...
...
@@ -1486,14 +1462,13 @@ height: calc(100% - 130px);
}
#request-buttons {
form {
form {
display: inline;
}
textarea {
}
textarea {
resize: none;
min-height: 80px;
}
}
}
.nowrap {
...
...
This diff is collapsed.
Click to expand it.
circle/templates/info/help.html
View file @
f2f4b945
{% extends "dashboard/base.html" %}
{% load i18n %}
{% load compressed %}
{% block title-page %}{% trans "Help" %}{% endblock %}
{% block content %}
<div
class=
"row"
>
<div
id=
"wrapper"
>
<div
id=
"sidebar-wrapper"
>
<div
id=
"help-tab-content"
class=
"tab-content"
>
<div
class=
"tab-pane active _faq"
>
{% include "info/help/faq_toc.html" %}
</div>
<div
class=
"tab-pane _overview"
>
{% include "info/help/overview_toc.html" %}
</div>
<div
id=
"wrapper"
>
<div
id=
"sidebar-wrapper"
>
<div
id=
"help-tab-content"
class=
"tab-content"
>
<div
class=
"tab-pane active _faq"
>
{% include "info/help/faq_toc.html" %}
</div>
<div
class=
"tab-pane _overview"
>
{% include "info/help/overview_toc.html" %}
</div>
</div>
</div>
</div>
</div>
<div
id=
"page-content"
class=
"col-lg-8"
>
<div
id=
"page-content"
class=
"col-lg-8"
>
<div
class=
"page-header"
>
<h1>
{% trans "Help" %}
<small>
{% trans "user guide in short" %}
</small></h1>
</div>
<div
class=
"content"
>
<ul
class=
"help-tabs nav nav-tabs"
>
<li
class=
"active"
>
<a
id=
"faq_menu"
href=
"#"
data-toggle=
"pill"
data-target=
"._faq"
class=
"text-center"
>
<i
class=
"fa fa-comments-o fa-2x"
></i><br>
{% trans "FAQ" %}
</a>
<i
class=
"fa fa-comments-o fa-2x"
></i>
<br>
{% trans "FAQ" %}
</a>
</li>
<li>
<a
id=
"overview_menu"
href=
"#"
data-toggle=
"pill"
data-target=
"._overview"
class=
"text-center"
>
...
...
@@ -34,17 +36,15 @@
{% trans "Overview" %}
</a>
</li>
</ul>
<div
id=
"help-tab-content"
class=
"tab-content"
>
<div
class=
"tab-pane active _faq"
>
{% include "info/help/faq.html" %}
</div>
<div
class=
"tab-pane _overview"
>
{% include "info/help/overview.html" %}
</div>
<div
class=
"tab-pane active _faq"
>
{% include "info/help/faq.html" %}
</div>
<div
class=
"tab-pane _overview"
>
{% include "info/help/overview.html" %}
</div>
</div>
</div>
<!-- content -->
</div>
<!-- col-lg -->
</div>
<!-- .content -->
</div>
<!-- #page-content .col-lg-8 -->
</div>
{% endblock %}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment