cards.reveal.less 683 字节
Newer Older
C
Catouse 已提交
1 2
/// ========================================================================
/// ZUI: cards.reveal.less
C
Catouse 已提交
3
/// http://openzui.com
C
Catouse 已提交
4
/// ========================================================================
C
Catouse 已提交
5
/// Copyright 2014-2020 cnezsoft.com; Licensed MIT
C
Catouse 已提交
6 7 8 9 10
/// ========================================================================


// Reveal UI style for cards view

C
Catouse 已提交
11 12
.card {
  > .card-reveal {
C
Catouse 已提交
13 14 15 16 17 18 19 20
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: @card-reveal-bg;
    .transition(all, @animation-speed-slow, @animation-type);

C
Catouse 已提交
21
    > .card-heading { padding: 20px 10px; }
C
Catouse 已提交
22 23
  }

C
Catouse 已提交
24
  &:hover {
C
Catouse 已提交
25
    > .card-reveal { top: 0; }
C
Catouse 已提交
26 27
  }
}