12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) 2014-2016, Jupyter Development Team.
- |
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- :root {
- --jp-private-toolbar-height: 24px;
- }
- .jp-Toolbar {
- color: var(--jp-ui-font-color1);
- flex: 0 0 auto;
- display: flex;
- flex-direction: row;
- border-bottom: var(--jp-border-width) solid var(--jp-border-color2);
- height: 24px;
- height: calc(var(--jp-private-toolbar-height) + var(--jp-border-width));
- }
- .jp-Toolbar > .jp-Toolbar-item {
- flex: 0 0 auto;
- padding-left: 8px;
- padding-right: 8px;
- vertical-align: middle;
- font-size: 14px;
- line-height: 23px;
- }
- .jp-Toolbar-item.jp-Toolbar-button {
- font-family: FontAwesome;
- text-align: center;
- display: inline-block;
- height: 24px;
- width: 32px;
- background-repeat: no-repeat;
- background-position: center;
- background-size: 16px;
- }
- .jp-Toolbar-button.jp-mod-pressed {
- background-color: #E0E0E0;
- box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);
- }
- .jp-Toolbar-button:hover {
- background-color: #EEEEEE;
- box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);
- }
- .jp-Toolbar > .jp-Toolbar-item.jp-Kernel-toolbarKernelName {
- text-align: right;
- flex-grow: 1;
- flex-shrink: 1;
- font-size: var(--jp-ui-font-size1);
- }
- .jp-Toolbar-item.jp-Kernel-toolbarKernelIndicator {
- font-family: FontAwesome;
- text-align: center;
- display: inline-block;
- }
- .jp-Toolbar-item.jp-Kernel-toolbarKernelIndicator {
- border-right: none;
- }
- .jp-Kernel-toolbarInterrupt::before {
- content: "\f04d"; /* stop */
- }
- .jp-Kernel-toolbarRestart::before {
- content: "\f01e"; /* rotate-right */
- }
- .jp-Kernel-toolbarKernelIndicator::before {
- content: "\f10c"; /* circle-o */
- }
- .jp-Kernel-toolbarKernelIndicator.jp-mod-busy::before {
- content: "\f111"; /* circle */
- }
|