Update style.css
Browse files
style.css
CHANGED
|
@@ -126,12 +126,14 @@ body {
|
|
| 126 |
display: flex;
|
| 127 |
flex-direction: column;
|
| 128 |
margin-right: 10px;
|
|
|
|
| 129 |
}
|
| 130 |
|
| 131 |
.email-sender {
|
| 132 |
font-weight: bold;
|
| 133 |
color: #202124;
|
| 134 |
margin-bottom: 2px;
|
|
|
|
| 135 |
}
|
| 136 |
|
| 137 |
.email-time {
|
|
@@ -143,6 +145,12 @@ body {
|
|
| 143 |
font-weight: 500;
|
| 144 |
color: #202124;
|
| 145 |
margin-bottom: 4px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 146 |
}
|
| 147 |
|
| 148 |
.email-snippet {
|
|
@@ -151,6 +159,8 @@ body {
|
|
| 151 |
white-space: nowrap;
|
| 152 |
overflow: hidden;
|
| 153 |
text-overflow: ellipsis;
|
|
|
|
|
|
|
| 154 |
}
|
| 155 |
|
| 156 |
/* Webcam Overlay Styles */
|
|
@@ -402,4 +412,12 @@ body {
|
|
| 402 |
font-size: 0.9em;
|
| 403 |
padding: 10px;
|
| 404 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 405 |
}
|
|
|
|
| 126 |
display: flex;
|
| 127 |
flex-direction: column;
|
| 128 |
margin-right: 10px;
|
| 129 |
+
min-width: 150px;
|
| 130 |
}
|
| 131 |
|
| 132 |
.email-sender {
|
| 133 |
font-weight: bold;
|
| 134 |
color: #202124;
|
| 135 |
margin-bottom: 2px;
|
| 136 |
+
font-size: 14px;
|
| 137 |
}
|
| 138 |
|
| 139 |
.email-time {
|
|
|
|
| 145 |
font-weight: 500;
|
| 146 |
color: #202124;
|
| 147 |
margin-bottom: 4px;
|
| 148 |
+
font-size: 15px;
|
| 149 |
+
flex: 1;
|
| 150 |
+
white-space: nowrap;
|
| 151 |
+
overflow: hidden;
|
| 152 |
+
text-overflow: ellipsis;
|
| 153 |
+
max-width: 500px;
|
| 154 |
}
|
| 155 |
|
| 156 |
.email-snippet {
|
|
|
|
| 159 |
white-space: nowrap;
|
| 160 |
overflow: hidden;
|
| 161 |
text-overflow: ellipsis;
|
| 162 |
+
flex: 2;
|
| 163 |
+
max-width: 400px;
|
| 164 |
}
|
| 165 |
|
| 166 |
/* Webcam Overlay Styles */
|
|
|
|
| 412 |
font-size: 0.9em;
|
| 413 |
padding: 10px;
|
| 414 |
}
|
| 415 |
+
|
| 416 |
+
.email-subject {
|
| 417 |
+
max-width: 200px;
|
| 418 |
+
}
|
| 419 |
+
|
| 420 |
+
.email-snippet {
|
| 421 |
+
max-width: 150px;
|
| 422 |
+
}
|
| 423 |
}
|