1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Make icons flow themeable

This commit is contained in:
Mauricio Bonani 2022-04-03 18:04:15 -04:00
parent 5619c105aa
commit 2f77596034
2 changed files with 12 additions and 4 deletions

View File

@ -303,6 +303,8 @@ $tourGuide-heading-color: #c56c6c;
$grip-color: #ccc; $grip-color: #ccc;
$icons-flow-color: #808080;
// Deprecated // Deprecated
$text-color-green: $text-color-success; $text-color-green: $text-color-success;
$info-text-code-color: $text-color-code; $info-text-code-color: $text-color-code;

View File

@ -530,10 +530,16 @@ div.red-ui-info-table {
} }
.red-ui-icons-flow { .red-ui-icons-flow {
background-image: url('images/subflow_tab.svg'); mask-image: url(images/subflow_tab.svg);
background-repeat: no-repeat; -webkit-mask-image: url(images/subflow_tab.svg);
background-size: contain; mask-position: center;
filter: brightness(2.5); -webkit-mask-position: center;
mask-size: contain;
-webkit-mask-size: contain;
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
background-color: $icons-flow-color;
// filter: brightness(2.5);
} }
.red-ui-info-toolbar { .red-ui-info-toolbar {