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
c53483ce
Commit
c53483ce
authored
Jan 31, 2012
by
Kyle Fiedler
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
94016f8b
dd66eecf
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
121 additions
and
9 deletions
+121
-9
profile.html
+4
-2
sass/_askbot-original.scss
+0
-0
sass/_base.scss
+6
-0
sass/_discussion-questions.scss
+38
-4
sass/_discussion-tags.scss
+2
-2
sass/_question-view.scss
+70
-0
sass/application.scss
+1
-1
No files found.
profile.html
View file @
c53483ce
...
...
@@ -84,8 +84,10 @@ $(function() {
<!-- <div><a class="modal" href="#change_password_pop">Reset password</a></div> -->
<div
id=
"change_password_pop"
>
<h2>
Password reset
</h2>
<p>
We'll e-mail you a password reset link at ${email}. Follow the link in the email to reset your password.
</p>
<h2>
Password change
</h2>
<p>
We'll e-mail you a password reset link at ${email}. Follow
the link in the confirmation email to change your
password.
</p>
<input
id=
"id_email"
type=
"hidden"
name=
"email"
maxlength=
"75"
value=
"${email}"
/>
<input
type=
"submit"
id=
"pwd_reset_button"
value=
"Reset Password"
/>
...
...
sass/_askbot-original.scss
View file @
c53483ce
This diff is collapsed.
Click to expand it.
sass/_base.scss
View file @
c53483ce
...
...
@@ -2,6 +2,12 @@
outline-color
:
#ccc
;
}
h1
,
h2
,
h3
,
h4
,
h5
,
h6
{
a
{
color
:
#000
;
}
}
h1
{
font-size
:
1
.6em
;
margin
:
20px
0
10px
0
;
...
...
sass/_discussion-questions.scss
View file @
c53483ce
...
...
@@ -74,10 +74,6 @@ ul.question-list {
font-weight
:
normal
;
margin
:
0px
0
15px
0
;
text-transform
:
none
;
a
{
color
:
#000
;
}
}
div
.user-info
{
...
...
@@ -158,3 +154,41 @@ div.search-tips {
.search-result-summary
{
}
div
.post-update-info
{
@include
box-sizing
(
border-box
);
@include
border-radius
(
5px
);
background
:lighten
(
#F6EFD4
,
5
%
)
;
padding
:
10px
;
a
{
color
:
$mit-red
;
}
div
.change-date
{
font-size
:
12px
;
margin-bottom
:
10px
;
}
div
.avatar
{
display
:
inline-block
;
float
:
left
;
margin-right
:
3px
;
img
.gravatar
{
background
:
white
;
border
:
1px
solid
darken
(
#F6EFD4
,
10%
);
margin-right
:
5px
;
padding
:
3px
;
vertical-align
:
bottom
;
}
}
div
.user-meta
{
display
:
inline-block
;
width
:
60%
;
span
.user-badges
{
display
:
block
;
}
}
}
sass/_discussion-tags.scss
View file @
c53483ce
...
...
@@ -10,13 +10,13 @@ ul.tags {
display
:
inline
;
font-size
:
12px
;
margin-left
:
15px
;
padding
:
5
px
10px
5px
5px
;
padding
:
3
px
10px
5px
5px
;
&
:before
{
content
:
""
;
position
:absolute
;
top
:
0
;
left
:
-1
2
px
;
left
:
-1
1
px
;
width
:
0
;
height
:
0
;
border-color
:transparent
#eee
transparent
transparent
;
...
...
sass/_question-view.scss
0 → 100644
View file @
c53483ce
div
.question-header
{
div
.vote-buttons
{
display
:
inline-block
;
float
:
left
;
width
:
flex-grid
(
1
,
9
);
margin-right
:
flex-gutter
(
9
);
}
div
.question-container
{
display
:
inline-block
;
float
:
left
;
width
:
flex-grid
(
8
,
9
);
h1
{
margin-top
:
0
;
}
div
.meta-bar
{
border-bottom
:
1px
solid
#eee
;
display
:
block
;
margin
:
20px
0
10px
;
overflow
:
hidden
;
padding-bottom
:
15px
;
div
.tag-list
{
display
:
inline-block
;
float
:left
;
width
:
flex-grid
(
4
,
8
);
margin-right
:
flex-gutter
(
8
);
}
div
.question-actions
{
display
:
inline-block
;
float
:left
;
text-align
:
right
;
width
:
flex-grid
(
4
,
8
);
a
{
color
:
darken
(
#F6EFD4
,
50%
);
&
.question-delete
{
color
:
$mit-red
;
}
}
span
.sep
{
color
:
darken
(
#F6EFD4
,
10%
);
}
}
}
div
.question-content
{
overflow
:
hidden
;
div
.question-body
{
display
:
inline-block
;
float
:
left
;
margin-right
:
flex-gutter
(
8
);
width
:
flex-grid
(
6
.2
,
8
);
}
div
.post-update-info
{
display
:
inline-block
;
float
:
left
;
width
:
flex-grid
(
1
.8
,
8
);
}
}
}
}
sass/application.scss
View file @
c53483ce
...
...
@@ -14,7 +14,7 @@
@import
"wiki-basic-html"
,
"wiki-create"
,
"wiki"
;
@import
"activation"
;
@import
"help"
;
@import
"askbot-original"
,
"discussion"
,
"discussion-questions"
,
"discussion-tags"
;
@import
"askbot-original"
,
"discussion"
,
"discussion-questions"
,
"discussion-tags"
,
"question-view"
;
// left over
@import
"theme"
;
...
...
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