123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- body {
- margin: 0;
- padding: 0;
- background: #F5F6F7;
- overflow: hidden;
- }
- #main {
- position: absolute;
- top: 10px;
- left: 10px;
- right: 10px;
- bottom: 10px;
- }
- .jp-CodeMirrorWidget {
- min-height: 200px;
- min-width: 200px;
- }
- .p-TabBar-tab.p-mod-closable > .p-TabBar-tabCloseIcon:before {
- font-family: FontAwesome;
- content: '\f00d'; /* close */
- }
- .p-TabBar-tab.p-mod-closable.jp-mod-dirty > .p-TabBar-tabCloseIcon:before {
- font-family: FontAwesome;
- content: '\f069'; /* asterisk */
- }
- .p-DockTabPanel {
- padding-right: 2px;
- padding-bottom: 2px;
- }
- .p-DockTabPanel > .p-StackedPanel {
- padding: 10px;
- background: white;
- border: 1px solid #C0C0C0;
- border-top: none;
- box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
- }
- .p-DockPanel-overlay {
- background: rgba(255, 255, 255, 0.6);
- border: 1px dashed black;
- }
- .p-DockPanel-overlay.p-mod-root-top,
- .p-DockPanel-overlay.p-mod-root-left,
- .p-DockPanel-overlay.p-mod-root-right,
- .p-DockPanel-overlay.p-mod-root-bottom,
- .p-DockPanel-overlay.p-mod-root-center {
- border-width: 2px;
- }
- .p-TabBar {
- min-height: 24px;
- max-height: 24px;
- }
- .p-TabBar-header {
- display: none;
- }
- .p-TabBar-footer {
- flex: 0 0 1px;
- background: #C0C0C0;
- }
- .p-TabBar-content {
- min-width: 0;
- align-items: flex-end;
- }
- .p-TabBar-tab {
- flex: 0 1 125px;
- min-height: 20px;
- max-height: 20px;
- min-width: 35px;
- margin-left: -1px;
- border: 1px solid #C0C0C0;
- border-bottom: none;
- padding: 0px 10px;
- background: #E5E5E5;
- font: 12px Helvetica, Arial, sans-serif;
- }
- .p-TabBar-tab:first-child {
- margin-left: 0;
- }
- .p-TabBar-tab.p-mod-current {
- min-height: 23px;
- max-height: 23px;
- background: white;
- transform: translateY(1px);
- }
- .p-TabBar-tab:hover:not(.p-mod-current) {
- background: #F0F0F0;
- }
- .p-TabBar-tabIcon,
- .p-TabBar-tabText,
- .p-TabBar-tabCloseIcon {
- line-height: 20px;
- }
- .p-TabBar-tab.p-mod-closable > .p-TabBar-tabCloseIcon {
- margin-left: 4px;
- }
- .p-TabBar-tab.p-mod-drag-image {
- min-height: 23px;
- max-height: 23px;
- min-width: 125px;
- border: none;
- box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
- transform: translateX(-40%) translateY(-58%);
- }
|