##// END OF EJS Templates
expect JSON reply to save
expect JSON reply to save

File last commit:

r19298:d8390523
r19314:02f2160d
Show More
savewidget.less
33 lines | 573 B | text/x-less | LessCssLexer
Brian E. Granger
Splitting notebook.less into separate files.
r10730 span#save_widget {
Min RK
remove some custom css...
r19298 margin-top: 6px;
Brian E. Granger
Splitting notebook.less into separate files.
r10730 }
MinRK
hide save status as it shrinks
r10902 span#checkpoint_status, span#autosave_status {
Brian E. Granger
Splitting notebook.less into separate files.
r10730 font-size: small;
}
MinRK
hide save status as it shrinks
r10902
@media (max-width: 767px) {
span#save_widget {
font-size: small;
}
span#checkpoint_status, span#autosave_status {
font-size: x-small;
}
}
@media (max-width: 767px) {
span#checkpoint_status, span#autosave_status {
display: none;
}
}
@media (min-width: 768px) and (max-width: 979px) {
span#checkpoint_status {
display: none;
}
span#autosave_status {
font-size: x-small;
}
}
Matthias BUSSONNIER
use momentjs for nice dates
r17474