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

File last commit:

r20384:18203ed1
r20393:141231cc merge
Show More
notificationarea.less
74 lines | 1.1 KiB | text/x-less | LessCssLexer
/ IPython / html / static / notebook / less / notificationarea.less
Brian E. Granger
Splitting notebook.less into separate files.
r10730 #notification_area {
jon
Fixed status indicator region
r16932 .pull-right();
Brian E. Granger
Splitting notebook.less into separate files.
r10730 z-index: 10;
}
Brian E. Granger
Add edit/command mode indicator.
r15115
.indicator_area {
Bussonnier Matthias
re-hook notification area for editor....
r20149 .pull-right();
Jonathan Frederic
Get notebook running with Bootstrap3
r16912 color: @navbar-default-link-color;
Min RK
remove some custom css...
r19298 margin-left: 5px;
margin-right: 5px;
Brian E. Granger
Add edit/command mode indicator.
r15115 width: 11px;
z-index: 10;
Brian E. Granger
Spinning sun + nothing for command mode.
r15128 text-align: center;
Bussonnier Matthias
re-hook notification area for editor....
r20149 width: auto;
Brian E. Granger
Add edit/command mode indicator.
r15115 }
#kernel_indicator {
jon
Fixed status indicator region
r16932 .indicator_area();
Min RK
remove kernel selector from header...
r19596
Min RK
remove duplicated border in indicator area
r20180 border-left: 1px solid;
Min RK
remove kernel selector from header...
r19596 .kernel_indicator_name {
padding-left: 5px;
padding-right: 5px;
}
jon
Fixed status indicator region
r16932 }
#modal_indicator {
.pull-right();
.indicator_area();
Brian E. Granger
Add edit/command mode indicator.
r15115 }
Jonathan Frederic
Add readonly indicator to notification area.
r20374 #readonly-indicator {
.pull-right();
.indicator_area();
margin-top: 2px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
Jonathan Frederic
Start read-only indicator as hidden.
r20384
// Start out hidden.
display: none;
Jonathan Frederic
Add readonly indicator to notification area.
r20374 }
Jonathan Frederic
Used fa-fw to force mode indicator as fixed width.
r20304 .modal_indicator:before {
.fa-fw();
}
Bussonnier Matthias
make global css change on command/edit mode
r19671 .edit_mode .modal_indicator:before {
Jonathan Frederic
Used fa-fw to force mode indicator as fixed width.
r20304 .icon(@fa-var-pencil);
Paul Ivanov
semantic names for indicator icons...
r15806 }
Bussonnier Matthias
make global css change on command/edit mode
r19671 .command_mode .modal_indicator:before {
Matthias BUSSONNIER
fix some font-awesoem 4 icons
r17414 .icon(' ');
Paul Ivanov
semantic names for indicator icons...
r15806 }
Paul Ivanov
rename css class names to be consistent with current style
r15847 .kernel_idle_icon:before {
Matthias BUSSONNIER
fix some font-awesoem 4 icons
r17414 .icon(@fa-var-circle-o);
Paul Ivanov
semantic names for kernel status indicator
r15807 }
Paul Ivanov
rename css class names to be consistent with current style
r15847 .kernel_busy_icon:before {
Matthias BUSSONNIER
fix some font-awesoem 4 icons
r17414 .icon(@fa-var-circle);
Paul Ivanov
semantic names for kernel status indicator
r15807 }
MinRK
improve indicators and handling of dead kernels and broken websocket connections...
r17676 .kernel_dead_icon:before {
.icon(@fa-var-bomb);
}
.kernel_disconnected_icon:before {
.icon(@fa-var-chain-broken);
}
Paul Ivanov
semantic names for kernel status indicator
r15807