blob: 46a838c0748f6e78fbca196b9b7ac3db1b7c5828 (
plain)
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
@import url(chrome://calendar/skin/shared/calendar-task-view.css);
#calendar-task-details-container {
background-color: ButtonFace;
padding-top: 2px;
}
#task-addition-box {
border-bottom-color: #bebebe
}
/* Hide the magnifying glass icon */
#view-task-edit-field,
#unifinder-task-edit-field {
margin-block: 0;
background-image: none;
padding-inline-start: 4px !important;
}
@media not (prefers-color-scheme: dark) {
#task-addition-box:-moz-window-inactive {
border-bottom-color: hsl(0, 0%, 85%);
background: -moz-mac-chrome-inactive;
}
#calendar-task-details-container:-moz-window-inactive {
background-color: -moz-mac-chrome-inactive;
}
}
#calendar-add-task-button[disabled="true"] {
fill-opacity: .5;
}
#calendar-add-task-button > .toolbarbutton-text {
margin-inline-start: 0;
}
|