forked from zendesk/demo_apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
111 lines (88 loc) · 1.2 KB
/
app.css
File metadata and controls
111 lines (88 loc) · 1.2 KB
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
h4, h5 {
border-bottom: 1px dotted #cccccc;
margin-top: 20px;
}
h4 {
font-size: 16px;
}
p {
margin: 10px 0 12px;
}
ul {
list-style-type: none;
}
.loading {
opacity: 0.5;
}
.loading_spinner {
display: none;
}
.parameters,
.create_app {
list-style: none;
margin: 0;
padding: 0;
li {
margin-top: 10px;
}
}
.navigation {
border-bottom: 1px dotted #cccccc;
margin-bottom: 8px;
.nav {
list-style: none;
margin-bottom: 14px;
li {
margin-right: 8px;
}
}
}
.installations {
li {
&:not(.enabled) {
color: #cccccc;
}
}
.delete {
color: red;
}
}
.available_apps,
.installations {
.inline {
float: left;
margin-bottom: 5px;
margin-right: 20px;
width: 300px;
}
}
.app_box {
padding: 8px 0 8px 55px;
position: relative;
&:before {
background-color: #95BE22;
content: "";
height: 70%;
left: 0;
position: absolute;
top: 15%;
width: 2px;
}
}
.installations {
li:not(.enabled) {
.app_box:before {
background-color: red;
}
}
}
.app_inline_logo {
height: 70%;
left: 5px;
position: absolute;
top: 15%;
}
.scroll_list {
max-height: 400px;
overflow-y: scroll;
}