mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-02-19 14:15:46 +01:00
imported patch dactylify
--HG-- rename : common/content/liberator-overlay.js => common/content/dactyl-overlay.js rename : common/content/liberator.js => common/content/dactyl.js rename : common/content/liberator.xul => common/content/dactyl.xul rename : common/skin/liberator.css => common/skin/dactyl.css rename : muttator/content/compose/liberator.dtd => muttator/content/compose/dactyl.dtd rename : muttator/content/compose/liberator.xul => muttator/content/compose/dactyl.xul rename : muttator/content/liberator.dtd => muttator/content/dactyl.dtd rename : vimperator/AUTHORS => pentadactyl/AUTHORS rename : vimperator/Donors => pentadactyl/Donors rename : vimperator/Makefile => pentadactyl/Makefile rename : vimperator/NEWS => pentadactyl/NEWS rename : vimperator/TODO => pentadactyl/TODO rename : vimperator/chrome.manifest => pentadactyl/chrome.manifest rename : vimperator/components/about-handler.js => pentadactyl/components/about-handler.js rename : vimperator/components/commandline-handler.js => pentadactyl/components/commandline-handler.js rename : vimperator/components/protocols.js => pentadactyl/components/protocols.js rename : vimperator/content/about.html => pentadactyl/content/about.html rename : vimperator/content/about_background.png => pentadactyl/content/about_background.png rename : vimperator/content/config.js => pentadactyl/content/config.js rename : vimperator/content/liberator.dtd => pentadactyl/content/dactyl.dtd rename : vimperator/content/logo.png => pentadactyl/content/logo.png rename : vimperator/content/vimperator.svg => pentadactyl/content/pentadactyl.svg rename : vimperator/content/vimperator.xul => pentadactyl/content/pentadactyl.xul rename : vimperator/contrib/vim/Makefile => pentadactyl/contrib/vim/Makefile rename : vimperator/contrib/vim/ftdetect/vimperator.vim => pentadactyl/contrib/vim/ftdetect/pentadactyl.vim rename : vimperator/contrib/vim/mkvimball.txt => pentadactyl/contrib/vim/mkvimball.txt rename : vimperator/contrib/vim/syntax/vimperator.vim => pentadactyl/contrib/vim/syntax/pentadactyl.vim rename : vimperator/install.rdf => pentadactyl/install.rdf rename : vimperator/locale/en-US/all.xml => pentadactyl/locale/en-US/all.xml rename : vimperator/locale/en-US/autocommands.xml => pentadactyl/locale/en-US/autocommands.xml rename : vimperator/locale/en-US/liberator.dtd => pentadactyl/locale/en-US/dactyl.dtd rename : vimperator/locale/en-US/gui.xml => pentadactyl/locale/en-US/gui.xml rename : vimperator/locale/en-US/intro.xml => pentadactyl/locale/en-US/intro.xml rename : vimperator/locale/en-US/options.xml => pentadactyl/locale/en-US/options.xml rename : vimperator/locale/en-US/tutorial.xml => pentadactyl/locale/en-US/tutorial.xml rename : vimperator/vimperatorrc.example => pentadactyl/pentadactylrc.example rename : vimperator/regressions.js => pentadactyl/regressions.js rename : vimperator/skin/about.css => pentadactyl/skin/about.css rename : vimperator/skin/icon.png => pentadactyl/skin/icon.png rename : xulmus/content/liberator.dtd => xulmus/content/dactyl.dtd rename : xulmus/locale/en-US/liberator.dtd => xulmus/locale/en-US/dactyl.dtd
This commit is contained in:
@@ -1,45 +1,45 @@
|
||||
@namespace liberator url("http://vimperator.org/namespaces/liberator");
|
||||
@namespace dactyl url("http://vimperator.org/namespaces/liberator");
|
||||
@namespace html url("http://www.w3.org/1999/xhtml");
|
||||
|
||||
/* Applied to all content */
|
||||
[liberator|activeframe] {
|
||||
-moz-binding: url(chrome://liberator/content/bindings.xml#frame);
|
||||
[dactyl|activeframe] {
|
||||
-moz-binding: url(chrome://dactyl/content/bindings.xml#frame);
|
||||
}
|
||||
|
||||
[liberator|highlight~=HintImage],
|
||||
[liberator|highlight~=Hint] {
|
||||
[dactyl|highlight~=HintImage],
|
||||
[dactyl|highlight~=Hint] {
|
||||
z-index: 5000;
|
||||
position: absolute !important;
|
||||
}
|
||||
[liberator|highlight~=Search] {
|
||||
[dactyl|highlight~=Search] {
|
||||
display: inline !important;
|
||||
}
|
||||
|
||||
/* Applied only to completion buffer and MOW */
|
||||
@-moz-document
|
||||
url-prefix(chrome://liberator/) {
|
||||
url-prefix(chrome://dactyl/) {
|
||||
|
||||
*:-moz-loading, *:-moz-broken { display: none !important; }
|
||||
|
||||
[liberator|highlight~=Completions] {
|
||||
[dactyl|highlight~=Completions] {
|
||||
width: 100%;
|
||||
display: table;
|
||||
}
|
||||
[liberator|highlight~=CompItem],
|
||||
[liberator|highlight~=CompTitle] {
|
||||
[dactyl|highlight~=CompItem],
|
||||
[dactyl|highlight~=CompTitle] {
|
||||
display: table-row;
|
||||
}
|
||||
[liberator|highlight~=Completions] > ul {
|
||||
[dactyl|highlight~=Completions] > ul {
|
||||
display: table-row;
|
||||
}
|
||||
[liberator|highlight~=CompItem] > *,
|
||||
[liberator|highlight~=CompTitle] > * {
|
||||
-moz-binding: url(chrome://liberator/content/bindings.xml#compitem-td);
|
||||
[dactyl|highlight~=CompItem] > *,
|
||||
[dactyl|highlight~=CompTitle] > * {
|
||||
-moz-binding: url(chrome://dactyl/content/bindings.xml#compitem-td);
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
[liberator|highlight~=CompMsg] {
|
||||
[dactyl|highlight~=CompMsg] {
|
||||
height: 1.5em;
|
||||
line-height: 1.5em !important;
|
||||
}
|
||||
@@ -69,11 +69,11 @@
|
||||
@-moz-document
|
||||
url-prefix(chrome://) {
|
||||
|
||||
.liberator-container > * {
|
||||
.dactyl-container > * {
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
#liberator-completions {
|
||||
#dactyl-completions {
|
||||
-moz-user-focus: ignore;
|
||||
overflow: -moz-scrollbars-none !important; /* does not seem to work fully */
|
||||
border-width: 0px !important;
|
||||
@@ -90,17 +90,17 @@ statusbarpanel {
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
#liberator-statusline {
|
||||
#dactyl-statusline {
|
||||
font-family: monospace;
|
||||
margin: 0px;
|
||||
}
|
||||
#liberator-statusline > label {
|
||||
#dactyl-statusline > label {
|
||||
padding: 0px 0px 0px 8px;
|
||||
}
|
||||
#liberator-statusline > label:first-child {
|
||||
#dactyl-statusline > label:first-child {
|
||||
padding: 0px;
|
||||
}
|
||||
#liberator-statusline-field-url {
|
||||
#dactyl-statusline-field-url {
|
||||
background-color: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
@@ -113,23 +113,23 @@ statusbarpanel {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#liberator-commandline-prompt {
|
||||
#dactyl-commandline-prompt {
|
||||
background-color: inherit;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
#liberator-commandline-command {
|
||||
#dactyl-commandline-command {
|
||||
background-color: inherit;
|
||||
color: inherit;
|
||||
margin: 0px;
|
||||
}
|
||||
#liberator-commandline-command html|*:focus {
|
||||
#dactyl-commandline-command html|*:focus {
|
||||
outline-width: 0px !important
|
||||
}
|
||||
#liberator-commandline-command .textbox-search-icons {
|
||||
#dactyl-commandline-command .textbox-search-icons {
|
||||
visibility: collapse !important;
|
||||
}
|
||||
#liberator-message {
|
||||
#dactyl-message {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
@@ -140,39 +140,39 @@ statusbarpanel {
|
||||
|
||||
/* MOW */
|
||||
|
||||
#liberator-completions,
|
||||
#liberator-multiline-output,
|
||||
#liberator-multiline-input {
|
||||
#dactyl-completions,
|
||||
#dactyl-multiline-output,
|
||||
#dactyl-multiline-input {
|
||||
overflow: hidden;
|
||||
background-color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
#liberator-completions-content,
|
||||
#liberator-multiline-output-content,
|
||||
#liberator-multiline-input {
|
||||
#dactyl-completions-content,
|
||||
#dactyl-multiline-output-content,
|
||||
#dactyl-multiline-input {
|
||||
white-space: pre;
|
||||
font-family: -moz-fixed;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#liberator-completions-content *,
|
||||
#liberator-multiline-output-content *,
|
||||
#liberator-commandline-prompt *,
|
||||
#liberator-commandline-command {
|
||||
#dactyl-completions-content *,
|
||||
#dactyl-multiline-output-content *,
|
||||
#dactyl-commandline-prompt *,
|
||||
#dactyl-commandline-command {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
#liberator-completions-content table,
|
||||
#liberator-multiline-output-content table {
|
||||
#dactyl-completions-content table,
|
||||
#dactyl-multiline-output-content table {
|
||||
white-space: inherit;
|
||||
border-spacing: 0px;
|
||||
}
|
||||
|
||||
#liberator-completions-content td,
|
||||
#liberator-multiline-output-content td,
|
||||
#liberator-completions-content th,
|
||||
#liberator-multiline-output-content th {
|
||||
#dactyl-completions-content td,
|
||||
#dactyl-multiline-output-content td,
|
||||
#dactyl-completions-content th,
|
||||
#dactyl-multiline-output-content th {
|
||||
padding: 0px 2px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user