lines-theme.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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: #666;
  15. --secondary-inverse: #fff;
  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. /*--transition-speed: 0.3s;*/
  23. /*--transition-speed-slow: 0.7s;*/
  24. }
  25. .lines .app-header {
  26. box-shadow: none;
  27. border-bottom: solid 1px var(--border-color);
  28. }
  29. .lines .split .splitter {
  30. flex-basis: 1px !important;
  31. }
  32. .lines .split.resizeable.horizontal .splitter::after {
  33. background: transparent !important;
  34. }
  35. .lines input {
  36. border: solid 1px var(--border-color);
  37. box-shadow: none; /*0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
  38. color: #777;
  39. }
  40. /* chat */
  41. .lines .flow-chat__container input.handle {
  42. background: var(--background);
  43. color: var(--normal);
  44. box-shadow: none;
  45. border-bottom: solid 1px var(--border-color);
  46. }
  47. .lines .flow-funcs__src {
  48. background: transparent !important;
  49. border: solid 1px var(--border-color);
  50. text-shadow: none;
  51. color: var(--normal);
  52. }
  53. .lines .flow-funcs__src b {
  54. font-size: 1.2em;
  55. text-shadow: none;
  56. color: var(--primary);
  57. }
  58. /* left panel */
  59. .lines .hx-collapsible {
  60. border-bottom: solid 1px var(--border-color);
  61. }
  62. .lines .hx-collapsible__header {
  63. height: 50px;
  64. }
  65. .lines .flow-node__body {
  66. fill: transparent;
  67. stroke-width: 3px;
  68. }
  69. .lines .flow-node__label {
  70. fill: black;
  71. }
  72. .lines .flow-node--selected .flow-node__label {
  73. fill: white !important;
  74. }
  75. .lines .flow-panel__selector {
  76. flex-basis: 51px;
  77. border-bottom: 1px solid var(--border-color) !important;
  78. }
  79. .lines .flow-panel__selector .active {
  80. color: var(--normal);
  81. background: transparent;
  82. position: relative;
  83. }
  84. .lines .flow-panel__selector .active::before {
  85. content: " ";
  86. position: absolute;
  87. bottom: 0;
  88. height: 3px;
  89. left: 0;
  90. right: 0;
  91. background: var(--primary);
  92. }
  93. .lines .flow-main h1,
  94. .lines .flow-main h2,
  95. .lines .flow-main h3,
  96. .lines .flow-main h4 {
  97. color: #222 !important;
  98. }