Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDimitri Williams
3,098 PointsExercise not working for me.
I keep getting an error on this exercise. Here is my code:
$input-disabled-color: #000000;
$input: ( disabled-background: lighten($input-disabled-color, 75%), disabled-border: lighten($input-disabled-color, 50%), disabled-text: lighten($input-disabled-color, 50%) );
input[disabled] { background-color: get-map($input, disabled-background); border-color: get-map($input, disabled-border); color: get-map($input, disabled-text); }
The code works in my text editor but not for the exercise. What am I doing wrong?
$input-disabled-color: #000000;
$input: (
disabled-background: lighten($input-disabled-color, 75%),
disabled-border: lighten($input-disabled-color, 50%),
disabled-text: lighten($input-disabled-color, 50%)
);
input[disabled] {
background-color: get-map($input, disabled-background);
border-color: get-map($input, disabled-border);
color: get-map($input, disabled-text);
}
2 Answers
KRIS NIKOLAISEN
54,971 PointsIf you check the previous video @ 2:50 you will see he uses map-get
instead of get-map
background-color: map-get($input, disabled-background);
Dimitri Williams
3,098 PointsThank you.