1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dokuwiki_ynh.git synced 2024-09-03 18:26:20 +02:00
dokuwiki_ynh/sources/lib/tpl/dokuwiki/css/mixins.less
2014-02-11 14:56:25 +01:00

10 lines
No EOL
357 B
Text

/**
* linear gradient x-browser support
*/
.linear-gradient(@declaration: 0) {
background: -moz-linear-gradient( @declaration);
background: -webkit-linear-gradient(@declaration);
background: -o-linear-gradient( @declaration);
background: -ms-linear-gradient( @declaration);
background: linear-gradient( @declaration);
}