~caneypuggies/reformedchurcheslocator/couchapp-backbone

« back to all changes in this revision

Viewing changes to _attachments/js/vendor/jasmine/src/html/_TrivialReporter.scss

  • Committer: Tim Black
  • Date: 2013-09-16 22:50:16 UTC
  • Revision ID: tim@alwaysreformed.com-20130916225016-zk8jiba25z33ew7h
Versioned Bower vendor directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#TrivialReporter {
 
2
  padding: 8px 13px;
 
3
  position: absolute;
 
4
  top: 0;
 
5
  bottom: 0;
 
6
  left: 0;
 
7
  right: 0;
 
8
  overflow-y: scroll;
 
9
 
 
10
  background-color: white;
 
11
  font-family: "Helvetica Neue Light", "Lucida Grande", "Calibri", "Arial", sans-serif;
 
12
 
 
13
  a:visited, a {
 
14
    color: #303;
 
15
  }
 
16
 
 
17
  a:hover, a:active {
 
18
    color: blue;
 
19
  }
 
20
 
 
21
  .run_spec {
 
22
    float:right;
 
23
    padding-right: 5px;
 
24
    font-size: .8em;
 
25
    text-decoration: none;
 
26
  }
 
27
 
 
28
  .banner {
 
29
    color: #303;
 
30
    background-color: #fef;
 
31
    padding: 5px;
 
32
  }
 
33
 
 
34
  .logo {
 
35
    float: left;
 
36
    font-size: 1.1em;
 
37
    padding-left: 5px;
 
38
  }
 
39
 
 
40
  .logo .version {
 
41
    font-size: .6em;
 
42
    padding-left: 1em;
 
43
  }
 
44
 
 
45
  .runner.running {
 
46
    background-color: yellow;
 
47
  }
 
48
 
 
49
 
 
50
  .options {
 
51
    text-align: right;
 
52
    font-size: .8em;
 
53
  }
 
54
 
 
55
 
 
56
 
 
57
 
 
58
  .suite {
 
59
    border: 1px outset gray;
 
60
    margin: 5px 0;
 
61
    padding-left: 1em;
 
62
  }
 
63
 
 
64
  .suite .suite {
 
65
    margin: 5px;
 
66
  }
 
67
 
 
68
  .suite.passed {
 
69
    background-color: #dfd;
 
70
  }
 
71
 
 
72
  .suite.failed {
 
73
    background-color: #fdd;
 
74
  }
 
75
 
 
76
  .spec {
 
77
    margin: 5px;
 
78
    padding-left: 1em;
 
79
    clear: both;
 
80
  }
 
81
 
 
82
  .spec.failed, .spec.passed, .spec.skipped {
 
83
    padding-bottom: 5px;
 
84
    border: 1px solid gray;
 
85
  }
 
86
 
 
87
  .spec.failed {
 
88
    background-color: #fbb;
 
89
    border-color: red;
 
90
  }
 
91
 
 
92
  .spec.passed {
 
93
    background-color: #bfb;
 
94
    border-color: green;
 
95
  }
 
96
 
 
97
  .spec.skipped {
 
98
    background-color: #bbb;
 
99
  }
 
100
 
 
101
  .messages {
 
102
    border-left: 1px dashed gray;
 
103
    padding-left: 1em;
 
104
    padding-right: 1em;
 
105
  }
 
106
 
 
107
  .passed {
 
108
    background-color: #cfc;
 
109
    display: none;
 
110
  }
 
111
 
 
112
  .failed {
 
113
    background-color: #fbb;
 
114
  }
 
115
 
 
116
  .skipped {
 
117
    color: #777;
 
118
    background-color: #eee;
 
119
    display: none;
 
120
  }
 
121
 
 
122
 
 
123
  /*.resultMessage {*/
 
124
    /*white-space: pre;*/
 
125
  /*}*/
 
126
 
 
127
  .resultMessage span.result {
 
128
    display: block;
 
129
    line-height: 2em;
 
130
    color: black;
 
131
  }
 
132
 
 
133
  .resultMessage .mismatch {
 
134
    color: black;
 
135
  }
 
136
 
 
137
  .stackTrace {
 
138
    white-space: pre;
 
139
    font-size: .8em;
 
140
    margin-left: 10px;
 
141
    max-height: 5em;
 
142
    overflow: auto;
 
143
    border: 1px inset red;
 
144
    padding: 1em;
 
145
    background: #eef;
 
146
  }
 
147
 
 
148
  .finished-at {
 
149
    padding-left: 1em;
 
150
    font-size: .6em;
 
151
  }
 
152
 
 
153
  &.show-passed .passed,
 
154
  &.show-skipped .skipped {
 
155
    display: block;
 
156
  }
 
157
 
 
158
  #jasmine_content {
 
159
    position:fixed;
 
160
    right: 100%;
 
161
  }
 
162
 
 
163
  .runner {
 
164
    border: 1px solid gray;
 
165
    display: block;
 
166
    margin: 5px 0;
 
167
    padding: 2px 0 2px 10px;
 
168
  }
 
169
}