File: storage.scss

package info (click to toggle)
cockpit 337-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 36,232 kB
  • sloc: javascript: 47,090; python: 38,766; ansic: 35,470; xml: 6,048; sh: 3,413; makefile: 614
file content (309 lines) | stat: -rw-r--r-- 7,783 bytes parent folder | download | duplicates (2)
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
/*
 * This file is part of Cockpit.
 *
 * Copyright (C) 2015 Red Hat, Inc.
 *
 * Cockpit is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 2.1 of the License, or
 * (at your option) any later version.
 *
 * Cockpit is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Cockpit; If not, see <https://www.gnu.org/licenses/>.
 */
@use "ct-card";
@use "page";
@use "table";
@use "journal";
@use "global-variables" as *;
@use "@patternfly/patternfly/components/Card/card.scss";
@use "@patternfly/patternfly/components/Progress/progress.scss";
@use "@patternfly/patternfly/utilities/Flex/flex.scss";
@use "@patternfly/patternfly/utilities/Text/text.scss";
@use "@patternfly/patternfly/utilities/Alignment/alignment.scss";

#storage .pf-v6-c-card {
  @extend .ct-card;
}

// Only used in iSCSI dialog
.dialog-select-row-table {
  inline-size: 100%;

  td {
    text-align: start;
    padding-block: 0.75em;
    padding-inline: 0;
    vertical-align: top;
    border: 1px solid #d1d1d1;

    &:first-child {
      border-inline-end-width: 0;
    }

    &:last-child {
      border-inline-start-width: 0;
    }
  }

  th {
    font-weight: var(--pf-t--global--font--weight--body--bold);
    text-align: start;
    color: var(--pf-t--global--text--color--regular);
    padding-block: 0.75em;
    padding-inline: 0;
  }

  td, th {
    &:first-child {
      padding-inline-start: 0.75em;
    }

    &:last-child {
      padding-inline-end: 0.75em;
    }
  }
}

div.progress {
  inline-size: 100%;
  block-size: var(--pf-t--global--font--size--xs);
}

td.job-description {
  inline-size: 50%;
}

td.job-action {
  text-align: end;
}

.storage-graph {
  block-size: 180px;
}

.dialog-item-tooltip {
  margin-inline-start: 5px;
  padding: 0;
  white-space: nowrap;
}

.modal-footer-teardown {
  text-align: start;
}

.modal-footer-teardown td {
  vertical-align: baseline;
}

* + .modal-footer-teardown {
  padding-block-start: var(--pf-t--global--spacer--xl);
}

// FIXME: This is visual only; it needs to be fixed for a11y reasons, likely at the JSX level
.indent {
  padding-inline-start: calc(var(--pf-t--global--spacer--md) * min(var(--level, 0), 10));
  white-space: nowrap;
}

.widest-title {
  visibility: hidden;
  block-size: 0;
}

.sigkey-hash {
  font-family: monospace;
  font-size: 140%;
}

.delete-resource-dangerous {
  color: var(--pf-t--global--color--status--danger--default);
}

.pf-v6-c-modal-box .slot-warning {
  color: var(--pf-t--global--color--status--danger--default);
}

// This is needed to avoid showing scrollbar in dialog
.size-slider {
  padding-block-end: var(--pf-t--global--spacer--xs);
}

.storage-alert-actions button {
  margin-block: 0.5rem 0.2rem;
  margin-inline: 0 0.2rem;
}

