mirror of
https://github.com/HeyPuter/puter.git
synced 2026-09-23 21:56:57 +00:00
merge
This commit is contained in:
+69
-2
@@ -3538,6 +3538,7 @@ label {
|
||||
}
|
||||
|
||||
#storage-bar {
|
||||
float: left;
|
||||
height: 15px;
|
||||
background-color: #dbe3ef;
|
||||
border-top-left-radius: 3px;
|
||||
@@ -3545,12 +3546,20 @@ label {
|
||||
width: 0;
|
||||
}
|
||||
|
||||
#storage-bar-host {
|
||||
float: left;
|
||||
height: 15px;
|
||||
background-color: #dbe3ef9c;
|
||||
border-top-left-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
#storage-used-percent {
|
||||
position: absolute;
|
||||
left: calc(50% - 20px);
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
width: 40px;
|
||||
width: 100%;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
@@ -3710,3 +3719,61 @@ label {
|
||||
background: #04AA6D;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.session-manager-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.session-widget {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 10px;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 4px;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.session-widget-uuid {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: #9c185b;
|
||||
}
|
||||
|
||||
.session-widget-meta {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
max-height: 100px;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.session-widget-meta-entry {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.session-widget-meta-key {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
flex-basis: 40%;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.session-widget-meta-value {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.session-widget-actions {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 10px;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
Reference in New Issue
Block a user