Skip to content

Commit

Permalink
better behavior for comment field (#105)
Browse files Browse the repository at this point in the history
* better behavior for comment field
* removed min-height

Signed-off-by: Artem Anufrij <artem.anufrij@live.de>
  • Loading branch information
artemanufrij authored and juliusknorr committed May 1, 2017
1 parent 491a734 commit 7fb0d23
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,6 @@ button:hover {
*/

#card-header {
min-height: 44px;
}

#card-header h2 {
Expand All @@ -436,7 +435,9 @@ button:hover {
}

#card-meta {
padding-top: 0;
height: 100%;
display: flex;
flex-direction: column;
}

#card-dates {
Expand All @@ -452,21 +453,21 @@ button:hover {
#card-dates span {
}

#card-description {
height: 100%;
display: flex;
flex-direction: column;
}

#card-description > h3 {
border-bottom: 1px solid #333333;
font-weight: 600;
font-size: 10pt;
padding: 5px;
}

.save-indicator {
background-color: #009900;
color: #ffffff;
border-radius: 3px;
float: right;
padding: 1px 10px;
font-size: 8pt !important;
display: none;
#card-description > div {
height: 100%;
}

#card-description textarea {
Expand All @@ -481,6 +482,16 @@ button:hover {
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,
.card-block {
padding: 15px;
Expand All @@ -506,6 +517,8 @@ button:hover {
border-left: none;
width: 500px;
border-left: 1px solid #eeeeee;
display:flex;
flex-direction: column;
}

#app-sidebar.details-visible {
Expand Down

0 comments on commit 7fb0d23

Please sign in to comment.