1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-09 22:36:05 +00:00

Include toolbar button colours in palettes

This commit is contained in:
Jermolene
2014-02-23 17:54:38 +00:00
parent 99ccdf4584
commit 0623dd5b7f
7 changed files with 85 additions and 41 deletions

View File

@@ -22,44 +22,3 @@ html body {
.tw-page-controls svg {
<<filter "drop-shadow(1px 1px 2px rgba(255,255,255,0.9))">>
}
/*
** Some rainbow icon colours
*/
svg.tw-image-new-button {
fill: #5eb95e; /* Green */
}
svg.tw-image-options-button {
fill: rgb(128, 88, 165); /* Purple */
}
svg.tw-image-save-button {
fill: #0e90d2; /* Light blue */
}
.tw-tiddler-controls button svg.tw-image-info-button {
fill: #0e90d2; /* Light blue */
}
.tw-tiddler-controls button svg.tw-image-edit-button {
fill: rgb(243, 123, 29); /* Orange */
}
.tw-tiddler-controls button svg.tw-image-close-button {
fill: #dd514c; /* Red */
}
.tw-tiddler-controls button svg.tw-image-delete-button {
fill: #dd514c; /* Red */
}
.tw-tiddler-controls button svg.tw-image-cancel-button {
fill: rgb(243, 123, 29); /* Orange */
}
.tw-tiddler-controls button svg.tw-image-done-button {
fill: #5eb95e; /* Green */
}

View File

@@ -559,6 +559,46 @@ canvas.tw-edit-bitmapeditor {
display: block;
}
/*
** Toolbar buttons
*/
.tw-page-controls svg.tw-image-new-button {
fill: <<colour toolbar-new-button>>;
}
.tw-page-controls svg.tw-image-options-button {
fill: <<colour toolbar-options-button>>;
}
.tw-page-controls svg.tw-image-save-button {
fill: <<colour toolbar-save-button>>;
}
.tw-tiddler-controls button svg.tw-image-info-button {
fill: <<colour toolbar-info-button>>;
}
.tw-tiddler-controls button svg.tw-image-edit-button {
fill: <<colour toolbar-edit-button>>;
}
.tw-tiddler-controls button svg.tw-image-close-button {
fill: <<colour toolbar-close-button>>;
}
.tw-tiddler-controls button svg.tw-image-delete-button {
fill: <<colour toolbar-delete-button>>;
}
.tw-tiddler-controls button svg.tw-image-cancel-button {
fill: <<colour toolbar-cancel-button>>;
}
.tw-tiddler-controls button svg.tw-image-done-button {
fill: <<colour toolbar-done-button>>;
}
/*
** Tiddler edit mode
*/