Skip to content

Commit b0eb26a

Browse files
committed
remove comment changes
1 parent e8b91ff commit b0eb26a

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

source/index.html.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ Note that the endpoint builds a course based on a prior course offering (called
219219

220220
Parameter | Description
221221
--------- | -----------
222-
course_semester | semester of the new course
222+
course_semester | Semester of the new course
223223
course_title | Title (or code) of the new course
224224
head_instructor | Head instructor of the new course
225-
base_course_semester | semester of the base course
225+
base_course_semester | Semester of the base course
226226
base_course_title | Title (or code) of the base course
227227

228228
# Courses.Users

source/stylesheets/screen.css.scss

+9-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
@import 'normalize';
33
@import 'variables';
44
@import 'icon-font';
5-
/*@import 'rtl'; // uncomment to switch to RTL format*/
5+
// @import 'rtl'; // uncomment to switch to RTL format
66

77
/*
88
Copyright 2008-2013 Concur Technologies, Inc.
@@ -33,7 +33,7 @@ html, body {
3333
@extend %default-font;
3434
background-color: $main-bg;
3535
height: 100%;
36-
-webkit-text-size-adjust: none;
36+
-webkit-text-size-adjust: none; /* Never autoresize text */
3737
}
3838

3939
////////////////////////////////////////////////////////////////////////////////
@@ -62,6 +62,7 @@ html, body {
6262
font-size: 13px;
6363
font-weight: bold;
6464

65+
// language selector for mobile devices
6566
.lang-selector {
6667
display: none;
6768
a {
@@ -70,6 +71,7 @@ html, body {
7071
}
7172
}
7273

74+
// This is the logo at the top of the ToC
7375
.logo {
7476
display: block;
7577
max-width: 100%;
@@ -89,7 +91,7 @@ html, body {
8991
width: $nav-width - ($nav-padding*2);
9092
outline: none;
9193
color: $nav-text;
92-
border-radius: 0;
94+
border-radius: 0; /* ios has a default border radius */
9395
}
9496

9597
&:before {
@@ -218,7 +220,7 @@ html, body {
218220
transform: rotate(-90deg) translate(-100%, 0);
219221
border-radius: 0 0 0 5px;
220222
}
221-
padding: 0 1.5em 5em 0;
223+
padding: 0 1.5em 5em 0; // increase touch size area
222224
display: none;
223225
position: fixed;
224226
top: 0;
@@ -252,7 +254,7 @@ html, body {
252254
background-color: $main-bg;
253255
min-height: 100%;
254256

255-
padding-bottom: 1px;
257+
padding-bottom: 1px; // prevent margin overflow
256258

257259
// The dark box is what gives the code samples their dark background.
258260
// It sits essentially under the actual content block, which has a
@@ -312,7 +314,9 @@ html, body {
312314
// This is all the stuff with the light background in the left half of the page
313315

314316
.content {
317+
// fixes webkit rendering bug for some: see #538
315318
-webkit-transform: translateZ(0);
319+
// to place content above the dark box
316320
position: relative;
317321
z-index: 30;
318322

0 commit comments

Comments
 (0)