Avoid !important in CSS

This commit is contained in:
Matthias Geier 2016-03-30 14:21:46 +02:00
parent 7a14d1c55e
commit 9c56f4577d

View File

@ -1,9 +1,10 @@
/* 24px margin from readthedocs theme */
div.nblast {
margin-bottom: 19px !important; /* padding has already 5px */
div.nbinput.nblast,
div.nboutput.nblast {
margin-bottom: 19px; /* padding has already 5px */
}
/* ... except between notebook cells! */
/* ... except between code cells! */
div.nblast + div.nbinput {
margin-top: -19px !important;
margin-top: -19px;
}