From 390a1489ff34ed979a37af4769fc6a264b733eca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karla=20Saarem=C3=A4e?= Date: Mon, 26 Nov 2018 23:09:49 +0200 Subject: [PATCH] remove lib-url-check(); function was removed as this function does not exist anymore --- lib/web/css/docs/source/_utilities.less | 63 ------------------------- 1 file changed, 63 deletions(-) diff --git a/lib/web/css/docs/source/_utilities.less b/lib/web/css/docs/source/_utilities.less index 312eeffe488ca..1ce15a9a50e2d 100644 --- a/lib/web/css/docs/source/_utilities.less +++ b/lib/web/css/docs/source/_utilities.less @@ -367,66 +367,3 @@ // // // - -// # .lib-url-check() -// -// The .lib-url-check() mixin wraps passed value with 'url( ... )' and returns @lib-url-check-output variable. Can be used with .lib-css() mixin. -// - -.example-url-check { - // Set image path variable - @_icon-image: '/images/test.png'; - - // "Call" the mixin - .lib-url-check(@_icon-image); - - // Will return url('/images/test.png') - .lib-css(background, #eee @lib-url-check-output no-repeat 0 0); -} - -// -// If the variable is set to false, the .lib-url-check() will return false. -// -// ``` -//
-// Block with background. -//
-// ``` -// - -.example-url-check-false { - // Set usage image path to false - @_icon-image: false; - - // "Call" the mixin - .lib-url-check(@_icon-image); - - // Will return 'false' and outputs nothing - .lib-css(background, #eee @lib-url-check-output no-repeat 0 0); -} - -// ``` -//
-// Block with no background. -//
-// ``` -// - -// # .lib-url-check() variables -// -//
-//    
-//        
-//            
-//            
-//            
-//            
-//        
-//        
-//            
-//            
-//            
-//            
-//        
-//    
Mixin variableAllowed valuesOutput variableComment
@_path'' | false | value@lib-url-check-outputPassed url to wrap in 'url( ... )'. If the 'false' value passed mixin will return 'false'
-//