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
1159b14b
Commit
1159b14b
authored
Aug 20, 2012
by
Bridger Maxwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:MITx/mitx
parents
70c7ee42
38f96b72
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
40 deletions
+36
-40
common/lib/xmodule/xmodule/css/capa/display.scss
+0
-22
lms/static/sass/course/base/_base.scss
+12
-0
lms/static/sass/course/base/_extends.scss
+21
-15
lms/static/sass/course/discussion/_sidebar.scss
+3
-3
No files found.
common/lib/xmodule/xmodule/css/capa/display.scss
View file @
1159b14b
h2
{
h2
{
margin-top
:
0
;
margin-top
:
0
;
margin-bottom
:
15px
;
margin-bottom
:
15px
;
width
:
flex-grid
(
2
,
9
);
padding-right
:
flex-gutter
(
9
);
border-right
:
1px
dashed
#ddd
;
@include
box-sizing
(
border-box
);
display
:
table-cell
;
vertical-align
:
top
;
&
.problem-header
{
&
.problem-header
{
section
.staff
{
section
.staff
{
...
@@ -15,12 +9,6 @@ h2 {
...
@@ -15,12 +9,6 @@ h2 {
}
}
}
}
@media
screen
and
(
max-width
:
1120px
)
{
display
:
block
;
width
:
auto
;
border-right
:
0
;
}
@media
print
{
@media
print
{
display
:
block
;
display
:
block
;
width
:
auto
;
width
:
auto
;
...
@@ -29,16 +17,6 @@ h2 {
...
@@ -29,16 +17,6 @@ h2 {
}
}
section
.problem
{
section
.problem
{
display
:
table-cell
;
width
:
flex-grid
(
7
,
9
);
padding-left
:
flex-gutter
(
9
);
@media
screen
and
(
max-width
:
1120px
)
{
display
:
block
;
width
:
auto
;
padding
:
0
;
}
@media
print
{
@media
print
{
display
:
block
;
display
:
block
;
width
:
auto
;
width
:
auto
;
...
...
lms/static/sass/course/base/_base.scss
View file @
1159b14b
...
@@ -53,6 +53,18 @@ input[type="password"] {
...
@@ -53,6 +53,18 @@ input[type="password"] {
}
}
}
}
input
[
type
=
"reset"
],
input
[
type
=
"submit"
],
input
[
type
=
"button"
],
button
,
.button
{
@extend
.gray-button
;
form
&
{
@extend
.gray-button
;
}
}
img
{
img
{
max-width
:
100%
;
max-width
:
100%
;
...
...
lms/static/sass/course/base/_extends.scss
View file @
1159b14b
...
@@ -6,28 +6,34 @@ h1.top-header {
...
@@ -6,28 +6,34 @@ h1.top-header {
padding-bottom
:
lh
();
padding-bottom
:
lh
();
}
}
.light-button
,
a
.light-button
{
.button-reset
{
border
:
1px
solid
#ccc
;
@include
border-radius
(
3px
);
@include
box-shadow
(
inset
0
1px
0
#fff
);
color
:
#666
;
cursor
:
pointer
;
font
:
400
$body-font-size
$body-font-family
;
@include
linear-gradient
(
#fff
,
lighten
(
#888
,
40%
));
padding
:
4px
8px
;
text-decoration
:
none
;
text-shadow
:
none
;
text-transform
:
none
;
text-transform
:
none
;
letter-spacing
:
0
;
letter-spacing
:
0
;
-webkit-font-smoothing
:
antialiased
;
&
:hover
,
&
:focus
{
&
:hover
{
border
:
1px
solid
#ccc
;
@include
linear-gradient
(
#fff
,
lighten
(
#888
,
37%
));
text-decoration
:
none
;
text-decoration
:
none
;
}
}
}
}
.light-button
,
a
.light-button
,
//
only
used
in
askbot
as
classes
.gray-button
{
@include
button
(
simple
,
#eee
);
@extend
.button-reset
;
font-size
:
em
(
13
);
}
.blue-button
{
@include
button
(
simple
,
$blue
);
@extend
.button-reset
;
font-size
:
em
(
13
);
}
.pink-button
{
@include
button
(
simple
,
$pink
);
@extend
.button-reset
;
font-size
:
em
(
13
);
}
.content
{
.content
{
@include
box-sizing
(
border-box
);
@include
box-sizing
(
border-box
);
display
:
table-cell
;
display
:
table-cell
;
...
...
lms/static/sass/course/discussion/_sidebar.scss
View file @
1159b14b
...
@@ -43,8 +43,8 @@ div.discussion-wrapper aside {
...
@@ -43,8 +43,8 @@ div.discussion-wrapper aside {
width
:
27%
;
width
:
27%
;
float
:
right
;
float
:
right
;
text-align
:
center
;
text-align
:
center
;
padding
-left
:
0
;
padding
:
4px
0
;
padding-right
:
0
;
text-transform
:
capitalize
;
}
}
input
[
type
=
"text"
]
{
input
[
type
=
"text"
]
{
...
@@ -300,7 +300,7 @@ div.discussion-wrapper aside {
...
@@ -300,7 +300,7 @@ div.discussion-wrapper aside {
border-top
:
0
;
border-top
:
0
;
a
{
a
{
@extend
.
light
-button
;
@extend
.
gray
-button
;
@include
box-sizing
(
border-box
);
@include
box-sizing
(
border-box
);
display
:
block
;
display
:
block
;
text-align
:
center
;
text-align
:
center
;
...
...
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