Skip to content

Commit ca0c2b6

Browse files
committed
updated
1 parent 18a723e commit ca0c2b6

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

_layouts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<div class="fixed">
66

7-
<div class="col-md-6" style="float: right; margin-top: 1em">
7+
<div class="col-md-6 hidden-xs" style="float: right; margin-top: 1em">
88
<div class="well">
99
<a class="btn btn-lg btn-warning btn-block" href="/quickstart">Quick Start →<br>with Codeception</a>
1010
<p><br/>Write and execute a test for an existing app

_posts/2017-05-22-codeception-2-3.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ codecept init unit
4444

4545
But the best thing about installation templates that they can be created by anyone! They can be placed inside a separate package and loaded by `init` command. A template class should be placed into `Codeception\Template` namespace and then it can be autoloaded. Installation templates are pretty simple, learn how to build your own by taking a look at [Acceptance template as an example](https://github.com/Codeception/Codeception/blob/master/src/Codeception/Template/Acceptance.php#L67).
4646

47+
We have added Installation templates to [Customization](http://codeception.com/docs/08-Customization#Installation-Templates) guide and added a reference to [Codeception\InitTemplate](http://codeception.com/docs/reference/InitTemplate) class.
48+
4749
## Configuration Improvements
4850

4951
#### Suites Inside Main Config

css/codeception.css

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ body .fixed {
151151
body .post {
152152
margin-top: 1.5em;
153153
margin-bottom: 1.5em;
154-
font-size: 1.3em;
154+
font-size: 1.1em;
155155
line-height: 1.4;
156156
color: #444;
157157
}
@@ -161,10 +161,6 @@ body .page .post p {
161161
margin-bottom: 1em;
162162
}
163163

164-
body .page .post h2, body .page .post h3, body .page .post h4, body .page .post h5, body .page .post ul {
165-
margin-bottom: 1em;
166-
}
167-
168164

169165
body .page .post h2 {
170166
border-bottom: 2px solid #45414B;
@@ -716,3 +712,12 @@ ul.navbar-nav {
716712
}
717713
}
718714

715+
@media (max-width: 768px) {
716+
html, body {
717+
width: auto !important;
718+
overflow-x: hidden !important;
719+
}
720+
body .wide>div {
721+
margin: 0;
722+
}
723+
}

0 commit comments

Comments
 (0)