Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
5e194cca
Commit
5e194cca
authored
12 years ago
by
Shane Tomlinson
Browse files
Options
Downloads
Patches
Plain Diff
Fix the scrollbars showing in the unsupported dialog in IE6 and IE7
issue #1496
parent
1e351bad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
resources/static/dialog/css/popup.css
+14
-2
14 additions, 2 deletions
resources/static/dialog/css/popup.css
with
14 additions
and
2 deletions
resources/static/dialog/css/popup.css
+
14
−
2
View file @
5e194cca
...
...
@@ -13,7 +13,13 @@ h2 {
header
,
footer
{
position
:
absolute
;
/* The *padding is a fix for IE6 and IE7 showing scroll bars in the
* unsupported dialog. Since IE6 and IE7 do not support box-sizing:
* border-box, the left and right padding cause these versions of IE to
* overflow the dialog box.
*/
padding
:
20px
;
*
padding
:
20px
0
;
z-index
:
2
;
}
...
...
@@ -109,8 +115,14 @@ section > .contents {
right
:
0
;
top
:
61px
;
bottom
:
61px
;
/* Fix for IE6 not displaying the unsupported dialog correctly */
_width
:
100%
;
/* Fix for IE6 not displaying the unsupported dialog correctly. IE6 by
* default sets the height and width of the element to 0 meaning nothing
* shows up on the screen.
* Note, these are magic numbers that depend on the width and height of the
* dialog. The height also depends on the height of the header and footer.
*/
_width
:
682px
;
_height
:
250px
;
}
#wait
,
#error
,
#delay
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment