mirror of
https://github.com/searxng/searxng.git
synced 2024-11-03 15:39:33 +00:00
13 lines
163 B
Text
13 lines
163 B
Text
|
// Labels
|
||
|
|
||
|
.label-variant(@color) {
|
||
|
background-color: @color;
|
||
|
|
||
|
&[href] {
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
background-color: darken(@color, 10%);
|
||
|
}
|
||
|
}
|
||
|
}
|