Browse Source

tiny fix in css and drone update

luis 7 years ago
parent
commit
2ff5c4f05a

+ 1 - 1
.drone.yml

@@ -69,6 +69,6 @@ pipeline:
       - luisf@hexasoftware.com
     secrets: [email_password]
     when:
-      status: [ changed, failure, success ]
+      status: [ failure, success ]
 
 

+ 5 - 0
browser/vue-flow/src/assets/dark-theme.css

@@ -36,3 +36,8 @@
 .dark .flow-node__activity[status="running"] .flow-node__activity-icon > * {
   stroke: #9af;
 }
+
+.dark .flow-funcs__search input {
+  color: var(--normal);
+  border-bottom: solid 1px rgba(48, 48, 48, 0.8);
+}

+ 5 - 0
browser/vue-flow/src/assets/default-theme.css

@@ -104,6 +104,11 @@ h3 {
   background: var(--background-tertiary);
 }
 
+.flow-funcs__search input {
+  color: var(--normal);
+  border-bottom: solid 1px rgba(198, 188, 188, 0.8);
+}
+
 .flow-funcs__src {
   background: #777;
   color: var(--node-label);

+ 1 - 1
browser/vue-flow/src/components/panel.vue

@@ -142,7 +142,7 @@ export default {
   height:50px;
   color: var(--normal);
   box-shadow:none;
-  border-bottom: solid 1px var(--secondary);
+  border-bottom: solid 1px rgba(198,188,188,0.8)
 }
 
 .flow-funcs__inner {