Implement improvements suggested by Ryan.

This commit is contained in:
Danila Fedorin 2018-12-10 23:24:17 -08:00
parent 42126c1489
commit 8338eef381

View File

@ -3,6 +3,8 @@ $primary-color: #53C0FA;
$primary-color-highlight: #4298C7; $primary-color-highlight: #4298C7;
$primary-color-light: #9FDBFB; $primary-color-light: #9FDBFB;
$active-input-color: white; $active-input-color: white;
$background-color: #fafafa;
$background-color-dark: darken($background-color, 4%);
$transition-duration: .125s; $transition-duration: .125s;
$inactive-input-color: darken($active-input-color, 3%); $inactive-input-color: darken($active-input-color, 3%);
@ -16,7 +18,7 @@ html, body {
body { body {
font-family: 'Open Sans', sans-serif; font-family: 'Open Sans', sans-serif;
margin: 0px; margin: 0px;
background-color: #fbfbfb; background-color: $background-color;
} }
@mixin input-common { @mixin input-common {
@ -88,15 +90,9 @@ div.base-wrapper {
height: 100%; height: 100%;
div { div {
padding: 3px; padding: 5px;
box-sizing: border-box; box-sizing: border-box;
} }
h2 {
padding-bottom: 5px;
margin-bottom: 5px;
border-bottom: 1px solid $inactive-input-border-color;
}
} }
/* /*
@ -117,7 +113,7 @@ div.room-wrapper {
flex-grow: 1; flex-grow: 1;
display: flex; display: flex;
height: 100%; height: 100%;
flex-direction: column; flex-direction: column;
} }
/* /*
@ -143,17 +139,32 @@ div.events-wrapper {
} }
table.events-table { table.events-table {
border-collapse: collapse;
width: 100%;
td { td {
padding-left: 5px; padding: 5px;
vertical-align: top; vertical-align: top;
} }
td:nth-child(1) {
width: 0px;
white-space: nowrap;
}
tr:nth-child(2n) {
background-color: $background-color-dark;
}
} }
span.sender-wrapper { span.sender-wrapper {
border-radius: 2px; border-radius: 2px;
padding-left: 5px; padding-left: 5px;
padding-right: 5px; padding-right: 5px;
float: right; display: inline-block;
box-sizing: border-box;
text-align: center;
width: 100%;
} }
/** /**