mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-23 22:35:45 +01:00
required changes to work with newer liberators
This commit is contained in:
2
Makefile
2
Makefile
@@ -1,6 +1,6 @@
|
|||||||
#### configuration
|
#### configuration
|
||||||
|
|
||||||
VERSION = 0.4
|
VERSION = 0.5pre
|
||||||
NAME = muttator
|
NAME = muttator
|
||||||
|
|
||||||
include Makefile.common
|
include Makefile.common
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Thunderbird
|
# Thunderbird
|
||||||
content muttator content/
|
content muttator content/
|
||||||
resource muttator content/
|
resource muttator modules/
|
||||||
locale muttator en-US locale/en-US/
|
locale muttator en-US locale/en-US/
|
||||||
skin muttator classic/1.0 skin/
|
skin muttator classic/1.0 skin/
|
||||||
overlay chrome://messenger/content/messenger.xul chrome://muttator/content/muttator.xul
|
overlay chrome://messenger/content/messenger.xul chrome://muttator/content/muttator.xul
|
||||||
|
|||||||
@@ -30,11 +30,11 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
#liberator-bufferwindow, #liberator-completion, #liberator-previewwindow {
|
#liberator-completions {
|
||||||
-moz-user-focus: ignore;
|
-moz-user-focus: ignore;
|
||||||
overflow: -moz-scrollbars-none !important; /* does not seem to work fully */
|
overflow: -moz-scrollbars-none !important; /* does not seem to work fully */
|
||||||
border-width: 0px !important;
|
border-width: 0px !important;
|
||||||
-moz-appearance: none !important; /* prevent an ugly 3D border */
|
/*-moz-appearance: none !important; /* prevent an ugly 3D border */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* the selected item in listboxes is hardly readable without this */
|
/* the selected item in listboxes is hardly readable without this */
|
||||||
@@ -45,6 +45,10 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
color: HighlightText !important;
|
color: HighlightText !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*.liberator-compitem {
|
||||||
|
min-height: 16px;
|
||||||
|
}*/
|
||||||
|
|
||||||
/* fixes the min-height: 22px from firefox */
|
/* fixes the min-height: 22px from firefox */
|
||||||
#status-bar, statusbarpanel {
|
#status-bar, statusbarpanel {
|
||||||
-moz-appearance: none !important;
|
-moz-appearance: none !important;
|
||||||
@@ -78,12 +82,18 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
|
|
||||||
#liberator-commandline {
|
#liberator-commandline {
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
|
font-family: monospace;
|
||||||
/*
|
/*
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: black;
|
color: black;
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
#liberator-commandline-prompt, #liberator-commandline-command {
|
#liberator-commandline-prompt {
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
background-color: inherit;
|
||||||
|
}
|
||||||
|
#liberator-commandline-command {
|
||||||
background-color: inherit;
|
background-color: inherit;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
@@ -109,6 +119,10 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
color: white;
|
color: white;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
.hl-InfoMsg {
|
||||||
|
background-color: white;
|
||||||
|
color: magenta;
|
||||||
|
}
|
||||||
.hl-ModeMsg {
|
.hl-ModeMsg {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: black;
|
color: black;
|
||||||
@@ -146,7 +160,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
|
|||||||
color: black !important;
|
color: black !important;
|
||||||
}
|
}
|
||||||
.hl-URL {
|
.hl-URL {
|
||||||
background-color: white;
|
background-color: inherit;
|
||||||
color: green;
|
color: green;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
@@ -158,29 +172,29 @@ a.hl-URL:hover {
|
|||||||
|
|
||||||
/* MOW */
|
/* MOW */
|
||||||
|
|
||||||
#liberator-multiline-output {
|
#liberator-completions, #liberator-multiline-output {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
#liberator-multiline-output-content {
|
#liberator-completions-content, #liberator-multiline-output-content {
|
||||||
white-space: pre; /* -moz-pre-wrap FIXME: Should lines wrap like Vim? */
|
white-space: pre;
|
||||||
font-family: -moz-fixed;
|
font-family: -moz-fixed;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#liberator-multiline-output-content * {
|
#liberator-completions-content *, #liberator-multiline-output-content * {
|
||||||
font: inherit;
|
font: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
#liberator-multiline-output-content table {
|
#liberator-completions-content table, #liberator-multiline-output-content table {
|
||||||
white-space: inherit;
|
white-space: inherit;
|
||||||
border-spacing: 0px;
|
border-spacing: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#liberator-multiline-output-content td,
|
#liberator-completions-content td, #liberator-multiline-output-content td,
|
||||||
#liberator-multiline-output-content th {
|
#liberator-completions-content th, #liberator-multiline-output-content th {
|
||||||
padding: 0px 2px;
|
padding: 0px 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -189,4 +203,5 @@ a.hl-URL:hover {
|
|||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* vim: set fdm=marker sw=4 ts=4 et: */
|
/* vim: set fdm=marker sw=4 ts=4 et: */
|
||||||
|
|||||||
Reference in New Issue
Block a user