summaryrefslogtreecommitdiffstats
path: root/client/components/cards/cardDate.styl
blob: e9d56f7929f6e35651487a95900108edca608291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.edit-card-date
  .fields
    .left
      width: 56%
    .right
      width: 38%
  .datepicker
    width: 100%
    table
      width: 100%
      border: none
      border-spacing: 0
      border-collapse: collapse
      thead
        background: none
      td, th
        box-sizing: border-box


.card-date
  display: block
  border-radius: 4px
  padding: 1px 3px;
  
  background-color: #dbdbdb
  &:hover, &.is-active
    background-color: #b3b3b3
  
  &.current
    background-color: #42ca00
    &:hover, &.is-active
      background-color: darken(#42ca00, 15)
  
  &.almost-due
    background-color: #fad900
    &:hover, &.is-active
      background-color: darken(#fad900, 15)
  
  &.due
    background-color: #fa3f00
    &:hover, &.is-active
      background-color: darken(#fa3f00, 15)

  time
    &::before
      font: normal normal normal 14px/1 FontAwesome
      font-size: inherit
      -webkit-font-smoothing: antialiased
      content: "\f017"  // clock symbol
      margin-right: 0.3em