-
-
Save kbav/7891881 to your computer and use it in GitHub Desktop.
Revisions
-
kbav revised this gist
Dec 10, 2013 . 1 changed file with 5 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,5 @@ .calc(@expression) { width: -webkit-calc(@expression); width: -moz-calc(@expression); width: calc(@expression); } -
zumwalt renamed this gist
Jun 10, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
zumwalt created this gist
Jun 10, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ .calc(@expression) { width: -moz-calc(@expression); width: -o-calc(@expression); width: -webkit-calc(@expression); width: calc(@expression); } This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ .calc(~"100% - 95px");