2021-03-24 10:49:25 +00:00
|
|
|
/* Login */
|
|
|
|
.login {
|
|
|
|
min-width: 250px;
|
|
|
|
}
|
|
|
|
|
2021-02-12 23:16:16 +00:00
|
|
|
.title-header {
|
2021-02-04 19:25:29 +00:00
|
|
|
font-size: 36px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-02-12 23:16:16 +00:00
|
|
|
|
|
|
|
.content {
|
|
|
|
background-color: @theme_base_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content:backdrop {
|
|
|
|
background-color: @theme_unfocused_base_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.send-message-area {
|
|
|
|
margin: 6px;
|
|
|
|
}
|
2021-02-23 15:10:45 +00:00
|
|
|
|
|
|
|
/* Sidebar */
|
|
|
|
.sidebar row .dim-label {
|
|
|
|
padding: 6px 12px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar row .bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-04-28 12:57:33 +00:00
|
|
|
.sidebar indent {
|
|
|
|
-gtk-icon-size: 0px;
|
2021-02-23 15:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar row .notification_count {
|
|
|
|
/* TODO: use correct color variable */
|
|
|
|
background-color: #555;
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 0.8em;
|
|
|
|
border-radius: 10px;
|
|
|
|
min-width: 0.7em;
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar row .highlight {
|
|
|
|
/* TODO: use correct color variable */
|
|
|
|
background-color: @theme_selected_bg_color;
|
|
|
|
}
|
|
|
|
|
2021-04-27 11:03:58 +00:00
|
|
|
/* Content */
|
|
|
|
.codeview {
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 6px;
|
|
|
|
font-family: monospace;
|
|
|
|
background-color: @text_view_bg;
|
|
|
|
color: @theme_text_color;
|
|
|
|
}
|