##// END OF EJS Templates
Merge pull request #7720 from jdfreder/readonlyui...
Merge pull request #7720 from jdfreder/readonlyui Readonly indicator.

File last commit:

r20336:f282b722
r20393:141231cc merge
Show More
notebook.less
87 lines | 1.6 KiB | text/x-less | LessCssLexer
Matthias Bussonnier
rework css media-query...
r19953 @media (max-width: @screen-xs-max) {
MinRK
move prompts from margin to main column on small screens...
r15966 // remove bootstrap-responsive's body padding on small screens
Matthias Bussonnier
fix end_space size...
r19872 .notebook_app {
MinRK
move prompts from margin to main column on small screens...
r15966 padding-left: 0px;
padding-right: 0px;
}
}
Matthias BUSSONNIER
move border-box-sizing from js to css...
r17423 #ipython-main-app {
.border-box-sizing();
Min RK
fill #site height with notebook containers...
r20336 height: 100%;
Matthias BUSSONNIER
move border-box-sizing from js to css...
r17423 }
Brian E. Granger
More work updating the notebook to use dynamics resizing.
r4360 div#notebook_panel {
Jonathan Frederic
Make things consistent
r19655 margin: 0px;
Brian E. Granger
More work updating the notebook to use dynamics resizing.
r4360 padding: 0px;
Matthias BUSSONNIER
movestyling from js to css
r17424 .border-box-sizing();
Min RK
fill #site height with notebook containers...
r20336 height: 100%;
Brian E. Granger
Starting to refactor the notebook layout
r4355 }
Matthias Bussonnier
fix end_space size...
r19872
#notebook {
Brian E. Granger
Lots of CSS tweaks to get nbconvert output looking right.
r15733 font-size: @notebook_font_size;
line-height: @notebook_line_height;
Jonathan Frederic
Kill the layout manager
r19179 overflow-y: hidden;
Brian E. Granger
Starting to refactor the notebook layout
r4355 overflow-x: auto;
Brian E. Granger
More work updating the notebook to use dynamics resizing.
r4360 width: 100%;
Jonathan Frederic
Make things consistent
r19655 /* This spaces the page away from the edge of the notebook area */
padding-top: @page-header-padding;
MinRK
third attempt at scrolled long output...
r7362 margin: 0px;
Brian E. Granger
Binding to notebook div not document.
r14018 outline: none;
Brian E. Granger
Removing manual focusing of notebook div.
r14019 .border-box-sizing();
Min RK
fill #site height with notebook containers...
r20336 min-height: 100%;
Matthias Bussonnier
Style notebook as a document
r19651 }
#notebook-container{
Bussonnier Matthias
no shadow on print media...
r19652 @media not print{
Jonathan Frederic
Improve edit app
r19660 padding: @page-padding;
background-color : @page-color;
min-height: @page-min-height;
Jonathan Frederic
Make things consistent
r19655 .box-shadow(@global-shadow);
Bussonnier Matthias
no shadow on print media...
r19652 }
Brian Granger
General CSS cleanup....
r4331 }
Brian Granger
Fixes to notebook scrolling and layout....
r4311
mcelrath
Fix 1px jumping of cells and menus in Notebook.
r7300 div.ui-widget-content {
Matthias BUSSONNIER
start to migrate to variables
r9260 border: 1px solid @border_color;
mcelrath
Fix 1px jumping of cells and menus in Notebook.
r7300 outline: none;
}
MinRK
allow the notebook to run without MathJax...
r5547 pre.dialog {
Matthias BUSSONNIER
start to migrate to variables
r9260 background-color: @cell_background;
MinRK
allow the notebook to run without MathJax...
r5547 border: 1px solid #ddd;
Matthias BUSSONNIER
start mixins
r9261 .corner-all;
MinRK
allow the notebook to run without MathJax...
r5547 padding: 0.4em;
padding-left: 2em;
}
Brian Granger
Implemented menu based UI using Wijmo.
r5857 p.dialog {
MinRK
allow the notebook to run without MathJax...
r5547 padding : 0.2em;
}
Fernando Perez
Word-wrap output correctly in the notebook; prevents excessive scrolling....
r5256 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
*/
pre, code, kbd, samp { white-space: pre-wrap; }
mcelrath
Add bad font detection, and a dialog informing the user.
r7394
#fonttest {
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 font-family: @font-family-monospace;
mcelrath
Add bad font detection, and a dialog informing the user.
r7394 }
MinRK
catch js errors when rendering markdown cells
r8052
Matthias BUSSONNIER
fix alignemtn
r9369 p {
Brian E. Granger
More tabs to spaces on less files.
r13696 margin-bottom:0;
Matthias BUSSONNIER
fix alignemtn
r9369 }
MinRK
add anchor and link to heading cells
r10005
MinRK
specify end-space height in less
r10938 .end_space {
Matthias Bussonnier
fix end_space size...
r19872 min-height: 100px;
Matthias Bussonnier
Smooth notebook scrolling on pager closing....
r19944 transition: height .2s ease;
MinRK
specify end-space height in less
r10938 }
Jonathan Frederic
Kill the layout manager
r19179
.notebook_app #header {
Jonathan Frederic
Make things consistent
r19655 .box-shadow(@global-shadow);
Jonathan Frederic
Kill the layout manager
r19179 }
Matthias Bussonnier
fix end_space size...
r19872
.notebook_app{
@media not print {
background-color: @page-backdrop-color;
}
}