study-system/client/styles.css
Camden Dixie O'Brien 10a7fe5c82 Remove refreshing indicator from ActivitiesView
I've decided I'm going to add an indicator for when the client is
disconnected so the indicator would be pretty redundant (and it
requires a bunch of code to implement).
2025-03-02 15:14:43 +00:00

30 lines
613 B
CSS

.card-container {
background-color: mix(@theme_base_color, @theme_bg_color, 0.7);
padding: 6px;
}
.card {
border: 1px solid alpha(@theme_fg_color, 0.2);
box-shadow: 0 1px 2px alpha(black, 0.15);
background-color: @theme_bg_color;
padding: 12px 16px;
}
.activity-subject {
font-weight: bold;
}
.activity-priority {
color: alpha(@theme_fg_color, 0.6);
}
/*
* The visual center (i.e. the center of the clock) of the
* "appointment-new-symbolic" icon is slightly displaced from the
* center of the actual image, so tweak it here.
*/
.log-session-button image {
margin-top: -2px;
margin-left: 3px;
}