better behavior for comment field (#105)

* better behavior for comment field
* removed min-height

Signed-off-by: Artem Anufrij <artem.anufrij@live.de>
This commit is contained in:
Artem Anufrij
2017-05-01 08:35:31 +02:00
committed by Julius Härtl
parent 491a73456b
commit 7fb0d2374d

View File

@@ -418,7 +418,6 @@ button:hover {
*/ */
#card-header { #card-header {
min-height: 44px;
} }
#card-header h2 { #card-header h2 {
@@ -436,7 +435,9 @@ button:hover {
} }
#card-meta { #card-meta {
padding-top: 0; height: 100%;
display: flex;
flex-direction: column;
} }
#card-dates { #card-dates {
@@ -452,6 +453,12 @@ button:hover {
#card-dates span { #card-dates span {
} }
#card-description {
height: 100%;
display: flex;
flex-direction: column;
}
#card-description > h3 { #card-description > h3 {
border-bottom: 1px solid #333333; border-bottom: 1px solid #333333;
font-weight: 600; font-weight: 600;
@@ -459,14 +466,8 @@ button:hover {
padding: 5px; padding: 5px;
} }
.save-indicator { #card-description > div {
background-color: #009900; height: 100%;
color: #ffffff;
border-radius: 3px;
float: right;
padding: 1px 10px;
font-size: 8pt !important;
display: none;
} }
#card-description textarea { #card-description textarea {
@@ -481,6 +482,16 @@ button:hover {
background-color: white; background-color: white;
} }
.save-indicator {
background-color: #009900;
color: #ffffff;
border-radius: 3px;
float: right;
padding: 1px 10px;
font-size: 8pt !important;
display: none;
}
#sidebar-header, #sidebar-header,
.card-block { .card-block {
padding: 15px; padding: 15px;
@@ -506,6 +517,8 @@ button:hover {
border-left: none; border-left: none;
width: 500px; width: 500px;
border-left: 1px solid #eeeeee; border-left: 1px solid #eeeeee;
display:flex;
flex-direction: column;
} }
#app-sidebar.details-visible { #app-sidebar.details-visible {