Replace occurrences of -moz-calc().

This commit is contained in:
Nicolas Stepien 2012-08-29 22:06:34 +02:00
parent 8b0ca6ff07
commit 40a51b8892
2 changed files with 12 additions and 4 deletions

View File

@ -5386,7 +5386,9 @@ h1 {\
background: -o-linear-gradient(#EEE, #CCC);\
background: linear-gradient(#EEE, #CCC);\
width: 10%;\
padding: -moz-calc(1px) 0 2px;\
}\
.gecko #dump {\
padding: 1px 0 2px;\
}\
#dump:hover, #dump:focus {\
background: -webkit-linear-gradient(#FFF, #DDD);\
@ -5564,9 +5566,11 @@ h1 {\
#qr [type=submit] {\
margin: 1px 0;\
padding: 1px; /* not Gecko */\
padding: 0 -moz-calc(1px); /* Gecko does not respect box-sizing: border-box */\
width: 30%;\
}\
.gecko #qr [type=submit] {\
padding: 0 1px; /* Gecko does not respect box-sizing: border-box */\
}\
\
.fileText:hover .fntrunc,\
.fileText:not(:hover) .fnfull {\

View File

@ -4242,7 +4242,9 @@ h1 {
background: -o-linear-gradient(#EEE, #CCC);
background: linear-gradient(#EEE, #CCC);
width: 10%;
padding: -moz-calc(1px) 0 2px;
}
.gecko #dump {
padding: 1px 0 2px;
}
#dump:hover, #dump:focus {
background: -webkit-linear-gradient(#FFF, #DDD);
@ -4420,9 +4422,11 @@ h1 {
#qr [type=submit] {
margin: 1px 0;
padding: 1px; /* not Gecko */
padding: 0 -moz-calc(1px); /* Gecko does not respect box-sizing: border-box */
width: 30%;
}
.gecko #qr [type=submit] {
padding: 0 1px; /* Gecko does not respect box-sizing: border-box */
}
.fileText:hover .fntrunc,
.fileText:not(:hover) .fnfull {