summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/notes.css.scss
blob: c493c487a23736efd89bfbada9b8cc3ad12b65b4 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/** Notes **/

#notes-list {
  display:block;
  list-style:none;
  margin:0px;
  padding:0px;
}

.issue_notes {
  .note_content {
    float:left;
    width:400px;
  }
}

/* Note textare */
#note_note {
  height:100px;
  width:97%;
  font-size:14px;
}

#new_note {
  #note_note {
    height:25px;
  }
  .attach_holder {
    display:none;
  }
}

.note .delete-note { display:none; }
.note:hover .delete-note { display:block; }
.note {padding: 10px 0; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
.note img{float: left; margin-right: 10px;}
.note span.note-title{display: block;}
.note span.note-title{margin-bottom: 10px}
.note span.note-author{color: #999; font-weight: normal; font-style: italic;}
.note span.note-author strong{font-weight: bold; font-style: normal;}
.note p { color:$style_color; }
.note .note-author { color: $style_color;}

.note .note-title { margin-left:55px; }

p.notify_controls input{
  margin: 5px;
}

p.notify_controls span{
  font-weight: 700;
}

tr.line_notes_row { 
  border-bottom:1px solid #DDD;
  ul { 
    margin:0;
    li { 
      padding:0;
      border:none;
    }
  }
}