diff --git a/rpg-docs/Model/Character/Effects.js b/rpg-docs/Model/Character/Effects.js index 87c23d37..f26e1bf9 100644 --- a/rpg-docs/Model/Character/Effects.js +++ b/rpg-docs/Model/Character/Effects.js @@ -98,7 +98,7 @@ if(Meteor.isServer) Characters.after.insert(function (userId, char) { }); Effects.attachBehaviour('softRemovable'); -makeChild(Effects, ['name', 'enabled']); //children of lots of things +makeChild(Effects, ["enabled"]); //children of lots of things Effects.allow(CHARACTER_SUBSCHEMA_ALLOW); Effects.deny(CHARACTER_SUBSCHEMA_DENY); diff --git a/rpg-docs/client/globalHelpers/signedString.js b/rpg-docs/client/globalHelpers/signedString.js index f182353c..6028b578 100644 --- a/rpg-docs/client/globalHelpers/signedString.js +++ b/rpg-docs/client/globalHelpers/signedString.js @@ -1,3 +1,3 @@ Template.registerHelper("signedString", function(number){ - return number > 0? "+" + number : "" + number; + return number >= 0? "+" + number : "" + number; }); \ No newline at end of file diff --git a/rpg-docs/client/views/GeneralCSS/general.css b/rpg-docs/client/views/GeneralCSS/general.css index 2c7356a7..0a7539f0 100644 --- a/rpg-docs/client/views/GeneralCSS/general.css +++ b/rpg-docs/client/views/GeneralCSS/general.css @@ -104,7 +104,7 @@ paper-button { color: rgba(0, 0, 0, 0.54); } -.clickable, .statCard { +.clickable, .statCard, .abilityMiniCard { cursor: pointer; } diff --git a/rpg-docs/client/views/character/characterSheet.css b/rpg-docs/client/views/character/characterSheet.css index 3982a982..9816e965 100644 --- a/rpg-docs/client/views/character/characterSheet.css +++ b/rpg-docs/client/views/character/characterSheet.css @@ -1,5 +1,4 @@ paper-tabs, core-toolbar { - background-color: #795548; box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.2); } @@ -21,18 +20,9 @@ paper-tabs ::shadow #ink { paper-tabs.transparent-brown { background-color: transparent; - color: #795548; box-shadow: none; } -paper-tabs.transparent-brown::shadow #selectionBar { - background-color: #795548; -} - -paper-tabs.transparent-brown paper-tab::shadow #ink { - color: #795548; -} - core-toolbar.medium-tall { height: 108px; } diff --git a/rpg-docs/client/views/character/features/features.html b/rpg-docs/client/views/character/features/features.html index cde38383..a18b5184 100644 --- a/rpg-docs/client/views/character/features/features.html +++ b/rpg-docs/client/views/character/features/features.html @@ -117,16 +117,16 @@