one-aalam / chrome-screen-capture

Automatically exported from code.google.com/p/chrome-screen-capture
0 stars 0 forks source link

Edit function dropdowns are hidden behind captured image #261

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Capture a web page (any of the 4 capture types)
2. Mouse over any of the top editing options or the button with the arrow on 
the far right

What is the expected output? What do you see instead?
I expect to be able to see the dropdown's options. The dropdown is behind the 
captured image and I can only see the top few pixels - basically the top 
rounded border of the dropdown.

What version of the product are you using? On what operating system?
Chrome Version 23.0.1271.64 m. Windows 7 Pro. Screen Capture Extention Version: 
5.0.5 (latest)

Please provide any additional information below.

Original issue reported on code.google.com by wardsew...@gmail.com on 21 Nov 2012 at 5:31

GoogleCodeExporter commented 9 years ago
Forgot to attach a screen grab of the issue to the original submission.

Original comment by wardsew...@gmail.com on 21 Nov 2012 at 5:36

Attachments:

GoogleCodeExporter commented 9 years ago
Temporary Fix:

Search for file showimage.css in your PC. It should be here if you accepted 
default locations : C:\Users\YourSystemName\AppData\Local\Google\Chrome\User 
Data\Default\Extensions\cpngackimfmofbokmjmljamhdncknpmg\5.0.6_0.
Change z-index of element #toobar to 1000 like below and restart Chrome

.toolbar {
  position:fixed;
  height: 30px;
  margin-left: 10px;
  padding-top: 6px;
  z-index: 1000;
}

Original comment by jjamt...@j2-interactive.com on 9 Apr 2013 at 7:58