forked from kaspth/linked_ticket_app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
82 lines (68 loc) · 1003 Bytes
/
app.css
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.control-group {
margin-bottom:10px;
}
.centered {
text-align: center;
}
.requester_fields {
display: none;
}
.assignee_fields {
display: none;
}
select {
display: block;
border: 1px solid #CCC;
}
.token_list {
margin-bottom:10px;
}
.token_list .token {
white-space: normal;
}
div.spinner
{
display: none;
width:100px;
height: 100px;
position: absolute;
top: 40%;
left: 50%;
background:app-asset-url("spinner.gif") no-repeat center center;
text-align:center;
padding:10px;
margin-left: -50px;
margin-top: -50px;
z-index:2;
overflow: auto;
}
.text-warning {
color: #a94442;
font-size: 95%;
}
.relations {
text-align: left;
width: 100%;
margin-bottom: 10px;
}
.relations TD {
padding: 5px;
border: 1px solid #ddd;
}
.header {
background-color: #f7f7f7;
}
.large-id {
padding-top: 5px;
font-size: large;
}
.null {
color: lightgrey;
}
.link:hover {
cursor: pointer;
background-color: #f7f7f7;
}
.block {
display: block;
}