Mathieu
a9201807a9
add running indication for notebook icon in dashboard
11 years ago
Thomas Kluyver
b0e4ef6b5c
Merge pull request #7505 from jdfreder/actions
...
Dashboard checkbox style interface
11 years ago
Thomas Kluyver
9790e43997
Merge pull request #7605 from minrk/f-the-pager
...
fix the pager and tooltip locations
11 years ago
Thomas Kluyver
d7f1166005
Merge pull request #7454 from minrk/project_name
...
add language name to kernelspec
11 years ago
Min RK
e18a502484
"fix" the pager
...
- pull the pager element out of `#site`
- fix top to `auto` instead of `inherit`
11 years ago
Min RK
87758e0c77
set height: auto on #site for print
...
avoids truncating printed output
11 years ago
Min RK
395ad097a9
add some horizontal margin on select dropdown
...
to avoid overlapping adjacent text when active
11 years ago
Min RK
54bce1c423
remove duplicated border in indicator area
11 years ago
Min RK
7f3f3d4316
apply `position: relative` to header
...
otherwise, z-index has no effect,
causing header shadow to fall behind content.
11 years ago
Thomas Kluyver
708088d74a
Merge pull request #7586 from Carreau/notif-editor
...
re-hook notification area for editor.
11 years ago
Peter Parente
91740ace4a
Fix initial scroll overflow with padding (from @joelkim)
11 years ago
Min RK
b5ba6caf72
fix CodeMirror div measurement on edit page
...
was measuring the wrong elements,
causing the CM div to not fit on the page,
resulting in multiple scrollbars.
11 years ago
Min RK
339238587f
rebuild css with font-awesome-4.3
11 years ago
Jonathan Frederic
ffac8cc1bb
invoke css
11 years ago
Bussonnier Matthias
0118cfbd48
re-hook notification area for editor.
...
- re-order element to be the same as in notebook,
- rename events correctly.
- Add event on savign to show that save is in progress, that get
dismissed on file save
Closes #7569
11 years ago
damianavila
1b520328d6
Fix the hidden x scrolling.
11 years ago
Min RK
83ce71aa53
Merge pull request #7551 from Carreau/xxs
...
fix left-margin on xxs screen
11 years ago
Min RK
d4eb36ea02
Merge pull request #7557 from minrk/different-resize
...
don't use flexbox to size `#site`
11 years ago
Min RK
d8ccd5e39b
Merge pull request #7473 from Carreau/no-pager-jump
...
Smooth notebook scrolling on pager closing.
11 years ago
Bussonnier Matthias
c81ae8762e
fix left-margin on xxs screen
11 years ago
Min RK
315fb1528e
remove inappropriate negative margin on menubar
...
caused 1px mismatch between header background and menubar
when toolbar is hidden.
11 years ago
Min RK
f971cad223
use translateZ(0) to avoid repaints of `#site` on scroll.
11 years ago
Min RK
f499104d75
don't use flexbox to size `#site`
...
The approach in #7517 didn't work on Safari
(as in the entire page was invisible).
This is the same mechanism used to size the CodeMirror div on the edit page, and should work more reliably.
11 years ago
Min RK
5dfece0a2a
Merge pull request #7514 from minrk/border-markdown
...
add border to rendered markdown with cell toolbar
11 years ago
Min RK
cf25b8a93c
fix printing
11 years ago
Min RK
b84ad79b2f
don't use fixed header
...
instead, use static header and flex box to accomplish the same thing.
fixes various issues related to scrolling, anchors, etc.
11 years ago
Brian E. Granger
918d13200a
Merge pull request #7271 from jdfreder/remove-term-page
...
Try moving terminal page contents into the running tab.
11 years ago
Jonathan Frederic
5ef0c1dfd3
invoke css
11 years ago
Jonathan Frederic
78f28a635b
Review comments
11 years ago
Min RK
784f07346d
add border to rendered markdown with cell toolbar
...
matches unrendered markdown and code cells
11 years ago
Thomas Kluyver
411bf7a39d
Merge pull request #7445 from bollwyvl/left-rendered-text
...
left-aligning text
11 years ago
Jonathan Frederic
64f529d399
invoke css
11 years ago
Jonathan Frederic
96656a87e0
invoke css
11 years ago
Jonathan Frederic
db8cad5bff
invoke css
11 years ago
Jonathan Frederic
cf0234d5f9
invoke css
11 years ago
Jonathan Frederic
74fbcdfec2
invoke css
11 years ago
Jonathan Frederic
bc79ec0c75
invoke css after rebase
11 years ago
Jonathan Frederic
6007ef89fe
invoke css
11 years ago
Jonathan Frederic
7c7da54699
invoke css
11 years ago
Jonathan Frederic
d783812d9b
invoke css
11 years ago
Matthias Bussonnier
411a08bf09
rework css media-query
...
fixes #7355
Also limit the number of query "jump", and use variables.
In particular there was a container width discontinuity at 768 pixel
where below 768 container width is 100% and "only" 720px on wider
screen, making a jump.
So now Css media query have 3 breakpoints:
- <540 px with (aka -no name-)
- colapsed menubar
- vbox for prompt
- 100% width container
- 540 -> 767 (aka -xs- )
- expand menubar
- hbox fro prompt
- 767 -> 991 (aka -sm-)
- show save widget
- fix width (768px)
- 991+ (aka -md-)
- extra save widget info (date time)
- fix with of 991 px.
- 1200+ (aka -lg-)
- widht of 1200px.
of course we've set soem variable wrongly so this is still kinda-a-hack
as we shoudl have pushed the xs-sm limit lower instead of pushing the
nothing-xs limit up but I don't want to "fix it" now.
11 years ago
Matthias Bussonnier
b7bdfa715c
Merge pull request #7444 from minrk/toggle-header-bar
...
hide header-bar when header is hidden
11 years ago
Matthias Bussonnier
3e60745ca1
Smooth notebook scrolling on pager closing.
...
avoid brutal jump of notebook on closing pager, when notebook is scroll
to max
11 years ago
Nicholas Bollweg
ac1c6f7ca8
#7239 : left-aligning text
11 years ago
Min RK
e2de7a928a
hide header-bar when header is hidden
...
also reduce the amount of CSS used to accomplish the 1px line (no negative margins)
11 years ago
Matthias Bussonnier
c106e76a66
fix end_space size
...
closes #7409
Mostly a symptome of too many nested div that do different things.
don't try to both have an end space inside and outside the 'document'
area. And don't try to also get the things to be 100viewport height by
hacking around and make them smaller;
11 years ago
Matthias Bussonnier
f51872c4c2
Merge pull request #7346 from jdfreder/terminal-page
...
Use page backdrop color in terminal page
11 years ago
Jonathan Frederic
f79b914e5c
invoke css
11 years ago
Min RK
c9c6b8d8a2
recompile css
...
it had fallen out of sync with updated bootstrap
11 years ago
Jonathan Frederic
ad546d89f9
Merge pull request #7341 from jdfreder/remove-popup
...
Remove the popup widget
11 years ago