diff options
| author | mrmr1993 | 2014-09-19 19:40:55 +0100 | 
|---|---|---|
| committer | mrmr1993 | 2014-12-04 20:40:52 +0000 | 
| commit | f8ec64559b14d254a056285e16d62e6c8e67ad87 (patch) | |
| tree | fcbfbf404318a429f325143822a6ee65e2bb15fd /content_scripts | |
| parent | e1b3fd550461cf137614b1314012393f00a31652 (diff) | |
| download | vimium-f8ec64559b14d254a056285e16d62e6c8e67ad87.tar.bz2 | |
Increase the z-index of all components to close to Number.MAX_VALUE
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/vimium.css | 12 | 
1 files changed, 7 insertions, 5 deletions
| diff --git a/content_scripts/vimium.css b/content_scripts/vimium.css index 7998fe5c..b52c5c2b 100644 --- a/content_scripts/vimium.css +++ b/content_scripts/vimium.css @@ -54,7 +54,8 @@ tr.vimiumReset {    vertical-align: baseline;    white-space: normal;    width: auto; -  z-index: 99999999; +  /* The maximum acceptable value is Number.MAX_VALUE, approximately 1.7976e+308. */ +  z-index: 179759999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;  }  /* Linkhints CSS */ @@ -122,7 +123,7 @@ div#vimiumHelpDialog {    top:50px;    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px;    overflow-y: auto; -  z-index:99999998; +  z-index: 179758999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;  }  div#vimiumHelpDialog a { color:blue; } @@ -234,7 +235,7 @@ div.vimiumHUD {    font-family: "Lucida Grande", "Arial", "Sans";    font-size: 12px;    /* One less than vimium's hint markers, so link hints can be shown e.g. for the panel's close button. */ -  z-index: 99999997; +  z-index: 179757999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;    text-shadow: 0px 1px 2px #FFF;    line-height: 1.0;    opacity: 0; @@ -291,7 +292,7 @@ body.vimiumFindMode ::selection {    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);    border: 1px solid #aaa;    /* One less than hint markers and the help dialog. */ -  z-index: 99999996; +  z-index: 179756999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;  }  #vomnibar input { @@ -401,5 +402,6 @@ div#vimiumFlash {    padding: 1px;    background-color: transparent;    position: absolute; -  z-index: 99999; +  /* The maximum acceptable value is Number.MAX_VALUE, approximately 1.7976e+308. */ +  z-index: 179759999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999;  } | 
