-
Notifications
You must be signed in to change notification settings - Fork 3
/
emby-custom.css
109 lines (93 loc) · 2.46 KB
/
emby-custom.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
.swagger-ui .opblock-tag div {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.swagger-ui .opblock-tag small {
display: grid;
margin-bottom: 2px;
margin-left: auto;
margin-right: 5px;
margin-top: -2px;
text-overflow: ellipsis;
white-space: normal;
}
.swagger-ui .opblock-tag small a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.swagger-ui .model-toggle {
-webkit-transform: rotate(90deg);
-webkit-transform-origin: 50% 50%;
-webkit-transition: -webkit-transform .15s ease-in;
cursor: pointer;
display: inline-block;
font-size: 10px;
margin: auto .3em auto .1em;
position: relative;
top: 1px;
transform: rotate(90deg);
transform-origin: 50% 50%;
transition: -webkit-transform .15s ease-in;
transition: transform .15s ease-in;
transition: transform .15s ease-in, -webkit-transform .15s ease-in;
}
.swagger-ui table.model tbody tr td:first-of-type {
padding: 0 0 2px 2em;
width: 120px;
}
.swagger-ui .model-toggle:after {
background: url("arrow.svg") no-repeat;
/*background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E") 50% no-repeat;*/
background-size: 100%;
content: "";
display: block;
height: 10px;
width: 10px;
}
.swagger-ui .model {
color: #3b4151;
font-family: Source Code Pro, monospace;
font-size: 12px;
font-weight: 600;
}
.swagger-ui .model-title {
color: #3f86d2;
font-size: 12px;
font-family: Source Code Pro, monospace;
font-weight: 700;
margin-right: .3em;
}
.swagger-ui div > .model-box { width: 100%; }
.swagger-ui .model-box {
background: rgba(0, 0, 0, .1);
border-radius: 4px;
display: inline-block;
padding: 10px;
}
.swagger-ui table.model tbody tr td:first-of-type { padding-top: 3px; }
.swagger-ui table.model tbody tr td {
padding-left: 12px;
padding-top: 3px;
}
.swagger-ui .prop-type { color: #b456b5; }
.swagger-ui .prop-format {
color: #a38d00;
font-weight: 600;
}
.swagger-ui .prop-details {
color: #6B6B6B;
font-style: italic;
font-weight: 500;
}
.swagger-ui .prop-enumvalues {
color: #1b9d38;
/*font-style: italic;*/
display: inline-block;
font-weight: 500;
}
.swagger-ui .prop > .prop-enum {
color: #a38d00;
display: inline;
}