-
Notifications
You must be signed in to change notification settings - Fork 33
Description
in trying to debug the rendering glitch here
meteoric/meteor-ionic#91
i went through and gradually commented out lines in _ionic.scss
however, it doesn't seem to bear any logic. I can comment includes out and get the game to render, but then adding things back line by line sometimes it will stop working at different points.
it seems like there is either some really complex interplay between elements, or maybe the compiler doesn't actually compile or remove files?
is there a way to use the sass plugin to "force clean" build?
i also tried removing css attributes within the chrome debugger, but wasn't able to find any property that enabled rendering to correct.
this combo will render fine:
@charset "UTF-8";
@import
// // Variables
"stylesheets/mixins",
"stylesheets/variables",
// // Base
"stylesheets/reset",
"stylesheets/scaffolding",
"stylesheets/type",
// Components
// "stylesheets/action-sheet",
// "stylesheets/backdrop",
// "stylesheets/bar",
// "stylesheets/tabs",
// "stylesheets/menu",
// "stylesheets/modal",
// "stylesheets/popover",
// "stylesheets/popup",
// "stylesheets/loading",
// "stylesheets/items",
// "stylesheets/list",
// "stylesheets/badge",
// "stylesheets/slide-box",
// Forms
"stylesheets/form",
"stylesheets/checkbox",
"stylesheets/toggle",
"stylesheets/radio",
"stylesheets/range",
"stylesheets/select",
"stylesheets/progress",
// Buttons
"stylesheets/button",
"stylesheets/button-bar",
// Util
"stylesheets/grid",
"stylesheets/util",
"stylesheets/platform",
// Animations
"stylesheets/animations",
"stylesheets/transitions";
but then adding back the components at some point the renderer will break, but then if i comment out the same components the renderer won't fix itself until some random point.
any other suggestions how to narrow this down?