73 lines
1.2 KiB
CSS
73 lines
1.2 KiB
CSS
/* Login */
|
|
.login {
|
|
min-width: 250px;
|
|
}
|
|
|
|
.title-header {
|
|
font-size: 36px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.content {
|
|
background-color: @theme_base_color;
|
|
}
|
|
|
|
.content:backdrop {
|
|
background-color: @theme_unfocused_base_color;
|
|
}
|
|
|
|
.send-message-area {
|
|
margin: 6px;
|
|
}
|
|
|
|
/* Sidebar */
|
|
.sidebar row .dim-label {
|
|
padding: 6px 12px;
|
|
font-size: 0.8em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sidebar row .bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.sidebar indent {
|
|
-gtk-icon-size: 0px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
/* Content */
|
|
.codeview {
|
|
border-radius: 5px;
|
|
padding: 6px;
|
|
font-family: monospace;
|
|
background-color: @text_view_bg;
|
|
color: @theme_text_color;
|
|
}
|
|
|
|
.message-entry > .view {
|
|
background-color: @theme_base_color;
|
|
border-radius: 5px;
|
|
border: 1px solid @borders;
|
|
padding: 6px;
|
|
}
|
|
|
|
.message-entry > .view:focus {
|
|
border: 2px solid @theme_selected_bg_color;
|
|
padding: 5px;
|
|
}
|