turns out that we /do/ use tertiaryAccentColor after all

pull/5604/head
Matthew Hodgson 2017-11-15 00:57:44 +00:00
parent 3e72d8d969
commit 9f61cb8137
4 changed files with 16 additions and 4 deletions

View File

@ -132,6 +132,10 @@ textarea {
color: $secondary-accent-color; color: $secondary-accent-color;
} }
#mx_theme_tertiaryAccentColor {
color: $roomsublist-label-bg-color;
}
.mx_Dialog_wrapper { .mx_Dialog_wrapper {
position: fixed; position: fixed;
z-index: 4000; z-index: 4000;

View File

@ -34,7 +34,11 @@ $secondary-accent-color: $primary-bg-color;
// by overriding the key to something untintable // by overriding the key to something untintable
// XXX: this is a bit of a hack. // XXX: this is a bit of a hack.
#mx_theme_secondaryAccentColor { #mx_theme_secondaryAccentColor {
color: #2d2d2e ! important; // deliberately off by one color: #c0ff33 ! important; // deliberately off by one
}
#mx_theme_tertiaryAccentColor {
color: #c0ffee ! important;
} }
// used by RoomDirectory permissions // used by RoomDirectory permissions

View File

@ -90,7 +90,11 @@ $secondary-accent-color: #586C7B;
// by overriding the key to something untintable // by overriding the key to something untintable
// XXX: this is a bit of a hack. // XXX: this is a bit of a hack.
#mx_theme_secondaryAccentColor { #mx_theme_secondaryAccentColor {
color: #586C7C ! important; // deliberately off by one color: #c0ffee ! important;
}
#mx_theme_tertiaryAccentColor {
color: #c0ffee ! important;
} }
// used by RoomDirectory permissions // used by RoomDirectory permissions

View File

@ -27,7 +27,7 @@
if (match) { if (match) {
var title = match[1].charAt(0).toUpperCase() + match[1].slice(1); var title = match[1].charAt(0).toUpperCase() + match[1].slice(1);
%> %>
<link rel="stylesheet" disabled title="<%= title %>" href="<%= file %>"> <link rel="stylesheet" disabled="disabled" title="<%= title %>" href="<%= file %>">
<% } else { %> <% } else { %>
<link rel="stylesheet" href="<%= file %>"> <link rel="stylesheet" href="<%= file %>">
<% } <% }
@ -73,6 +73,6 @@
</audio> </audio>
<audio id="remoteAudio"/> <audio id="remoteAudio"/>
<!-- let CSS themes pass constants to the app --> <!-- let CSS themes pass constants to the app -->
<div id="mx_theme_accentColor"></div><div id="mx_theme_secondaryAccentColor"/></div> <div id="mx_theme_accentColor"></div><div id="mx_theme_secondaryAccentColor"/></div><div id="mx_theme_tertiaryAccentColor"/></div>
</body> </body>
</html> </html>