Last active
October 26, 2019 16:57
-
-
Save Jehong-Ahn/1f41a133eba582b0c619046968b23ba9 to your computer and use it in GitHub Desktop.
Enhance quire.io
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#body .ws-cnt-wrap { padding-left: 0; } | |
#task-tree:before { | |
content: ""; | |
visibility: visible; | |
position: absolute; | |
width: 21px; | |
height: 100%; | |
margin-left: 68px; | |
border-left: 1px dotted #9ac656; | |
border-right: 1px dotted #bae0ff; | |
} | |
.tree-list:before { | |
content: ""; | |
visibility: visible; | |
position: absolute; | |
width: 21px; | |
height: 100%; | |
margin-left: 109px; | |
border-left: 1px dotted #adadad; | |
border-right: 1px dotted #adadad; | |
} | |
/* First Level */ | |
#task-tree > .tree-list > .tree-item > .tree-row .task-name { color: #9ac656; } | |
/* Second Level */ | |
#task-tree > .tree-list > .tree-item > .tree-list > .tree-item > .tree-row .task-name { color: #bae0ff; } | |
.task-menu-bar > i:not(.task-tags) { display: none !important; } | |
/* 상세내용이 있을 경우 아이콘 강조 */ | |
.display-hint #task-tree .tree-item.has-desc>.tree-row .task-name-wrapper .task-name-frame:before { | |
color: white; | |
} | |
.p-sm:not(.tree-600) .tree-row .task-tags { display: block !important; } | |
.t-title-block { font-size: 80%; } | |
.assignee-btn-wrap { display: none !important; } | |
.due-btn-wrap { display: none !important; } | |
.tag-picker-wrap { display: none !important; } | |
.detail-body>.content { padding-right: 12px !important; } | |
.t-desc-block { font-size: 100%; } | |
textarea.t-desc-input { font-size: 100%; } | |
.t-desc-block a, .t-desc-block a:hover { text-decoration: underline; } | |
.t-desc-block strong { color: #bae0ff; } | |
.t-desc-block em, .t-desc-block blockquote { color: #bae0ff !important; } | |
.t-desc-block ol, .comment-block ol, .t-desc-block ul, .comment-block ul { margin-bottom: 0; } | |
.t-desc-block > ol, .comment-block > ol, .t-desc-block > ul, .comment-block > ul { margin-bottom: 16px; } | |
.t-desc-block li, .comment-block li { line-height: 1.1em; margin-bottom: 4px; } | |
.t-desc-block>p+ol, .t-desc-block>p+ul { margin-top: -16px; } | |
code, pre { border-color: #5e753e; } | |
img { filter: saturate(0.9) brightness(0.8); } | |
.t-desc-block>p+pre { margin-top: -16px; } | |
.t-desc-block>pre+p { margin-top: -8px; } | |
.t-desc-block>pre { padding: 0; } | |
.t-desc-block>pre+ol, .t-desc-block>pre+ul { margin-top: -4px; } | |
.t-desc-block table, .comment-block table { margin-bottom: 16px; } | |
.t-desc-block hr, .comment-block hr { border-top-width: 1px; } | |
.t-desc-block h2 { | |
margin-top: 40px; | |
padding: 10px 0; | |
border-top: 1px dashed #9ac656; | |
color: #9ac656; | |
font-size: 16px; | |
margin-left: -20px; | |
margin-bottom: 5px; | |
} | |
.t-desc-block h2:first-child { margin-top: 0; } | |
.t-desc-block h3 { | |
font-size: 15px; | |
margin-bottom: 3px; | |
margin-left: -15px; | |
color: #9ac656; | |
} | |
.t-desc-block h4 { | |
color: #bae0ff; | |
padding: 3px 6px; | |
border-radius: 5px; | |
display: inline-block; | |
margin-left: -5px; | |
font-size: 14px; | |
} | |
/* Header */ | |
#wrap { padding-top: 40px !important; } | |
.header-wrap { height: 43px !important; } | |
#view-switcher { top: 10px; left: 230px; } /* Tasks, Overview... menubar */ | |
#header #sidebarTgl, #header .sidebar-tgl-wrap:after { vertical-align: inherit; } /* hamburger */ | |
ul.nav.navbar-nav.pull-right { margin-top: -16px; } /* search, notify, profile */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment