1
0
Fork 0

Reduce column and status entry padding.

This commit is contained in:
Nicolas Perriault 2017-05-14 12:00:27 +02:00
parent 7ace73ed83
commit 60ba13158d
No known key found for this signature in database
GPG Key ID: DA5E4C83904F7A2A
1 changed files with 14 additions and 5 deletions

View File

@ -37,6 +37,11 @@ body {
/* Columns */ /* Columns */
.column {
padding-left: 5px;
padding-right: 5px;
}
.column .panel { .column .panel {
min-height: calc(100vh - 20px); min-height: calc(100vh - 20px);
max-height: calc(100vh - 20px); max-height: calc(100vh - 20px);
@ -53,11 +58,15 @@ body {
.timeline { .timeline {
overflow-y: auto; overflow-y: auto;
overflow-x: hidden; overflow-x: hidden;
max-height: calc(100vh - 65px); max-height: calc(100vh - 60px);
overflow: hidden; overflow: hidden;
overflow-y: scroll; overflow-y: scroll;
} }
.timeline > .list-group-item {
padding: 8px 12px;
}
#favorite-timeline, #favorite-timeline,
#local-timeline, #local-timeline,
#global-timeline { #global-timeline {
@ -164,7 +173,7 @@ li.load-more {
.status .username, .status .username,
.current-user .username { .current-user .username {
font-weight: bold; font-weight: bold;
margin-left: 65px; margin-left: 60px;
margin-bottom: 4px; margin-bottom: 4px;
} }
@ -217,7 +226,7 @@ li.load-more {
} }
.status-text { .status-text {
margin-left: 65px; margin-left: 60px;
color: #efefef; color: #efefef;
cursor: pointer; cursor: pointer;
} }
@ -244,8 +253,8 @@ li.load-more {
/* Status actions */ /* Status actions */
.actions { .actions {
margin-left: 65px; margin-left: 60px;
width: calc(100% - 65px); width: calc(100% - 60px);
} }
.actions > .btn { .actions > .btn {