-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
117 lines (97 loc) · 3.09 KB
/
custom.css
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
/**
* Custom styles to make Asana be more compact and clearly delineated.
* Styles are organized mostly by location on the screen, with vertical space
* adjustments at the end of the file, also mostly in appearance order.
*/
/* Reduce height of top toolbar */
.SingleTaskPaneToolbar {
height: 40px;
}
/* Reduce size of title */
.SingleTaskTitleInput-taskName .AutogrowTextarea-input,
.SingleTaskTitleInput-taskName .AutogrowTextarea-shadow {
font-size: 20px;
line-height: 28px;
}
/* Reduce height of custom fields that don't exist in the current project */
.CustomPropertyOrphanedDetailsRow .LabeledRowStructure-labelContainer {
height: 20px;
}
/* Remove whitespace at bottom of main description text when not editing */
.TaskDescription-textEditor.TaskDescription-textEditor--willContainToolbar .ql-editor {
padding-bottom: 0px;
}
/* Add background colour to comment entries to make them stand out more. */
.TaskStoryFeed .FeedBlockStory .BlockStory {
background-color: #F0F0F0;
border-radius: 5px;
padding: 5px;
}
/* Reinstate the background colour and padding for pinned comments. */
.TaskStoryFeed .FeedBlockStory.FeedBlockStory--pinnedAtTop .BlockStory {
background-color: inherit;
padding: 0px;
}
/* Add a separator between the title and content of each comment */
.TaskStoryFeed .FeedBlockStory .BlockStory .BlockStory-headerContent {
border-bottom: 1px solid #CCC;
}
/* Lighten separator colour for pinned comments */
.TaskStoryFeed .FeedBlockStory.FeedBlockStory--pinnedAtTop .BlockStory .BlockStory-headerContent {
border-bottom-color: #DDD;
}
/* Add padding as a result of separator for comments */
.BlockStory-body {
padding-top: 2px;
}
/* Increase size of date text */
.BlockStory-metadata {
font-size: 13px;
}
/* Make internal links bold */
.TaskStoryFeed-expandLink,
.TaskStoryFeed-expandMiniStoriesLink,
.TruncatedRichText-expand {
font-weight: bold;
}
/* Hide all separators */
.TaskStoryFeed-activitySeparator {
display: none;
}
/* Vertical space adjustments */
.SingleTaskPane-titleRow,
.SingleTaskPane-projects,
.SingleTaskPane-tags {
margin-bottom: 5px;
margin-top: 5px;
}
.TaskPaneAssigneeDueDateRowStructure {
padding-bottom: 10px;
}
.SingleTaskPane-premiumFeaturesSection {
margin-bottom: 5px;
}
.TaskStoryFeed-topSeparator + .TaskStoryFeed-taskCreationStory,
.TaskStoryFeed-pinnedSeparator + .TaskStoryFeed-taskCreationStory {
margin-top: 0px;
}
.TaskCreationBlockStory,
.FeedBlockStory {
padding-bottom: 5px;
padding-top: 5px;
}
.TaskStoryFeed-activitySeparator,
.TaskStoryFeed-expandMiniStoriesLink,
.TaskStoryFeed-blockStory + .TaskStoryFeed-expandLink,
.TaskStoryFeed-miniStory + .TaskStoryFeed-blockStory,
.TaskStoryFeed-activitySeparator + .TaskStoryFeed-blockStory,
.TaskStoryFeed-separator + .TaskStoryFeed-miniStory,
.TaskStoryFeed-miniStory + .TaskStoryFeed-activitySeparator,
.TaskStoryFeed-blockStory + .TaskStoryFeed-miniStory,
.TaskStoryFeed-activitySeparator + .TaskStoryFeed-expandMiniStoriesLink,
.TaskAncestry-ancestorProjects {
margin-top: 5px;
}
.TaskStoryFeed-expandLink {
margin-bottom: 5px;
}