-
Notifications
You must be signed in to change notification settings - Fork 32
/
styles.css
127 lines (105 loc) · 2.56 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
.lifecycle-enable-overflow > .no-overflow {
overflow: initial;
}
body.path-admin-tool-lifecycle .wf-secondary-info,
.lifecycle-table span.workflow_displaytitle,
.lifecycle-table span.secondary-info {
color: #777;
font-size: .9em;
padding: 0.5em;
}
.lifecycle-highlighted {
background-color: rgba(0, 178, 255, 0.15);
}
span.tool_lifecycle-hint {
text-decoration: underline dashed #444;
}
/* Workflowoverview */
#lifecycle-workflow-details .wf-wrapper {
display: flex;
flex-direction: column;
align-items: center;
padding: 1em 0;
}
#lifecycle-workflow-details .workflow-item,
#lifecycle-workflow-details .workflow-trigger {
text-align: center;
border: 1px solid #aaa;
border-radius: 8px;
min-width: 200px;
}
#lifecycle-workflow-details .workflow-item {
box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.2);
}
#lifecycle-workflow-details .workflow-trigger {
max-width: 300px;
margin: 8px;
}
#lifecycle-workflow-details .wf-header {
border-bottom: 1px solid #aaa;
line-height: 1;
display: flex;
padding: 8px 4px 8px 16px;
align-items: center;
}
#lifecycle-workflow-details .wf-header-text {
flex: auto 1 1;
}
#lifecycle-workflow-details .wf-actionmenu {
margin-left: 16px;
}
#lifecycle-workflow-details .wf-content {
padding: 8px 12px;
}
#lifecycle-workflow-details .wf-arrow {
height: 32px;
width: 0;
border-left: 1px solid #777;
}
#lifecycle-workflow-details .wf-arrow::after {
display: block;
height: 8px;
width: 8px;
content: '';
border: 1px solid #777;
border-top: none;
border-right: none;
transform: translate(-4.5px, 23px) rotate(-45deg);
}
#lifecycle-workflow-details .workflow.wf-trigger-wrapper {
display: inline-flex;
margin-top: -8px;
flex-wrap: wrap;
justify-content: center;
}
#lifecycle-workflow-details .workflow-step.wf-selected {
border: 2px solid black;
background-color: rgba(0, 178, 255, 0.15);
}
#lifecycle-workflow-details .wf-wrapper {
flex: 60% 1 1;
}
#lifecycle-workflow-details .courses-table {
flex: 40% 1 1;
border: 1px solid #bbb;
border-right: none;
}
#lifecycle-workflow-details .bar {
border: 1px solid #dee2e6;
border-right: none;
}
#lifecycle-workflow-details .close-button {
cursor: pointer;
padding: 0 12px;
border-right: 1px solid #dee2e6;
display: inline-block;
font-size: 1.75em;
}
#lifecycle-workflow-details .close-button:hover {
text-decoration: none;
}
#lifecycle-workflow-details .edit-pen {
position: absolute;
top: 1em;
right: 1em;
}