css - Changing bootstrap panel color using sass -
i'm pretty new using both twitter bootstrap , sass. trying modify background color of panel-header in bootstrap using .sass file in rails application.
this bootstrap css according inspect element:
.panel-default > .panel-heading { color: #333333; background-color: #f5f5f5; border-color: #ddd;
and here's i'm trying in sass file change color
.panel-default .panel-heading background-color: #fdf1d8
i'm wondering if problem has selector used in bootstrap css? don't know how translates indented sass. suggestions?
what doing spit out following:
.panel-default .panel heading { background-color: #fdf1d8; }
>
specific, should use it, too:
.panel-default > .panel-heading { background-color: #fdf1d8` }
Comments
Post a Comment