PluginProbe
Disk Usage Insights / 1.8
Disk Usage Insights v1.8
trunk 1.0 1.10 1.11 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9
disk-usage-insights / res / css / styles.css

styles.css in Disk Usage Insights 1.8, at res/css/styles.css

143 lines 3.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .DUI-panel {
2 background-color: white;
3 margin-right: 10px;
4 margin-bottom: 10px;
5 border: 1px solid #d2d2d2;
6 }
7 @media only screen and (min-width: 1400px) {
8 .DUI-panel--TOP10 {
9 max-width:49%;
10 width:49%;
11 float:left;
12 }
13 }
14
15 @media only screen and (min-width: 1024px) {
16 .show-desktop { display: block; }
17 }
18 @media only screen and (max-width: 1023px) {
19 .show-desktop { display: none; }
20 }
21
22 .DUI-panel__headline {
23 padding: 6px 10px 6px 10px;
24 border-bottom: 1px solid #e0e0e0;
25 font-weight: bold;
26 }
27 .DUI-panel__headline-actions {
28 float: right;
29 }
30 .DUI-panel__content {
31 padding: 6px;
32 }
33 .DUI-panel__content--title {
34 padding: 20px;
35 }
36
37 .DUI-panel--error {
38 border-color: #e0b4b4;
39 background-color: red;
40 color: white;
41 }
42 .DUI-panel--error a {
43 color: white;
44 }
45
46 .DUI-table {
47 _border: 1px solid #aaa;
48 font-size: 1.0em;
49 color: black;
50 }
51 .DUI-table td { overflow-wrap: anywhere; }
52 .DUI-table thead th { border-bottom: 1px solid #eee; white-space: nowrap; }
53 .DUI-table tbody tr:nth-child(odd) { background-color: white; }
54 .DUI-table tbody tr:nth-child(even) { background-color: white; }
55 .DUI-table tbody tr:hover { background-color: #eee; }
56 .DUI-table__col--number { text-align: right; white-space: nowrap; }
57 .DUI-table__col--grow { width: 100%; }
58
59 /* Stacked Bar Chart */
60
61 .stackedbarchart {
62 display: flex;
63 text-align: center;
64 }
65 .stackedbarchart__bar {
66 display: flex;
67 align-items: center;
68 justify-content: center;
69 font-weight: bold;
70 white-space: nowrap;
71 word-break: keep-all;
72 overflow: hidden;
73 padding: 5px;
74 }
75
76 .stackedbarchart__legend {
77 display:grid;
78 grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
79 gap: 5px;
80 }
81 .stackedbarchart__legendcolor {
82 width: 20px;
83 height: 10px;
84 display: inline-block;
85 margin-right: 5px;
86 border: 1px solid black;
87 }
88
89 .stackedbarchart__color--0 { background-color: rgba(255, 180, 50, .75); }
90 .stackedbarchart__color--1 { background-color: rgba(255, 220, 90, .75); }
91 .stackedbarchart__color--2 { background-color: rgba(100, 210, 80, .75); }
92 .stackedbarchart__color--3 { background-color: rgba(90, 165, 255, .75); }
93 .stackedbarchart__color--4 { background-color: hsla(0, 0%, 71%, .75); }
94 .stackedbarchart__color--5 { background-color: rgba(170, 90, 240, .75); }
95 .stackedbarchart__color--6 { background-color: hsla(0, 0%, 43%, .75); }
96 .stackedbarchart__color--7 { background-color: hsla(40, 26%, 55%, .75); }
97 .stackedbarchart__color--8 { background-color: rgba(240, 50, 50, .75); }
98 .stackedbarchart__color--9 { background-color: rgba(50, 200, 200, .75); }
99
100 .color-cycle {
101 animation: color-cycle-animation 10s infinite;
102 }
103
104 @keyframes color-cycle-animation {
105 0% { color: red; }
106 16.66% { color: orange; }
107 33.33% { color: yellow; }
108 50% { color: green; }
109 66.66% { color: blue; }
110 83.33% { color: purple; }
111 100% { color: red; }
112 }
113
114 .vbarchart {
115 display:flex;
116 align-items: flex-end;
117 height:50px;
118 width:100%;
119 }
120 .vbarchart__bar {
121 display: inline-block;
122 min-width: 10px;
123 max-width: 50px;
124 flex-grow: 1;
125 margin-right: 5px;
126 }
127 .vbarchart__legendcolor {
128 width: 20px;
129 height: 10px;
130 display: inline-block;
131 margin-right: 5px;
132 border: 1px solid black;
133 }
134 .vbarchart__color--0 { background-color: rgba(255, 180, 50, .75); }
135 .vbarchart__color--1 { background-color: rgba(255, 220, 90, .75); }
136 .vbarchart__color--2 { background-color: rgba(100, 210, 80, .75); }
137 .vbarchart__color--3 { background-color: rgba(90, 165, 255, .75); }
138 .vbarchart__color--4 { background-color: hsla(0, 0%, 71%, .75); }
139 .vbarchart__color--5 { background-color: rgba(170, 90, 240, .75); }
140 .vbarchart__color--6 { background-color: hsla(0, 0%, 43%, .75); }
141 .vbarchart__color--7 { background-color: hsla(40, 26%, 55%, .75); }
142 .vbarchart__color--8 { background-color: rgba(240, 50, 50, .75); }
143 .vbarchart__color--9 { background-color: rgba(50, 200, 200, .75); }