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
1cf7ccc3
Commit
1cf7ccc3
authored
Mar 19, 2015
by
Mark Sadecki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dropped element selector in CSS and test file
parent
57d7973c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
common/test/acceptance/pages/lms/dashboard.py
+1
-1
lms/static/sass/multicourse/_dashboard.scss
+2
-1
No files found.
common/test/acceptance/pages/lms/dashboard.py
View file @
1cf7ccc3
...
...
@@ -64,7 +64,7 @@ class DashboardPage(PageObject):
@property
def
username
(
self
):
"""Return the displayed value for the user's username"""
return
self
.
q
(
css
=
'
h1
.user-name'
)
.
text
[
0
]
return
self
.
q
(
css
=
'.user-name'
)
.
text
[
0
]
def
get_enrollment_mode
(
self
,
course_name
):
"""Get the enrollment mode for a given course on the dashboard.
...
...
lms/static/sass/multicourse/_dashboard.scss
View file @
1cf7ccc3
...
...
@@ -20,7 +20,7 @@
width
:
flex-grid
(
12
);
background
:
$dashboard-profile-color
;
h
1
.user-name
{
h
2
.user-name
{
overflow
:
hidden
;
margin
:
0
;
padding
:
(
$baseline
*
0
.75
)
(
$baseline
/
2
);
...
...
@@ -28,6 +28,7 @@
text-transform
:
none
;
text-wrap
:
nowrap
;
text-overflow
:
ellipsis
;
text-align
:
center
;
font
:
700
1
.2em
/
1
.2em
$sans-serif
;
}
}
...
...
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