Bug 684518 - Task view rows get a border after restarting (aero theme not applied) r=philipp
This commit is contained in:
Родитель
a7a58e3dc9
Коммит
29aec8166e
|
@ -166,11 +166,14 @@ calendar.jar:
|
|||
|
||||
# The following files are added for aero support on windows.
|
||||
#ifdef XP_WIN
|
||||
% style chrome://calendar/content/calendar-common-sets.xul chrome://calendar/skin/calendar-aero.css os=WINNT osversion>=6
|
||||
% style chrome://calendar/content/calendar-event-dialog.xul chrome://calendar/skin/calendar-aero.css os=WINNT osversion>=6
|
||||
% style chrome://calendar/content/calendar-occurrence-prompt.xul chrome://calendar/skin/calendar-aero.css os=WINNT osversion>=6
|
||||
% style chrome://global/content/customizeToolbar.xul chrome://calendar/skin/calendar-aero.css os=WINNT osversion>=6
|
||||
skin/calendar/calendar-aero.css (themes/@THEME@/calendar-aero.css)
|
||||
% style chrome://calendar/content/calendar-event-dialog.xul chrome://calendar-windows/skin/calendar.css os=WINNT osversion>=6
|
||||
% style chrome://calendar/content/calendar-occurrence-prompt.xul chrome://calendar-windows/skin/calendar.css os=WINNT osversion>=6
|
||||
% skin calendar-windows classic/1.0 chrome/calendar/skin/calendar/win-classic/ os=WINNT osversion<6
|
||||
% skin calendar-windows classic/1.0 chrome/calendar/skin/calendar/win-aero/ os=WINNT osversion>=6
|
||||
skin/calendar/win-classic/calendar.css (themes/@THEME@/win-classic/calendar.css)
|
||||
skin/calendar/win-classic/lightning.css (themes/@THEME@/win-classic/lightning.css)
|
||||
skin/calendar/win-aero/calendar.css (themes/@THEME@/win-aero/calendar.css)
|
||||
skin/calendar/win-aero/lightning.css (themes/@THEME@/win-aero/lightning.css)
|
||||
skin/calendar/calendar-event-dialog-toolbar-aero.png (themes/@THEME@/dialogs/images/calendar-event-dialog-toolbar-aero.png)
|
||||
skin/calendar/calendar-occurrence-prompt-aero.png (themes/@THEME@/images/calendar-occurrence-prompt-aero.png)
|
||||
skin/calendar/tasks-actions-aero.png (themes/@THEME@/images/tasks-actions-aero.png)
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
@import url(chrome://calendar-windows/skin/calendar.css);
|
||||
|
||||
#calendar-task-view-splitter {
|
||||
border: none;
|
||||
min-height: 5px;
|
||||
|
|
|
@ -35,27 +35,27 @@
|
|||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
#task-actions-category {
|
||||
list-style-image: url(chrome://calendar/skin/tasks-actions-aero.png);
|
||||
-moz-image-region: rect(0 18px 18px 0);
|
||||
#task-actions-toolbar > #task-actions-category {
|
||||
list-style-image: url(chrome://calendar/skin/tasks-actions-aero.png);
|
||||
-moz-image-region: rect(0 18px 18px 0);
|
||||
}
|
||||
|
||||
#task-actions-markcompleted {
|
||||
list-style-image: url(chrome://calendar/skin/tasks-actions-aero.png);
|
||||
-moz-image-region: rect(0 34px 18px 18px);
|
||||
#task-actions-toolbar > #task-actions-markcompleted {
|
||||
list-style-image: url(chrome://calendar/skin/tasks-actions-aero.png);
|
||||
-moz-image-region: rect(0 34px 18px 18px);
|
||||
}
|
||||
|
||||
#task-actions-priority {
|
||||
list-style-image: url(chrome://calendar/skin/tasks-actions-aero.png);
|
||||
-moz-image-region: rect(0 52px 18px 34px);
|
||||
#task-actions-toolbar > #task-actions-priority {
|
||||
list-style-image: url(chrome://calendar/skin/tasks-actions-aero.png);
|
||||
-moz-image-region: rect(0 52px 18px 34px);
|
||||
}
|
||||
|
||||
#calendar-delete-task-button {
|
||||
list-style-image: url(chrome://messenger/skin/icons/mail-toolbar.png);
|
||||
-moz-image-region: rect(0 144px 18px 126px);
|
||||
#task-actions-toolbar > #calendar-delete-task-button {
|
||||
list-style-image: url(chrome://messenger/skin/icons/mail-toolbar.png);
|
||||
-moz-image-region: rect(0 144px 18px 126px);
|
||||
}
|
||||
|
||||
#calendar-add-task-button {
|
||||
#task-actions-toolbar > #calendar-add-task-button {
|
||||
list-style-image: url(chrome://calendar/skin/toolbar-small-aero.png);
|
||||
}
|
||||
|
||||
|
@ -91,11 +91,13 @@
|
|||
}
|
||||
|
||||
#unifinder-search-results-tree > treechildren::-moz-tree-row,
|
||||
#calendar-task-tree > .calendar-task-tree > treechildren::-moz-tree-row {
|
||||
border-bottom: 2px solid transparent;
|
||||
#calendar-task-box
|
||||
#calendar-task-tree > .calendar-task-tree > treechildren::-moz-tree-row {
|
||||
border-bottom: 1px solid transparent;
|
||||
}
|
||||
|
||||
#calendar-task-tree > .calendar-task-tree > treechildren::-moz-tree-cell {
|
||||
#calendar-task-box
|
||||
#calendar-task-tree > .calendar-task-tree > treechildren::-moz-tree-cell {
|
||||
border-right: 1px solid transparent;
|
||||
}
|
||||
}
|
||||
|
@ -164,8 +166,8 @@
|
|||
}
|
||||
|
||||
#today-pane-splitter,
|
||||
#calendar-view-splitter,
|
||||
#calendar-task-view-splitter {
|
||||
#calendar-view-box #calendar-view-splitter,
|
||||
#calendar-task-box #calendar-task-view-splitter {
|
||||
border: none;
|
||||
border-bottom: 1px solid #A9B7C9;
|
||||
min-height: 0;
|
||||
|
@ -176,8 +178,13 @@
|
|||
z-index: 10;
|
||||
}
|
||||
|
||||
#calendar-nav-control,
|
||||
#calendar-task-details-container {
|
||||
border-top-width: 0 !important;
|
||||
}
|
||||
|
||||
#today-pane-panel {
|
||||
-moz-border-start-width: 0;
|
||||
-moz-border-start-width: 0 !important;
|
||||
}
|
||||
|
||||
@media all and (-moz-windows-compositor) {
|
||||
|
@ -216,7 +223,7 @@
|
|||
#event-toolbar {
|
||||
-moz-appearance: none;
|
||||
border-style: none;
|
||||
background-color: transparent;
|
||||
background-color: transparent
|
||||
}
|
||||
|
||||
#event-toolbar[iconsize="small"] .toolbarbutton-1 .toolbarbutton-icon {
|
|
@ -46,7 +46,7 @@
|
|||
.tabmail-tab[type="tasks"],
|
||||
#lightning-button-calendar,
|
||||
#lightning-button-tasks {
|
||||
list-style-image: url(chrome://lightning/skin/mode-switch-icons-aero.png);
|
||||
list-style-image: url(chrome://lightning/skin/mode-switch-icons-aero.png) !important;
|
||||
}
|
||||
|
||||
#lightning-button-calendar,
|
||||
|
@ -68,8 +68,8 @@
|
|||
margin: 1px;
|
||||
}
|
||||
|
||||
#newMsgButton-calendar-menuitem,
|
||||
#newMsgButton-task-menuitem,
|
||||
#calendar-status-todaypane-button > stack > .toolbarbutton-icon-begin {
|
||||
#button-newmsg #newMsgButton-calendar-menuitem,
|
||||
#button-newmsg #newMsgButton-task-menuitem,
|
||||
#calendar-show-todaypane-panel > #calendar-status-todaypane-button > stack > .toolbarbutton-icon-begin {
|
||||
list-style-image: url(chrome://calendar/skin/toolbar-small-aero.png);
|
||||
}
|
|
@ -39,6 +39,8 @@
|
|||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
@import url(chrome://calendar-windows/skin/lightning.css);
|
||||
|
||||
#calsidebar_splitter {
|
||||
border-right: none;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче