8b46c12f7f6427f5e833f3dda9890f9f21d61d23c4e2d93cf317a2d586789c99fa8cebce03bbc23280c5d328dd823efa35838e6c1cb80972dea6cedaa67a5d 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. .monaco-table {
  6. display: flex;
  7. flex-direction: column;
  8. position: relative;
  9. height: 100%;
  10. width: 100%;
  11. white-space: nowrap;
  12. }
  13. .monaco-table > .monaco-split-view2 {
  14. border-bottom: 1px solid transparent;
  15. }
  16. .monaco-table > .monaco-list {
  17. flex: 1;
  18. }
  19. .monaco-table-tr {
  20. display: flex;
  21. height: 100%;
  22. }
  23. .monaco-table-th {
  24. width: 100%;
  25. height: 100%;
  26. font-weight: bold;
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. }
  30. .monaco-table-th,
  31. .monaco-table-td {
  32. box-sizing: border-box;
  33. flex-shrink: 0;
  34. overflow: hidden;
  35. white-space: nowrap;
  36. text-overflow: ellipsis;
  37. }
  38. .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
  39. content: "";
  40. position: absolute;
  41. left: calc(var(--sash-size) / 2);
  42. width: 0;
  43. border-left: 1px solid transparent;
  44. }
  45. .monaco-table > .monaco-split-view2,
  46. .monaco-table > .monaco-split-view2 .monaco-sash.vertical::before {
  47. transition: border-color 0.2s ease-out;
  48. }
  49. /*
  50. .monaco-table:hover > .monaco-split-view2,
  51. .monaco-table:hover > .monaco-split-view2 .monaco-sash.vertical::before {
  52. border-color: rgba(204, 204, 204, 0.2);
  53. } */