- Unit tests for parent flexbox rules. ✔
- Flexie updates based on unit testing. ✔
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* what was in style.css */ | |
body, html { | |
width: 100%; | |
height: 100%; | |
padding: 0; | |
margin: 0; | |
} | |
.hbox.center.alignCenter { | |
background-color: gray; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>Flexie | Legacy support for the CSS3 Flexible Box Model</title> | |
<link rel="stylesheet" href="./box_components.css" type="text/css" /> | |
<link rel="stylesheet" href="./style.css" type="text/css" /> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ compass compile path/to/sass/ --trace | |
ArgumentError on line 95 of /Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/compiler.rb: wrong number of arguments (3 for 2) | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/compiler.rb:95:in `compile_if_required' | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/compiler.rb:82:in `run' | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/compiler.rb:80:in `each' | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/compiler.rb:80:in `run' | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/compiler.rb:103:in `timed' | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/compiler.rb:79:in `run' | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/commands/update_project.rb:36:in `perform' | |
/Library/Ruby/Gems/1.8/gems/compass-0.11.alpha.4/lib/compass/commands/base.rb:18:in `execute' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// No error thrown here | |
$foo-spacing: 1px; | |
// Setting any value results in: | |
// ChunkyPNG::OutOfBounds on line 233 of /Library/Ruby/Gems/1.8/gems/chunky_png-0.10.4/lib/chunky_png/canvas/operations.rb: Background image width is too small! | |
$foo-position: 1px; | |
// Test case has two sprites @ 38x38 each | |
@import "foo/*.png"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- DOMAssistant --> | |
<script src="http://domassistant.googlecode.com/svn/branches/2.8/DOMAssistantCompressed.js" type="text/javascript"></script> | |
<!-- NWMatcher --> | |
<script src="http://nwevents.googlecode.com/svn/trunk/nwmatcher.js" type="text/javascript"></script> | |
<!-- jQuery --> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js" type="text/javascript"></script> | |
<!-- Sizzle --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Quickie Steps (on Windows): | |
1. Click on Start > Run. Type "cmd" (no quotes) and press Enter. (You can also just press Windows Key + R for a shortcut). | |
2. Type "cd" (no quotes), press space, and drag the target folder into the command line. Press Enter. | |
3. Run this command: | |
for /f "tokens=*" %i in ('dir *.png /a:-d /s /b') do (convert "%i" -background "rgb(255, 255, 255)" "%i" & "C:\pngout.exe" "%i" -kbKGD -y "%i") | |
Done! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box-sizing (IE 7) | |
pointer-events (IE) | |
display: box (IE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var i=document.images,p;for(p in i){i[p].src="//placekitten.com/"+i[p].width+"/"+i[p].height;}i[-1] |
OlderNewer