fix css : round
This commit is contained in:
@@ -27,8 +27,7 @@
|
||||
// Handle paste event
|
||||
function doPaste(e)
|
||||
{
|
||||
if($('#message').is(":focus")) databap.feedback('warning', 'Déselectionner la barre de message avant de copier l\'image');
|
||||
else if(allowPaste == true)
|
||||
if(allowPaste == true)
|
||||
{ // conditionally set allowPaste to false in situations where you want to do regular paste instead
|
||||
// Check for event.clipboardData support
|
||||
if(e.clipboardData.items) // Chrome
|
||||
|
||||
@@ -135,11 +135,11 @@ img {
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$fromColor', endColorstr='$ToColor',GradientType=1 );
|
||||
}
|
||||
|
||||
@mixin round($TopLeft, $TopRight, $BottomLeft, $BottomLeft) {
|
||||
-moz-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
-webkit-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
-khtml-border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
border-radius:$TopLeft $TopRight $BottomLeft $BottomLeft;
|
||||
@mixin round($TopLeft, $TopRight, $BottomRight, $BottomLeft) {
|
||||
-moz-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
|
||||
-webkit-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
|
||||
-khtml-border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
|
||||
border-radius:$TopLeft $TopRight $BottomRight $BottomLeft;
|
||||
}
|
||||
|
||||
/* 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
Reference in New Issue
Block a user