1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/**
* @file app-min.css
* @brief Application minimal style, GTK+ >= 3.19 required
* @author Shengyu Zhang <i@silverrainz.me>
* @version 0.06.2
* @date 2016-05-24
*/
/* Header bar {{{1 */
.sui-nocsd-header-bar {
padding: 2px;
}
/* Side bar {{{1 */
.sui-side-bar-item > * {
margin-bottom: 6px
}
.sui-side-bar-item > *:last-child {
margin-bottom: 0px
}
.sui-side-bar-item > * > *{
margin-left: 6px
}
.sui-side-bar-item > * > *:last-child {
margin-left: 0px
}
.sui-side-bar-item {
padding: 10px;
}
.sui-message-count-label {
color: @sui_message_counter_text_color;
background-color: @sui_message_counter_bg_color;
font-weight: bold;
font-size: 0.8em;
border-radius: 10px;
min-width: 10px;
padding: 2px 5px 1px;
}
.sui-message-count-label.highlighted {
background-color: @sui_highlighted_message_counter_bg_color;
}
/* Buffer {{{1 */
.sui-title {}
.sui-subtitle {
opacity: 0.5
}
.sui-buffer-topic {
margin: 6px;
}
.sui-url-content {
margin-left: 4px;
padding-left: 4px;
border-left-style: solid;
border-left-width: 4px;
border-left-color: @sui_message_list_bg_color1;
}
.sui-message-tool-bar {
margin: 6px;
}
.sui-message-tool-bar > * {
margin-top: 4px;
}
/* Misc {{{1 */
.sui-panel {
padding: 6px;
}
/* vim: se fdm=marker: */
|