Skip to content

Commit

Permalink
remove comment changes
Browse files Browse the repository at this point in the history
  • Loading branch information
IDzyre committed Apr 30, 2024
1 parent e8b91ff commit b0eb26a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions source/index.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ Note that the endpoint builds a course based on a prior course offering (called

Parameter | Description
--------- | -----------
course_semester | semester of the new course
course_semester | Semester of the new course
course_title | Title (or code) of the new course
head_instructor | Head instructor of the new course
base_course_semester | semester of the base course
base_course_semester | Semester of the base course
base_course_title | Title (or code) of the base course

# Courses.Users
Expand Down
14 changes: 9 additions & 5 deletions source/stylesheets/screen.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@import 'normalize';
@import 'variables';
@import 'icon-font';
/*@import 'rtl'; // uncomment to switch to RTL format*/
// @import 'rtl'; // uncomment to switch to RTL format

/*
Copyright 2008-2013 Concur Technologies, Inc.
Expand Down Expand Up @@ -33,7 +33,7 @@ html, body {
@extend %default-font;
background-color: $main-bg;
height: 100%;
-webkit-text-size-adjust: none;
-webkit-text-size-adjust: none; /* Never autoresize text */
}

////////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -62,6 +62,7 @@ html, body {
font-size: 13px;
font-weight: bold;

// language selector for mobile devices
.lang-selector {
display: none;
a {
Expand All @@ -70,6 +71,7 @@ html, body {
}
}

// This is the logo at the top of the ToC
.logo {
display: block;
max-width: 100%;
Expand All @@ -89,7 +91,7 @@ html, body {
width: $nav-width - ($nav-padding*2);
outline: none;
color: $nav-text;
border-radius: 0;
border-radius: 0; /* ios has a default border radius */
}

&:before {
Expand Down Expand Up @@ -218,7 +220,7 @@ html, body {
transform: rotate(-90deg) translate(-100%, 0);
border-radius: 0 0 0 5px;
}
padding: 0 1.5em 5em 0;
padding: 0 1.5em 5em 0; // increase touch size area
display: none;
position: fixed;
top: 0;
Expand Down Expand Up @@ -252,7 +254,7 @@ html, body {
background-color: $main-bg;
min-height: 100%;

padding-bottom: 1px;
padding-bottom: 1px; // prevent margin overflow

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

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

Expand Down

0 comments on commit b0eb26a

Please sign in to comment.