Update CSS to avoid it overlaps parent div
This commit is contained in:
parent
2a4aa0fdb1
commit
47081736ef
|
@ -116,9 +116,9 @@ That's why rrsync wrapper shall be installed. If it is not already installed by
|
|||
|
||||
[This process is described in a lot of places in the net](https://wiki.gentoo.org/wiki/SSH#Passwordless_Authentication). We will not cover it here. What is different from usual approach is to put the restriction to certificate-based authorization in ```~/.ssh/authorized_keys```). We will launch ```rrsync``` utility and supply it with the folder it shall have read-write access to:
|
||||
|
||||
```
|
||||
{% highlight bash %}
|
||||
command="$HOME/bin/rrsync <folder>",no-agent-forwarding,no-port-forwarding,no-pty,no-user-rc,no-X11-forwarding ssh-rsa <cert>
|
||||
```
|
||||
{% endhighlight %}
|
||||
|
||||
```<folder>``` is the path to your site. E.g., ```~/public_html/you.org/blog-html/```.
|
||||
|
||||
|
|
|
@ -643,10 +643,14 @@ p > pre,
|
|||
p > code,
|
||||
p > nobr > code,
|
||||
li > code,
|
||||
li> pre,
|
||||
h5 > code,
|
||||
.note > code {
|
||||
background-color: #2b2b2b;
|
||||
color: #fff;
|
||||
max-width: 100%;
|
||||
overflow-x: auto;
|
||||
vertical-align: middle;
|
||||
@include border-radius(5px);
|
||||
@include box-shadow(inset 0 1px 10px rgba(0,0,0,.3),
|
||||
0 1px 0 rgba(255,255,255,.1),
|
||||
|
|
Loading…
Reference in New Issue