summaryrefslogtreecommitdiff
path: root/searx/static/plugins/css/vim_hotkeys.css
diff options
context:
space:
mode:
authorKirill Isakov <ukwt@ya.ru>2016-04-24 03:02:33 +0600
committerKirill Isakov <ukwt@ya.ru>2016-04-24 03:02:33 +0600
commit1faf1b645b25745ac887529605727850e0d86d84 (patch)
tree576ede5687b7755370a24756575d4335abb4a871 /searx/static/plugins/css/vim_hotkeys.css
parent3246541bdc405f269179ec737b83772b926c43a6 (diff)
Set vim-hotkeys help panels to same height
Diffstat (limited to 'searx/static/plugins/css/vim_hotkeys.css')
-rw-r--r--searx/static/plugins/css/vim_hotkeys.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/searx/static/plugins/css/vim_hotkeys.css b/searx/static/plugins/css/vim_hotkeys.css
index 19745d942..3e9eaddf0 100644
--- a/searx/static/plugins/css/vim_hotkeys.css
+++ b/searx/static/plugins/css/vim_hotkeys.css
@@ -7,3 +7,19 @@
overflow-y: auto;
max-height: 80%;
}
+
+.dflex {
+ display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
+ display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
+ display: -ms-flexbox; /* TWEENER - IE 10 */
+ display: -webkit-flex; /* NEW - Chrome */
+ display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
+}
+
+.iflex {
+ -webkit-box-flex: 1; /* OLD - iOS 6-, Safari 3.1-6 */
+ -moz-box-flex: 1; /* OLD - Firefox 19- */
+ -webkit-flex: 1; /* Chrome */
+ -ms-flex: 1; /* IE 10 */
+ flex: 1; /* NEW, Spec - Opera 12.1, Firefox 20+ */
+}