文件操作 - _hover.scss
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/sass/mixins/_hover.scss
编辑文件内容
@mixin hover { @if $enable-hover-media-query { // See Media Queries Level 4: http://drafts.csswg.org/mediaqueries/#hover // Currently shimmed by https://github.com/twbs/mq4-hover-shim @media (hover: hover) { &:hover { @content; } } } @else { &:hover { @content; } } } @mixin hover-focus { @if $enable-hover-media-query { &:focus { @content; } @include hover { @content; } } @else { &:focus, &:hover { @content; } } } @mixin plain-hover-focus { @if $enable-hover-media-query { &, &:focus { @content; } @include hover { @content; } } @else { &, &:focus, &:hover { @content; } } } @mixin hover-focus-active { @if $enable-hover-media-query { &:focus, &:active { @content; } @include hover { @content; } } @else { &:focus, &:active, &:hover { @content; } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件