ref: master
public/stylesheets/tasks.scss
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
div.pending-tasks { padding: 10px; border: 1px solid #BFC2BC; margin-bottom: 20px; } #user .logged-in #pending-tasks-count { padding-left: 5px; padding-right: 5px; margin-left: 3px; text-decoration: none; background-color: #F57900; -moz-border-radius: 2px; -webkit-border-radius: 2px; -khtml-border-radius: 2px; border-radius: 2px; } .controller-tasks #content .task-list { margin: 0px; padding: 0px; } .controller-tasks #content .task-list ul { padding-left: 0px; list-style-type: none; } .task_box { overflow: hidden; position: relative; border: 1px solid #888; -moz-border-radius: 10px; -webkit-border-radius: 10px; -khtml-border-radius: 10px; border-radius: 10px; padding: 6px 4px 9px 4px; margin-top: 5px; background: #EEE; } .task_title { margin: 0px; display: block; line-height: 28px; font-size: 120%; } .task_date { color: gray; font-size: 12px; } .task_icon { float: left; margin-right: 10px; width: 50px; height: 50px; text-align: center; } .task_decisions { float: right; padding-right: 5px; } .task_information { line-height: 18px; padding: 2px 0px; clear: right; } .task_information p { margin: 0px; } .task_target { text-decoration: underline; font-weight: bold; } .task_responsible { text-align: right; } .task-processed li { background-color: rgb(240, 240, 240); border-radius: 8px; margin: 10px 0; list-style-type: none; padding: 12px; } .task-processed .task.status-3 { background-color: rgb(205, 252, 218); } .task-processed .task.status-2 { background-color: rgb(255, 203, 203); } .task-processed ul { padding: 0; } .task-processed .task-list .task .title { border-bottom: 1px solid rgba(0, 0, 0, 0.1); font-weight: bold; color: rgb(44, 44, 44); } .task-processed .task .status { float: right; color: rgb(156, 156, 156); font-weight: bold; } .task-processed .task .dates { font-size: 11px; } .task-processed .task .closed-by { font-size: 11px; } .task-processed .task .label { font-weight: bold } |