-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmessage.css
More file actions
167 lines (155 loc) · 4.02 KB
/
Copy pathmessage.css
File metadata and controls
167 lines (155 loc) · 4.02 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@layer components {
/*! purgecss start ignore */
.message-name {
@apply m-0 leading-tight text-title;
}
@media (min-width: theme("screens.sm")) {
.message-name {
grid-column: span 2;
}
}
.message-name a:hover {
@apply text-blue-lightblue;
}
.message-name a:hover .message-name-separator:before {
@apply border-blue-lightblue;
}
.message-name a:focus {
@apply outline-yellow border-0;
}
.message-name a .message-name-separator {
margin-right: -2px;
margin-left: -2px;
}
.message-name a .message-name-separator:before {
@apply border-blue;
}
.message-meta {
@apply text-small pointer-events-none text-gray-700;
}
#template-list {
@apply mt-12;
}
#template-list.top-gutter-5px {
@apply mt-2;
}
.template-list-item {
grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
@apply grid gap-x-gutter gap-y-2 pb-gutterHalf mb-gutterHalf border-b border-gray-300 items-baseline;
}
.template-list-item-with-checkbox {
@apply relative pl-24;
}
.template-list-item-with-checkbox .multiple-choice {
@apply absolute left-0;
}
.template-list-item-hidden-by-default {
@apply hidden;
}
.template-list-item-without-ancestors .message-name a,
.template-list-item-without-ancestors .message-name a:first-child {
@apply block;
}
.template-list-item-without-ancestors
.message-name
a.template-list-folder:first-child {
background-position: 0 2px;
text-indent: 40px;
@apply pl-0;
}
.template-list-folder {
background-size: auto 20px;
background-position: 0px 4px;
@apply inline pl-16 bg-no-repeat bg-folderBlue; /* Overwrite for browsers that support SVG */
}
.template-list-folder:hover {
@apply bg-folderBlueHover;
}
.template-list-template a {
@apply inline;
}
.template-list-empty {
@apply px-0 pt-gutterHalf pb-4 text-gray-grey1;
}
.template-list-selected-counter {
@apply text-gray-grey1 mx-0 my-gutterHalf;
}
@variant lg {
.template-list-selected-counter {
top: 29px;
@apply absolute right-0 m-0;
}
}
/* Initially hide the empty message */
#template-list-empty {
display: none;
}
/* Show the empty message if all .template-list-item elements are hidden */
#template-list-container:not(
:has(.template-list-item:not([style*="display: none"]))
)
#template-list-empty {
display: block;
}
.content-fixed .template-list-selected-counter {
right: 15px;
}
.grid-row .folder-heading {
word-wrap: break-word;
@apply flex flex-wrap align-baseline mx-0;
}
.folder-heading a,
.folder-heading-folder {
background-size: auto 19px;
background-position: 0px 4px;
@apply inline bg-no-repeat align-top text-smaller min-h-12;
}
.folder-heading-folder {
@apply p-0 pl-gutter bg-folderBlack;
}
.folder-heading-folder-group:not(:last-child) {
@apply mr-4 mb-4;
}
.folder-heading-folder-truncated {
@apply w-0 p-0 pl-12 whitespace-nowrap overflow-hidden;
}
.folder-heading-folder-root-truncated {
max-width: 5em;
@apply truncate;
}
.folder-heading a {
@apply inline;
}
.folder-heading a.folder-heading-folder {
@apply inline bg-folderBlue;
}
.folder-heading a.folder-heading-folder:hover {
@apply bg-folderBlueHover;
}
.folder-heading a.folder-heading-folder-truncated {
@apply inline-block;
}
.folder-heading a:hover {
@apply text-blue-lightblue;
}
.folder-heading-manage-link {
@apply block text-right min-h-12;
}
.message-name-separator,
.folder-heading-separator {
@apply inline-block h-12 w-8 align-top relative;
}
.message-name-separator:before,
.folder-heading-separator:before {
content: "";
top: -9px;
bottom: -9px;
right: 7px;
width: 9px;
height: 9px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
@apply block absolute my-auto mx-0 border-solid border-t-2 border-r-2 border-b-0 border-l-0 border-gray-grey1 transform rotate-45;
}
/*! purgecss end ignore */
}