fix css : round

This commit is contained in:
2015-04-25 17:31:57 +02:00
parent 345ca91a43
commit 60dfaae271
6 changed files with 10 additions and 11 deletions

View File

@@ -27,8 +27,7 @@
// Handle paste event // Handle paste event
function doPaste(e) function doPaste(e)
{ {
if($('#message').is(":focus")) databap.feedback('warning', 'Déselectionner la barre de message avant de copier l\'image'); if(allowPaste == true)
else if(allowPaste == true)
{ // conditionally set allowPaste to false in situations where you want to do regular paste instead { // conditionally set allowPaste to false in situations where you want to do regular paste instead
// Check for event.clipboardData support // Check for event.clipboardData support
if(e.clipboardData.items) // Chrome if(e.clipboardData.items) // Chrome

View File

@@ -135,11 +135,11 @@ img {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 ); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 );
} }
@mixin round($TopLeft, $TopRight, $BottomLeft, $BottomLeft) { @mixin round($TopLeft, $TopRight, $BottomRight, $BottomLeft) {
-moz-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft; -moz-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
-webkit-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft; -webkit-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
-khtml-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft; -khtml-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft; border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
} }
/* Classes */ /* Classes */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long