mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00

Using {{pathFor}}, path(), and url() where possible. Passing in path to Meteor.absoluteUrl() where the IronRouter functions didn't make sense. Also deleting some random unused code.
28 lines
No EOL
1.1 KiB
HTML
28 lines
No EOL
1.1 KiB
HTML
<template name="css">
|
|
<style>
|
|
body{
|
|
background: {{getSetting "backgroundCSS"}};
|
|
}
|
|
input[type="submit"], button, .button, .auth-buttons #login-buttons #login-buttons-password, .btn-primary, .error, .mobile-menu-button, .login-link-text{
|
|
background-color: {{getSetting "buttonColor"}} !important;
|
|
color: {{getSetting "buttonTextColor"}} !important;
|
|
}
|
|
a:hover, .post-content .post-heading .post-title:hover, .post-content .post-upvote .upvote-link i, .comment-actions a i, .comment-actions.upvoted .upvote i, .comment-actions.downvoted .downvote i, .toggle-actions-link{
|
|
color: {{getSetting "buttonColor"}};
|
|
}
|
|
.toggle-actions-link{
|
|
border-color: {{getSetting "buttonColor"}};
|
|
}
|
|
.post-content .post-upvote .upvote-link.voted i.icon-check{
|
|
/*color: {{getSetting "secondaryColor"}};*/
|
|
}
|
|
.header{
|
|
background-color: {{getSetting "headerColor"}};
|
|
color: {{getSetting "headerTextColor"}};
|
|
}
|
|
.logo-image a{
|
|
height:{{getSetting "logoHeight"}}px;
|
|
width:{{getSetting "logoWidth"}}px;
|
|
}
|
|
</style>
|
|
</template> |