mirror of
https://github.com/YunoHost-Apps/dokuwiki_ynh.git
synced 2024-09-03 18:26:20 +02:00
10 lines
No EOL
357 B
Text
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);
|
|
} |