-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathstyles.css
151 lines (120 loc) · 2.01 KB
/
styles.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
footer .navbar .nav {
display: inline-block;
float: none;
vertical-align: top;
}
.brand {
margin-top: 10px;
max-width: 100px;
float:left
}
.pull-down {
}
.pull-down-sm {
}
.pull-up { margin-bottom: 30px;}
table {
width: 100%;
table-layout: fixed;
}
.table td {
vertical-align: middle;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 200px;
}
.label {
font-size: 11px;
letter-spacing: .08em;
color: #fff;
}
.fw-link {
display: inline-block;
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
color: white;
padding: 2px 5px;
border-radius: 3px;
box-shadow: 0px 1px 0px #aaa;
}
.fw-link:hover{
color:white;
opacity: .7;
}
.fw-link.WAITING:hover{
color:#1BB38D;
opacity: .7;
}
.READY{
background: #2E92F2;
}
.WAITING{
background: #1F62A2;
}
.FIZZLED{
background: #DB0051;
}
.COMPLETED{
background: #24C75A;
}
.RUNNING{
background: #F4B90B;
}
.RESERVED{
background: #BB8BC1;
}
.ARCHIVED{
background: #7F8287;
}
.DEFUSED{
background: #B7BCC3;
}
.PAUSED{
background: #FFCFCA;
}
.total{
color: #405063;
background: none;
font-weight: bold;
}
/* cytoscape tweaks from charris */
#cy {
width: 100%;
height : 500px;
border: 1px solid grey;
}
form.query input {
margin-bottom: 10px;
width: 18em;
}
form.query label {
display: inline-block;
vertical-align: super;
}
form.query button[type=submit] {
margin-left: 70px;
width: 256px;
}
.imgContainer{
float:left;
}
hr.myhrline{
margin:5px;
}
.wf-name strong {
display: inline-block;
max-width: 150px; /* Adjust maximum width as needed */
white-space: nowrap; /* Prevent text from wrapping */
overflow: hidden; /* Hide the overflowed part */
text-overflow: ellipsis; /* Show ellipsis for overflowed text */
vertical-align: bottom;
}
.wf-name {
text-decoration: none; /* Remove underline from the link */
}
.wf-name strong:hover {
cursor: pointer; /* Change cursor to pointer on hover */
}