aboutsummaryrefslogtreecommitdiff
path: root/conkeror/theme/minibuffer.css
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2016-08-04 16:47:43 +0200
committerKarel Kočí <cynerd@email.cz>2016-08-07 14:00:48 +0200
commit0ea2cf7df1c739c0324d7499a753b20ef63485b7 (patch)
tree9a9444b2723cc01c19eac9c4ad0e8c45b9771308 /conkeror/theme/minibuffer.css
parentc82fdf5eeb808e4c6d110bcf59d5eb6519a0524e (diff)
downloadmyconfigs-0ea2cf7df1c739c0324d7499a753b20ef63485b7.tar.gz
myconfigs-0ea2cf7df1c739c0324d7499a753b20ef63485b7.tar.bz2
myconfigs-0ea2cf7df1c739c0324d7499a753b20ef63485b7.zip
Update conkeror rc file and create theme
Diffstat (limited to 'conkeror/theme/minibuffer.css')
-rw-r--r--conkeror/theme/minibuffer.css94
1 files changed, 94 insertions, 0 deletions
diff --git a/conkeror/theme/minibuffer.css b/conkeror/theme/minibuffer.css
new file mode 100644
index 0000000..a184564
--- /dev/null
+++ b/conkeror/theme/minibuffer.css
@@ -0,0 +1,94 @@
+
+@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
+
+#minibuffer {
+ color: white;
+ background: #333333;
+ border-top: 1px solid #285577;
+ -moz-box-align: baseline;
+}
+
+#minibuffer-input {
+ background-color: -moz-field !important;
+}
+
+#minibuffer-input .textbox-input-box {
+ width: 5em;
+}
+
+#minibuffer-input [anonid="annotation"] {
+ font-style: oblique;
+}
+
+#minibuffer-input [anonid="strut"] {
+ padding-right: 1em !important;
+}
+
+/* mode text widgets */
+
+#minibuffer .mode-text-widget {
+ display: none;
+}
+
+#minibuffer[minibuffermode="message"] .mode-text-widget {
+ display: block;
+ border-left: 1px solid threedshadow;
+ padding-left: 4px !important;
+ padding-right: 4px !important;
+ margin-left: 0px !important;
+ margin-right: 0px !important;
+}
+
+#minibuffer[minibuffermode="message"] .mode-text-widget[value=""] {
+ display: none;
+}
+
+
+/* minibuffer highlighting */
+
+#minibuffer.highlight {
+ background-color: Highlight;
+ color: HighlightText;
+}
+
+#minibuffer.highlight[minibuffermode="message"] .mode-text-widget {
+ border-left: 1px solid highlighttext;
+}
+
+
+/* Completions display */
+
+tree.completions { margin: 0px !important; }
+
+tree.completions treechildren { border: none !important; }
+
+tree.completions treecol { -moz-binding: none !important; }
+tree.completions {
+ -moz-appearance: none !important;
+ border: 0px none !important;
+ border-top: 1px solid -moz-Dialog !important;
+ -moz-border-top-colors: -moz-initial !important;
+}
+
+tree.completions treechildren::-moz-tree-row {
+ border: none;
+}
+
+tree.completions treechildren::-moz-tree-row(current) {
+ background-color: Highlight !important;
+ color: HighlightText !important;
+}
+
+tree.completions treechildren::-moz-tree-cell-text(completion-description) {
+ font-weight: bold !important;
+}
+
+tree.completions treechildren::-moz-tree-cell-text(current) {
+ color: HighlightText !important;
+}
+
+tree.completions[hasicons="true"] treechildren::-moz-tree-image {
+ width: 16px;
+ height: 16px;
+ margin-right: 6px;
+}