Skip to content

Commit

Permalink
Preventing text from wrapping around checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
userify-Aditya Bharadwaj committed Jun 20, 2018
1 parent eb924fe commit fe2a54d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 17 deletions.
38 changes: 21 additions & 17 deletions orchestra/static/dist/main.css
Expand Up @@ -2325,28 +2325,32 @@ a.logo {
margin-top: 70px; }
.list-by-status h4 {
padding-bottom: 10px; }
.list-by-status .todo input[type=checkbox] {
transform: scale(1.1); }
.list-by-status .todo label {
align-items: end;
display: inline; }
.list-by-status .todo__role {
font-weight: 500;
padding-left: 5px; }
.list-by-status .todo__dates {
padding-left: 5px;
font-style: italic;
color: #999; }
.list-by-status .todo__dates-danger {
color: #a94442; }
.list-by-status .todo__dates-separator {
font-style: normal; }
.list-by-status .todo {
margin-left: 18px; }
.list-by-status .todo input[type=checkbox] {
transform: scale(1.1);
margin-left: -22px; }
.list-by-status .todo label {
align-items: end;
display: inline; }
.list-by-status .todo__role {
font-weight: 500;
padding-left: 5px; }
.list-by-status .todo__dates {
padding-left: 5px;
font-style: italic;
color: #999; }
.list-by-status .todo__dates-danger {
color: #a94442; }
.list-by-status .todo__dates-separator {
font-style: normal; }
.list-by-status .angular-ui-tree-node {
padding-top: 5px;
padding-bottom: 0; }
.list-by-status .fa-circle-o {
font-size: xx-small;
vertical-align: middle; }
vertical-align: middle;
margin-left: -18px; }
.list-by-status .angular-ui-tree-handle > label {
cursor: pointer; }
.angular-ui-tree-empty, .angular-ui-tree-dropzone {
Expand Down
3 changes: 3 additions & 0 deletions orchestra/static/orchestra/todos/todo-checklist.scss
Expand Up @@ -5,8 +5,10 @@
padding-bottom: 10px;
}
.todo {
margin-left: 18px;
input[type=checkbox] {
transform: scale(1.1);
margin-left: -22px;
}
label {
align-items: end;
Expand Down Expand Up @@ -37,6 +39,7 @@
.fa-circle-o {
font-size: xx-small;
vertical-align: middle;
margin-left: -18px;
}

.angular-ui-tree-handle > label{
Expand Down

0 comments on commit fe2a54d

Please sign in to comment.