1234567891011121314151617181920212223242526272829303132333435 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- @import './breakpoints.css';
- @import './editor.css';
- @import './callstack.css';
- @import './variables.css';
- @import './icons.css';
- @import './sidebar.css';
- @import './sources.css';
- /* font awesome */
- .fa {
- display: inline-block;
- font: normal normal normal 14px/1 FontAwesome;
- font-size: inherit;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- }
- .fa-caret-down:before {
- content: '\F0D7';
- }
- .jp-Document .jp-Toolbar {
- justify-content: flex-end;
- }
- .jp-left-truncated {
- overflow: hidden;
- text-overflow: ellipsis;
- direction: rtl;
- }
|