// FIXME: There's probably a better way to do this.
// We wrap the data list row with a label to make checkboxes clickable from the whole row
// we need this HACK in order to make alignRight property take effect
.data-list-row-checkbox-label {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

.crypto-keyslots-list {
  border: none;
}

.pf-v6-c-description-list .pf-v6-c-progress {
  max-inline-size: 30ch;
}

.usage-bar {
  --bg-color: var(--pf-t--chart--theme--colorscales--blue--colorscale--100);
  display: inline-block;
  inline-size: 20em;
  block-size: 1rem;
  margin-inline-start: 1rem;
  position: relative;
  inset-block-start: 0.15rem; // XXX - center it
  inset-inline-start: 0;

  &-short {
    inline-size: 3.5rem;
  }

  &-danger {
    --bg-color: var(--pf-t--chart--global--danger--color--100);
  }

  &-empty {
    --bg-color: none;
  }

  &-indicator {
    display: inline-block;
    background: var(--bg-color);
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    block-size: 100%;
  }

  // Hatched effect for progressbars that are parts of a group, but not the main
  &-other {
    // Use the page's default background color
    --bg-light: transparent;
    // Alternate with the used color of the progress bar
    --bg-dark: var(--bg-color);
    // Repeat a gradient with hard stops, a perfect slant, and a consistency
    // with all "other" hatched backgrounds
    background: repeating-linear-gradient(
      -45deg,
      var(--bg-light),
      var(--bg-light) 25%,
      var(--bg-dark) 25%,
      var(--bg-dark) 50%,
      var(--bg-light) 50%
    ) top left;
    background-size: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm);
    // Overlay at 1/3  to mix the light and dark against the through color
    opacity: 0.333;
  }

  &::before {
    display: inline-block;
    content: "";
    background: var(--bg-color);
    opacity: 0.2;
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
  }
}

.storage-pvs-box {
  border: 1px solid var(--pf-t--global--border--color--nonstatus--purple--default);
  background: var(--pf-t--global--color--nonstatus--purple--default);
  color: var(--pf-t--global--text--color--on-highlight);
  border-radius: var(--pf-t--global--border--radius--tiny);
}

.storage-pvs-pv-box {
  padding: var(--pf-t--global--spacer--sm);

  &:not(:last-child) {
    border-block-end: 1px solid var(--pf-t--global--border--color--nonstatus--purple--clicked);
  }
}

.storage-pvs-pv-box-dev {
  font-size: var(--pf-t--global--font--size--sm);
  font-weight: var(--pf-t--global--font--weight--400);
}

.storage-stripe-box {
  border: 1px solid var(--pf-t--global--border--color--nonstatus--purple--default);
  background: var(--pf-t--global--color--nonstatus--purple--default);
  color: var(--pf-t--global--text--color--on-highlight);
  border-radius: var(--pf-t--global--border--radius--tiny);
}

.storage-stripe-pv-box {
  padding: var(--pf-t--global--spacer--sm);
}

.storage-stripe-pv-box:not(:last-child) {
  border-block-end: 1px solid var(--pf-t--global--border--color--nonstatus--purple--clicked);
}

.storage-stripe-pv-box-dev {
  font-size: var(--pf-t--global--font--size--sm);
  font-weight: var(--pf-t--global--font--weight--400);
}

.remove-border {
  border-block-end: 0 !important;
}

.ct-clickable-card:hover {
    background: var(--pf-t--global--background--color--primary--hover);
    cursor: pointer;
}

.storage-menu-title {
    text-align: start;
    white-space: nowrap !important;
}

.pf-v6-c-table__tbody .storage-device-icon {
  --icon-size: 18px;
  // Ensure the icon's cell size is as minimal as the icon allows
  // (WebKit needs a size; 0 doesn't work for it)
  inline-size: 1px;
  // Remove unnecessary padding
  padding-inline-end: 0;

  > svg {
    // Bump the icon down to align with text, based on the difference between icon and text size, just for the top
    inset-block-start: calc((var(--pf-t--global--spacer--md) * var(--pf-t--global--font--line-height--body) - var(--icon-size)) / 2);
    position: relative;

    path {
      fill: var(--pf-t--global--text--color--subtle);
    }
  }
}

.storage-size-column {
    text-align: end;
    white-space: nowrap !important;
}

.storage-size-column-header {
    text-align: end;
    // Align the "Size" header with the text of the usage bars.
    // var(--pf-v6-c-table--cell--PaddingInlineEnd): padding of compact td cells
    // 3.5rem: width of short progress bars
    // 1rem: margin between text and progress bar
    padding-inline-end: calc(var(--pf-v6-c-table--cell--PaddingInlineEnd) + 3.5rem + 1rem) !important;
}