index.css 824 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. @import './breakpoints.css';
  6. @import './editor.css';
  7. @import './callstack.css';
  8. @import './variables.css';
  9. @import './icons.css';
  10. @import './sidebar.css';
  11. @import './sources.css';
  12. /* font awesome */
  13. .fa {
  14. display: inline-block;
  15. font: normal normal normal 14px/1 FontAwesome;
  16. font-size: inherit;
  17. text-rendering: auto;
  18. -webkit-font-smoothing: antialiased;
  19. }
  20. .fa-caret-down:before {
  21. content: '\F0D7';
  22. }
  23. .jp-Document .jp-Toolbar {
  24. justify-content: flex-end;
  25. }
  26. .jp-left-truncated {
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. direction: rtl;
  30. }