Update CSS to avoid it overlaps parent div

This commit is contained in:
rebornix 2015-11-30 13:16:20 +08:00
parent 2a4aa0fdb1
commit 47081736ef
2 changed files with 6 additions and 2 deletions

View File

@ -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: [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> 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/```. ```<folder>``` is the path to your site. E.g., ```~/public_html/you.org/blog-html/```.

View File

@ -643,10 +643,14 @@ p > pre,
p > code, p > code,
p > nobr > code, p > nobr > code,
li > code, li > code,
li> pre,
h5 > code, h5 > code,
.note > code { .note > code {
background-color: #2b2b2b; background-color: #2b2b2b;
color: #fff; color: #fff;
max-width: 100%;
overflow-x: auto;
vertical-align: middle;
@include border-radius(5px); @include border-radius(5px);
@include box-shadow(inset 0 1px 10px rgba(0,0,0,.3), @include box-shadow(inset 0 1px 10px rgba(0,0,0,.3),
0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1),