Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
b414f2bb
Commit
b414f2bb
authored
Jun 25, 2012
by
Galen Frechette
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleans up alignment of login and signup modals
parent
11c3bce9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
44 deletions
+18
-44
lms/static/sass/_shared_modal.scss
+9
-22
lms/static/sass/application.css
+9
-22
No files found.
lms/static/sass/_shared_modal.scss
View file @
b414f2bb
...
...
@@ -22,7 +22,11 @@
@include
box-shadow
(
0
15px
80px
15px
rgba
(
0
,
0
,
0
,
0
.5
));
color
:
#fff
;
display
:
none
;
left
:
50%
;
margin-left
:
-
(
grid-width
(
6
))
/
2
;
padding
:
8px
;
position
:
absolute
;
top
:
170px
;
width
:
grid-width
(
6
);
z-index
:
10
;
...
...
@@ -30,28 +34,13 @@
display
:
block
;
}
&
.login-modal
{
@include
vertically-and-horizontally-centered
(
410px
,
grid-width
(
6
));
.inner-wrapper
{
height
:
410px
;
}
}
&
.signup-modal
{
@include
vertically-and-horizontally-centered
(
965px
,
grid-width
(
6
));
.inner-wrapper
{
height
:
965px
;
}
}
.inner-wrapper
{
background
:
rgb
(
240
,
240
,
240
);
@include
border-radius
(
0px
);
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0
.9
);
@include
box-shadow
(
inset
0
1px
0
0
rgba
(
255
,
255
,
255
,
0
.7
));
overflow
:
hidden
;
padding-bottom
:
30px
;
position
:
relative
;
header
{
...
...
@@ -107,7 +96,7 @@
form
{
margin-bottom
:
12px
;
padding
:
0px
2
0px
;
padding
:
0px
4
0px
;
position
:
relative
;
z-index
:
2
;
...
...
@@ -145,19 +134,17 @@
}
a
{
//color: $base-font-color;
font
:
normal
1
.2rem
/
1
.6rem
$serif
;
text-decoration
:
underline
;
&
:hover
{
//color: $lighter-base-font-color;
}
}
}
.honor-code-summary
{
margin-bottom
:
20px
;
padding
:
0px
10px
;
padding
:
0px
;
position
:
relative
;
p
{
...
...
@@ -201,13 +188,13 @@
}
.submit
{
padding-top
:
1
8
px
;
padding-top
:
1
0
px
;
input
[
type
=
"submit"
]
{
display
:
block
;
height
:
45px
;
margin
:
0
auto
;
width
:
7
0%
;
width
:
10
0%
;
}
}
}
...
...
lms/static/sass/application.css
View file @
b414f2bb
...
...
@@ -1708,29 +1708,15 @@ header.app {
box-shadow
:
0
15px
80px
15px
rgba
(
0
,
0
,
0
,
0.5
);
color
:
#fff
;
display
:
none
;
left
:
50%
;
margin-left
:
-242.5px
;
padding
:
8px
;
position
:
absolute
;
top
:
170px
;
width
:
485px
;
z-index
:
10
;
}
.modal.visible
{
display
:
block
;
}
.modal.login-modal
{
left
:
50%
;
margin-left
:
-242.5px
;
min-height
:
410px
;
min-width
:
485px
;
position
:
absolute
;
top
:
150px
;
}
.modal.login-modal
.inner-wrapper
{
height
:
410px
;
}
.modal.signup-modal
{
left
:
50%
;
margin-left
:
-242.5px
;
min-height
:
965px
;
min-width
:
485px
;
position
:
absolute
;
top
:
150px
;
}
.modal.signup-modal
.inner-wrapper
{
height
:
965px
;
}
.modal
.inner-wrapper
{
background
:
#f0f0f0
;
-webkit-border-radius
:
0px
;
...
...
@@ -1741,6 +1727,7 @@ header.app {
-moz-box-shadow
:
inset
0
1px
0
0
rgba
(
255
,
255
,
255
,
0.7
);
box-shadow
:
inset
0
1px
0
0
rgba
(
255
,
255
,
255
,
0.7
);
overflow
:
hidden
;
padding-bottom
:
30px
;
position
:
relative
;
}
.modal
.inner-wrapper
header
{
margin-bottom
:
30px
;
...
...
@@ -1786,7 +1773,7 @@ header.app {
z-index
:
2
;
}
.modal
.inner-wrapper
form
{
margin-bottom
:
12px
;
padding
:
0px
2
0px
;
padding
:
0px
4
0px
;
position
:
relative
;
z-index
:
2
;
}
.modal
.inner-wrapper
form
label
{
...
...
@@ -1826,7 +1813,7 @@ header.app {
text-decoration
:
underline
;
}
.modal
.inner-wrapper
form
.honor-code-summary
{
margin-bottom
:
20px
;
padding
:
0px
10px
;
padding
:
0px
;
position
:
relative
;
}
.modal
.inner-wrapper
form
.honor-code-summary
p
{
color
:
#a0a0a0
;
...
...
@@ -1856,12 +1843,12 @@ header.app {
.modal
.inner-wrapper
form
.honor-code-summary
ul
li
:last-child
{
margin-bottom
:
0px
;
}
.modal
.inner-wrapper
form
.submit
{
padding-top
:
1
8
px
;
}
padding-top
:
1
0
px
;
}
.modal
.inner-wrapper
form
.submit
input
[
type
=
"submit"
]
{
display
:
block
;
height
:
45px
;
margin
:
0
auto
;
width
:
7
0%
;
}
width
:
10
0%
;
}
.modal
.inner-wrapper
.login-extra
{
position
:
relative
;
z-index
:
2
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment