lines-theme.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. .lines {
  2. --header-background: #fff;
  3. --header-color: #333;
  4. --background: #fff;
  5. --background-transparent: rgba(255, 255, 255, 0.9);
  6. --background-secondary: #fff;
  7. --background-tertiary: #fff;
  8. --normal: #333;
  9. --normal-secondary: #999;
  10. --primary: #0be;
  11. --primary-darker: #0ae;
  12. --primary-lighter: #6080b0;
  13. --primary-inverse: #fff;
  14. --secondary: #eee;
  15. --secondary-inverse: #444;
  16. --node-label: #fff;
  17. --node-socket: #444;
  18. --node-socket--withvalue: #44f;
  19. --link-hover: #f00;
  20. --selector-background: rgba(0, 0, 200, 0.1);
  21. --selector-color: var(--primary);
  22. --node-selection: rgba(0, 187, 238, 0.7);
  23. /*--transition-speed: 0.3s;*/
  24. /*--transition-speed-slow: 0.7s;*/
  25. }
  26. .lines .app-header {
  27. box-shadow: none;
  28. border-bottom: solid 1px var(--border-color-lighter);
  29. }
  30. .lines .split .splitter {
  31. flex-basis: 1px !important;
  32. color: var(--border-color);
  33. }
  34. .lines .split.resizeable.horizontal .splitter::after {
  35. background: transparent !important;
  36. }
  37. .lines input {
  38. border: solid 1px var(--border-color);
  39. box-shadow: none; /*0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
  40. color: #777;
  41. }
  42. /* chat */
  43. .lines .flow-chat__container input.handle {
  44. background: var(--background);
  45. color: var(--normal);
  46. box-shadow: none;
  47. border-bottom: solid 1px var(--border-color);
  48. }
  49. .lines .flow-funcs__src {
  50. background: transparent !important;
  51. border: solid 1px var(--border-color-lighter);
  52. text-shadow: none;
  53. color: var(--normal);
  54. }
  55. .lines .flow-funcs__src b {
  56. font-size: 1.2em;
  57. text-shadow: none;
  58. color: var(--primary);
  59. }
  60. /* left panel */
  61. .lines .hx-collapsible {
  62. border-bottom: solid 1px var(--border-color-lighter);
  63. }
  64. .lines .hx-collapsible__header {
  65. height: 50px;
  66. }
  67. .lines .flow-node__body {
  68. fill: transparent;
  69. stroke-width: 3px;
  70. }
  71. .lines .flow-node__label {
  72. fill: black;
  73. }
  74. .lines .flow-node--selected .flow-node__label {
  75. fill: var(--normal) !important;
  76. }
  77. .lines .flow-panel__selector {
  78. flex-basis: 51px;
  79. border-bottom: 1px solid var(--border-color) !important;
  80. }
  81. .lines .flow-panel__selector .active {
  82. color: var(--normal);
  83. background: transparent;
  84. position: relative;
  85. }
  86. .lines .flow-panel__selector .active::before {
  87. content: " ";
  88. position: absolute;
  89. bottom: 0;
  90. height: 3px;
  91. left: 0;
  92. right: 0;
  93. background: var(--primary);
  94. }
  95. .lines .flow-main h1,
  96. .lines .flow-main h2,
  97. .lines .flow-main h3,
  98. .lines .flow-main h4 {
  99. color: #222 !important;
  100. }