Merge pull request #9753 from edx/sass-whitespace-cleanup
Remove trailing whitespace from Sass files
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
// studio - base styling
|
||||
// ====================
|
||||
|
||||
// Table of Contents
|
||||
// * +Basic Setup
|
||||
// Table of Contents
|
||||
// * +Basic Setup
|
||||
// * +Typography - Basic
|
||||
// * +Typography - Primary Content
|
||||
// * +Typography - Secondary Content
|
||||
@@ -19,7 +19,7 @@
|
||||
// * +JS Dependent
|
||||
|
||||
// +Basic Setup
|
||||
// ====================
|
||||
// ====================
|
||||
html {
|
||||
font-size: 62.5%;
|
||||
height: 102%; // force scrollbar to prevent jump when scroll appears, cannot use overflow because it breaks drag
|
||||
@@ -66,7 +66,7 @@ h1 {
|
||||
}
|
||||
|
||||
// +Typography - Basic
|
||||
// ====================
|
||||
// ====================
|
||||
.page-header {
|
||||
@extend %t-title3;
|
||||
@extend %t-strong;
|
||||
@@ -111,7 +111,7 @@ h1 {
|
||||
}
|
||||
|
||||
// +Typography - Primary Content
|
||||
// ====================
|
||||
// ====================
|
||||
.content-primary {
|
||||
|
||||
.section-header {
|
||||
@@ -148,7 +148,7 @@ h1 {
|
||||
}
|
||||
|
||||
// +Typography - Secondary Content
|
||||
// ====================
|
||||
// ====================
|
||||
.content-secondary {
|
||||
|
||||
.section-header {
|
||||
@@ -177,7 +177,7 @@ h1 {
|
||||
}
|
||||
|
||||
// +Typography - Loose Headings (BT: needs to be removed once html is clean)
|
||||
// ====================
|
||||
// ====================
|
||||
.title-1, .title-2, .title-3, .title-4, .title-5, .title-6 {
|
||||
@extend %t-strong;
|
||||
}
|
||||
@@ -226,13 +226,13 @@ p, ul, ol, dl {
|
||||
}
|
||||
|
||||
// +Layout - Basic
|
||||
// ====================
|
||||
// ====================
|
||||
.wrapper-view {
|
||||
|
||||
}
|
||||
|
||||
// +Layout - Basic Page Header
|
||||
// ====================
|
||||
// ====================
|
||||
.wrapper-mast {
|
||||
margin: ($baseline*1.5) 0 0 0;
|
||||
padding: 0 $baseline;
|
||||
@@ -375,7 +375,7 @@ p, ul, ol, dl {
|
||||
}
|
||||
|
||||
// +Layout - Basic Page Content
|
||||
// ====================
|
||||
// ====================
|
||||
.wrapper-content {
|
||||
margin: 0;
|
||||
padding: 0 $baseline;
|
||||
@@ -419,7 +419,7 @@ p, ul, ol, dl {
|
||||
}
|
||||
|
||||
// +Layout - Primary Content
|
||||
// ====================
|
||||
// ====================
|
||||
.content-primary {
|
||||
|
||||
.title-1 {
|
||||
@@ -457,7 +457,7 @@ p, ul, ol, dl {
|
||||
}
|
||||
|
||||
// +Layout - Supplemental Content
|
||||
// ====================
|
||||
// ====================
|
||||
.content-supplementary {
|
||||
|
||||
> section {
|
||||
@@ -466,7 +466,7 @@ p, ul, ol, dl {
|
||||
}
|
||||
|
||||
// +Layout - Grandfathered
|
||||
// ====================
|
||||
// ====================
|
||||
.main-wrapper {
|
||||
position: relative;
|
||||
margin: 0 ($baseline*2);
|
||||
@@ -503,7 +503,7 @@ p, ul, ol, dl {
|
||||
}
|
||||
|
||||
// +UI - Actions
|
||||
// ====================
|
||||
// ====================
|
||||
.new-unit-item,
|
||||
.new-subsection-item,
|
||||
.new-policy-item {
|
||||
@@ -535,7 +535,7 @@ p, ul, ol, dl {
|
||||
}
|
||||
|
||||
// +UI - Misc
|
||||
// ====================
|
||||
// ====================
|
||||
hr.divide {
|
||||
@extend %cont-text-sr;
|
||||
}
|
||||
@@ -623,7 +623,7 @@ hr.divide {
|
||||
|
||||
|
||||
// +Utility - Basic
|
||||
// ====================
|
||||
// ====================
|
||||
|
||||
// UI - semantically hide text
|
||||
.sr {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// studio - utilities - variables
|
||||
// ====================
|
||||
|
||||
// Table of Contents
|
||||
// Table of Contents
|
||||
// * +Grid
|
||||
// * +Fonts
|
||||
// * +Colors - Utility
|
||||
@@ -16,7 +16,7 @@
|
||||
$baseline: 20px;
|
||||
|
||||
// +Grid
|
||||
// ====================
|
||||
// ====================
|
||||
$gw-column: ($baseline*3);
|
||||
$gw-gutter: $baseline;
|
||||
$fg-column: $gw-column;
|
||||
@@ -26,16 +26,16 @@ $fg-max-width: 1280px;
|
||||
$fg-min-width: 900px;
|
||||
|
||||
// +Fonts
|
||||
// ====================
|
||||
// ====================
|
||||
$f-sans-serif: 'Open Sans','Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
$f-monospace: 'Bitstream Vera Sans Mono', Consolas, Courier, monospace;
|
||||
|
||||
// +Colors - Utility
|
||||
// ====================
|
||||
// ====================
|
||||
$transparent: rgba(0,0,0,0); // used when color value is needed for UI width/transitions but element is transparent
|
||||
|
||||
// +Colors - Primary
|
||||
// ====================
|
||||
// ====================
|
||||
$black: rgb(0,0,0);
|
||||
$black-t0: rgba($black, 0.125);
|
||||
$black-t1: rgba($black, 0.25);
|
||||
@@ -168,7 +168,7 @@ $orange-u2: desaturate($orange,30%);
|
||||
$orange-u3: desaturate($orange,45%);
|
||||
|
||||
// +Colors - Shadows
|
||||
// ====================
|
||||
// ====================
|
||||
$shadow: rgba($black, 0.2);
|
||||
$shadow-l1: rgba($black, 0.1);
|
||||
$shadow-l2: rgba($black, 0.05);
|
||||
@@ -176,7 +176,7 @@ $shadow-d1: rgba($black, 0.4);
|
||||
$shadow-d2: rgba($black, 0.6);
|
||||
|
||||
// +Colors - Application
|
||||
// ====================
|
||||
// ====================
|
||||
$color-draft: $gray-l3;
|
||||
$color-live: $blue;
|
||||
$color-ready: $green;
|
||||
@@ -190,7 +190,7 @@ $color-copy-base: $gray-l1;
|
||||
$color-copy-emphasized: $gray-d2;
|
||||
|
||||
// +Timing
|
||||
// ====================
|
||||
// ====================
|
||||
// used for animation/transition mixin syncing
|
||||
$tmg-s3: 3.0s;
|
||||
$tmg-s2: 2.0s;
|
||||
@@ -201,7 +201,7 @@ $tmg-f2: 0.25s;
|
||||
$tmg-f3: 0.125s;
|
||||
|
||||
// +Archetype UI
|
||||
// ====================
|
||||
// ====================
|
||||
$ui-action-primary-color: $blue-u2;
|
||||
$ui-action-primary-color-focus: $blue-s1;
|
||||
|
||||
@@ -209,12 +209,12 @@ $ui-link-color: $blue-u2;
|
||||
$ui-link-color-focus: $blue-s1;
|
||||
|
||||
// +Specific UI
|
||||
// ====================
|
||||
// ====================
|
||||
$ui-notification-height: ($baseline*10);
|
||||
$ui-update-color: $blue-l4;
|
||||
|
||||
// +Deprecated
|
||||
// ====================
|
||||
// +Deprecated
|
||||
// ====================
|
||||
// do not use, future clean up will use updated styles
|
||||
$baseFontColor: $gray-d2;
|
||||
$lighter-base-font-color: rgb(100,100,100);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// studio animations & keyframes
|
||||
// ====================
|
||||
|
||||
// Table of Contents
|
||||
// Table of Contents
|
||||
// * +Fade In - Extend
|
||||
// * +Fade Out - Extend
|
||||
// * +Rotate Up - Extend
|
||||
@@ -16,7 +16,7 @@
|
||||
// * +Dropped - Extend
|
||||
|
||||
// +Fade In - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
// fade in keyframes
|
||||
@include keyframes(fadeIn) {
|
||||
0% {
|
||||
@@ -38,9 +38,9 @@
|
||||
}
|
||||
|
||||
// +Fade Out - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
// fade out keyframes
|
||||
@include keyframes(fadeOut) {
|
||||
@include keyframes(fadeOut) {
|
||||
0% {
|
||||
opacity: 1.0;
|
||||
}
|
||||
@@ -60,7 +60,7 @@
|
||||
}
|
||||
|
||||
// +Rotate Up - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
// rotate up keyframes
|
||||
@include keyframes(rotateUp) {
|
||||
0% {
|
||||
@@ -262,7 +262,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
// flash double animation
|
||||
// flash double animation
|
||||
%anim-flashDouble {
|
||||
@include animation(flashDouble $tmg-f1 ease-in-out 1);
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// studio - elements - UI controls
|
||||
// ====================
|
||||
|
||||
// Table of Contents
|
||||
// Table of Contents
|
||||
// * +General Action - Extend
|
||||
// * +General Type and Size - Extend
|
||||
// * +Primary Button - Extends
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
// +General Action - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
%action {
|
||||
@extend %ui-fake-link;
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
}
|
||||
|
||||
// +General Type and Size - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
%sizing {
|
||||
@extend %t-action4;
|
||||
padding: ($baseline/4) ($baseline/2) ($baseline/3) ($baseline/2);
|
||||
@@ -36,7 +36,7 @@
|
||||
|
||||
|
||||
// +Primary Button - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
// gray primary button
|
||||
%btn-primary-gray {
|
||||
@extend %ui-btn-primary;
|
||||
@@ -106,7 +106,7 @@
|
||||
}
|
||||
|
||||
// +Secondary Button - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
// gray secondary button
|
||||
%btn-secondary-gray {
|
||||
@extend %ui-btn-secondary;
|
||||
@@ -193,7 +193,7 @@
|
||||
}
|
||||
|
||||
// +Button Element
|
||||
// ====================
|
||||
// ====================
|
||||
.button {
|
||||
|
||||
.icon {
|
||||
@@ -385,7 +385,7 @@
|
||||
cursor: move;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// UI: is draggable
|
||||
.is-draggable {
|
||||
@include transition(border-color $tmg-f2 ease-in-out 0, box-shadow $tmg-f2 ease-in-out 0, margin $tmg-f2 ease-in-out 0);
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
// Table of Contents
|
||||
// * +Layout - Xblocks
|
||||
// * +Licensing - Xblocks
|
||||
// * +Pagination - Xblocks
|
||||
// * +Pagination - Xblocks
|
||||
// * +Messaging - Xblocks
|
||||
// * +Case: Page Level
|
||||
// * +Case: Nesting Level
|
||||
@@ -14,7 +14,7 @@
|
||||
// * +Case - Special Xblock Type Overrides
|
||||
|
||||
|
||||
// +Layout - Xblocks
|
||||
// +Layout - Xblocks
|
||||
// ====================
|
||||
// styling for xblocks at various levels of nesting: page level,
|
||||
.wrapper-xblock {
|
||||
@@ -116,7 +116,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
// +Licensing - Xblocks
|
||||
// +Licensing - Xblocks
|
||||
// ====================
|
||||
.xblock-license,
|
||||
.xmodule_display.xmodule_HtmlModule .xblock-license,
|
||||
@@ -157,7 +157,7 @@
|
||||
}
|
||||
|
||||
|
||||
// +Pagination - Xblocks
|
||||
// +Pagination - Xblocks
|
||||
.container-paging-header {
|
||||
.meta-wrap {
|
||||
margin: $baseline ($baseline/2);
|
||||
@@ -910,7 +910,7 @@ div.wrapper-comp-editor.is-inactive ~ div.launch-latex-compiler {
|
||||
@extend %t-copy-sub2;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.wrapper-license-options {
|
||||
margin-bottom: ($baseline/2);
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
// ------------------------------------------
|
||||
// left to right module
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
@import 'variables-ltr';
|
||||
@import 'mixins';
|
||||
@import 'mixins';
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
// ------------------------------------------
|
||||
// right to left module
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
@import 'variables-rtl';
|
||||
@import 'mixins';
|
||||
@import 'mixins';
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
// ------------------------------------------
|
||||
// left to right variables to be used by bi-app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
// namespacing variables with bi-app to
|
||||
// avoid conflicting with other global variables
|
||||
$bi-app-left : left;
|
||||
$bi-app-right : right;
|
||||
$bi-app-direction : ltr;
|
||||
$bi-app-invert-direction: rtl;
|
||||
$bi-app-left : left;
|
||||
$bi-app-right : right;
|
||||
$bi-app-direction : ltr;
|
||||
$bi-app-invert-direction: rtl;
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
// ------------------------------------------
|
||||
// right to left variables to be used by bi-app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
// namespacing variables with bi-app to
|
||||
// avoid conflicting with other global variables
|
||||
$bi-app-left : right;
|
||||
$bi-app-left : right;
|
||||
$bi-app-right : left;
|
||||
$bi-app-direction : rtl;
|
||||
$bi-app-invert-direction: ltr;
|
||||
$bi-app-direction : rtl;
|
||||
$bi-app-invert-direction: ltr;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// studio - views - certificates
|
||||
// ====================
|
||||
|
||||
// Table of Contents
|
||||
// Table of Contents
|
||||
// * +Layout - Certificates
|
||||
// * +Main - Collection
|
||||
// * +Main - Certificate
|
||||
@@ -510,7 +510,7 @@
|
||||
|
||||
// * +Signatories -Certificate
|
||||
// ====================
|
||||
// TO-DO: refactor to use collection styling where possible.
|
||||
// TO-DO: refactor to use collection styling where possible.
|
||||
.view-certificates .certificates {
|
||||
|
||||
.signatory-details, .signatory-edit {
|
||||
@@ -694,4 +694,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -225,7 +225,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.input-minimum-grade {
|
||||
@include float(left);
|
||||
@include size(92%,100%);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// common - utilities - mixins and extends
|
||||
// ====================
|
||||
|
||||
// Table of Contents
|
||||
// Table of Contents
|
||||
// * +Font Sizing - Mixin
|
||||
// * +Line Height - Mixin
|
||||
// * +Sizing - Mixin
|
||||
@@ -26,34 +26,34 @@
|
||||
// * +Icon - Font-Awesome - Extend
|
||||
|
||||
// +Font Sizing - Mixin
|
||||
// ====================
|
||||
// ====================
|
||||
@mixin font-size($sizeValue: 16){
|
||||
font-size: $sizeValue + px;
|
||||
font-size: ($sizeValue/10) + rem;
|
||||
}
|
||||
|
||||
// +Line Height - Mixin
|
||||
// ====================
|
||||
// ====================
|
||||
@mixin line-height($fontSize: auto){
|
||||
line-height: ($fontSize*1.48) + px;
|
||||
line-height: (($fontSize/10)*1.48) + rem;
|
||||
}
|
||||
|
||||
// +Sizing - Mixin
|
||||
// ====================
|
||||
// ====================
|
||||
@mixin size($width: $baseline, $height: $baseline) {
|
||||
height: $height;
|
||||
width: $width;
|
||||
}
|
||||
|
||||
// +Square - Mixin
|
||||
// ====================
|
||||
// ====================
|
||||
@mixin square($size: $baseline) {
|
||||
@include size($size);
|
||||
}
|
||||
|
||||
// +Placeholder Styling - Mixin
|
||||
// ====================
|
||||
// ====================
|
||||
@mixin placeholder($color) {
|
||||
:-moz-placeholder {
|
||||
color: $color;
|
||||
@@ -67,7 +67,7 @@
|
||||
}
|
||||
|
||||
// +Flex Support - Mixin
|
||||
// ====================
|
||||
// ====================
|
||||
@mixin ui-flexbox() {
|
||||
display: -webkit-box;
|
||||
display: -moz-box;
|
||||
@@ -77,7 +77,7 @@
|
||||
}
|
||||
|
||||
// +Flex PolyFill - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
|
||||
// justify-content right for display:flex alignment in older browsers
|
||||
%ui-justify-right-flex {
|
||||
@@ -107,7 +107,7 @@
|
||||
|
||||
|
||||
// +UI - Wrapper - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
// used for page/view-level wrappers (for centering/grids)
|
||||
%ui-wrapper {
|
||||
@include clearfix();
|
||||
@@ -128,7 +128,7 @@
|
||||
}
|
||||
|
||||
// +UI - Window - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
%ui-window {
|
||||
@include clearfix();
|
||||
border-radius: ($baseline/10);
|
||||
@@ -144,13 +144,13 @@
|
||||
}
|
||||
|
||||
// +UI - Visual Link - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
%ui-fake-link {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
// +UI - Functional Disable - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
%ui-disabled {
|
||||
pointer-events: none;
|
||||
outline: none;
|
||||
@@ -158,7 +158,7 @@
|
||||
}
|
||||
|
||||
// +UI - Depth Levels - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
%ui-depth0 { z-index: 0; }
|
||||
%ui-depth1 { z-index: 10; }
|
||||
%ui-depth2 { z-index: 100; }
|
||||
@@ -168,7 +168,7 @@
|
||||
|
||||
|
||||
// +UI - Clear Children - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
// extends - UI - utility - first child clearing
|
||||
%wipe-first-child {
|
||||
|
||||
@@ -190,7 +190,7 @@
|
||||
}
|
||||
|
||||
// +UI - Buttons - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
%ui-btn {
|
||||
@include box-sizing(border-box);
|
||||
@include transition(color $tmg-f2 ease-in-out 0s, border-color $tmg-f2 ease-in-out 0s, background $tmg-f2 ease-in-out 0s, box-shadow $tmg-f2 ease-in-out 0s);
|
||||
@@ -329,7 +329,7 @@
|
||||
}
|
||||
|
||||
// +UI - Well Archetype - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
%ui-well {
|
||||
box-shadow: inset 0 1px 2px 1px $shadow;
|
||||
padding: ($baseline*0.75) $baseline;
|
||||
@@ -378,7 +378,7 @@
|
||||
}
|
||||
|
||||
// +Content - No List - Extends
|
||||
// ====================
|
||||
// ====================
|
||||
// removes list styling/spacing when using uls, ols for navigation and less content-centric cases
|
||||
%cont-no-list {
|
||||
list-style: none;
|
||||
@@ -393,7 +393,7 @@
|
||||
}
|
||||
|
||||
// +Content - Hidden Image Text - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
// image-replacement hidden text
|
||||
%cont-text-hide {
|
||||
text-indent: 100%;
|
||||
@@ -402,7 +402,7 @@
|
||||
}
|
||||
|
||||
// +Content - Screenreader Text - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
%cont-text-sr {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
@@ -415,13 +415,13 @@
|
||||
}
|
||||
|
||||
// +Content - Text Wrap - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
%cont-text-wrap {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
// +Content - Text Truncate - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
%cont-truncated {
|
||||
@include box-sizing(border-box);
|
||||
overflow: hidden;
|
||||
@@ -430,7 +430,7 @@
|
||||
}
|
||||
|
||||
// * +Icon - Font-Awesome - Extend
|
||||
// ====================
|
||||
// ====================
|
||||
%use-font-awesome {
|
||||
display: inline-block;
|
||||
font-family: FontAwesome;
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
padding-left: $baseline;
|
||||
padding-top: $baseline;
|
||||
padding-bottom: $baseline;
|
||||
|
||||
|
||||
.notification {
|
||||
@include news-font;
|
||||
margin-top: ($baseline*0.75);
|
||||
|
||||
@@ -9,4 +9,4 @@
|
||||
.sr-is-focusable:focus,
|
||||
.sr-is-focusable:active {
|
||||
@extend %no-outline;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
padding: ($baseline/2);
|
||||
border: 1px solid black;
|
||||
text-align: center;
|
||||
|
||||
|
||||
p {
|
||||
font-size: 0.9em;
|
||||
text-align: center;
|
||||
@@ -54,7 +54,7 @@
|
||||
}
|
||||
|
||||
.alert-message {
|
||||
|
||||
|
||||
img {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
.rubric {
|
||||
margin: 0;
|
||||
color: #3C3C3C;
|
||||
|
||||
|
||||
tr {
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
@@ -58,7 +58,7 @@
|
||||
.selected-grade,
|
||||
.selected-grade .rubric-label {
|
||||
background: #666;
|
||||
color: white;
|
||||
color: white;
|
||||
}
|
||||
|
||||
input[type=radio]:checked + .rubric-label {
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
div.staff-grading,
|
||||
div.peer-grading {
|
||||
border: 1px solid lightgray;
|
||||
|
||||
|
||||
textarea.feedback-area {
|
||||
margin: 0;
|
||||
height: 75px;
|
||||
}
|
||||
|
||||
|
||||
div.feedback-area.track-changes {
|
||||
position: relative;
|
||||
margin: 0;
|
||||
@@ -76,7 +76,7 @@ div.peer-grading {
|
||||
min-width: 50px;
|
||||
text-size: 1.5em;
|
||||
}
|
||||
|
||||
|
||||
/* Toggled State */
|
||||
input[type=radio]:checked + label {
|
||||
background: #666;
|
||||
@@ -92,15 +92,15 @@ div.peer-grading {
|
||||
width: 100%;
|
||||
table-layout: auto;
|
||||
text-align: center;
|
||||
|
||||
|
||||
th {
|
||||
padding: ($baseline/10);
|
||||
}
|
||||
|
||||
|
||||
td {
|
||||
padding: ($baseline/10);
|
||||
}
|
||||
|
||||
|
||||
td.problem-name {
|
||||
text-align: left;
|
||||
}
|
||||
@@ -124,11 +124,11 @@ div.peer-grading {
|
||||
padding: ($baseline/10);
|
||||
background-color: #ffcccc;
|
||||
}
|
||||
|
||||
|
||||
.submission-wrapper {
|
||||
padding: ($baseline/10);
|
||||
padding-bottom: ($baseline*0.75);
|
||||
|
||||
|
||||
h3 {
|
||||
margin-bottom: ($baseline/10);
|
||||
}
|
||||
@@ -140,7 +140,7 @@ div.peer-grading {
|
||||
.meta-info-wrapper {
|
||||
padding: ($baseline/10);
|
||||
background-color: #eee;
|
||||
|
||||
|
||||
div {
|
||||
display: inline;
|
||||
}
|
||||
@@ -151,7 +151,7 @@ div.peer-grading {
|
||||
padding: ($baseline/10);
|
||||
background-color: $yellow;
|
||||
}
|
||||
|
||||
|
||||
.breadcrumbs {
|
||||
margin: ($baseline/2) ($baseline/4);
|
||||
font-size: .8em;
|
||||
@@ -162,7 +162,7 @@ div.peer-grading {
|
||||
padding: ($baseline/2);
|
||||
background-color: #eee;
|
||||
font-size: .8em;
|
||||
|
||||
|
||||
> div {
|
||||
margin-bottom: ($baseline/4);
|
||||
padding: ($baseline/2);
|
||||
@@ -174,7 +174,7 @@ div.peer-grading {
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
|
||||
p{
|
||||
color: #777;
|
||||
}
|
||||
@@ -192,7 +192,7 @@ div.peer-grading {
|
||||
}
|
||||
.current-state {
|
||||
background: $white;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -205,7 +205,7 @@ div.peer-grading {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.interstitial-page {
|
||||
text-align: center;
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ div.syllabus {
|
||||
td {
|
||||
padding-top: 15px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
td {
|
||||
border: none !important;
|
||||
@@ -50,7 +50,7 @@ div.syllabus {
|
||||
|
||||
&.week_separator {
|
||||
padding: 0px !important;
|
||||
|
||||
|
||||
hr {
|
||||
margin: ($baseline/2);
|
||||
}
|
||||
|
||||
@@ -14,4 +14,4 @@ div.static_tab_wrapper {
|
||||
border: 0;
|
||||
background: transparent !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -145,7 +145,7 @@ div.book-wrapper {
|
||||
display:none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
&.last {
|
||||
left: 0;
|
||||
|
||||
|
||||
@@ -27,45 +27,45 @@
|
||||
}
|
||||
|
||||
#wmd-button-row {
|
||||
position: relative;
|
||||
position: relative;
|
||||
margin-left: ($baseline/4);
|
||||
margin-right: ($baseline/4);
|
||||
margin-bottom: 0px;
|
||||
margin-top: ($baseline/2);
|
||||
padding: 0px;
|
||||
padding: 0px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.wmd-spacer {
|
||||
width: 1px;
|
||||
height: 20px;
|
||||
width: 1px;
|
||||
height: 20px;
|
||||
margin-left: 14px;
|
||||
position: absolute;
|
||||
background-color: Silver;
|
||||
display: inline-block;
|
||||
display: inline-block;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.wmd-button {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-left: ($baseline/4);
|
||||
margin-right: ($baseline/4);
|
||||
position: absolute;
|
||||
background-image: url(../images/wmd-buttons.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0px 0px;
|
||||
display: inline-block;
|
||||
display: inline-block;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.wmd-button > a {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-left: ($baseline/4);
|
||||
margin-right: ($baseline/4);
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -100,4 +100,4 @@
|
||||
margin-right: $baseline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
footer {
|
||||
box-shadow: $courseware-footer-shadow;
|
||||
margin-top: $courseware-footer-margin;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
// CASE: inline styling
|
||||
// TO-DO: additional styling cleanup here necessary, for now this case was ported over from _discussion.scss
|
||||
.discussion-module {
|
||||
|
||||
|
||||
.wmd-panel {
|
||||
width: 100%;
|
||||
min-width: 500px;
|
||||
|
||||
@@ -34,4 +34,4 @@ body.discussion, .discussion-module {
|
||||
@include forum-user-label($forum-color-community-ta);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
// ------------------------------------------
|
||||
// left to right module
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
@import 'variables-ltr';
|
||||
@import 'mixins';
|
||||
@import 'mixins';
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
// ------------------------------------------
|
||||
// right to left module
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
@import 'variables-rtl';
|
||||
@import 'mixins';
|
||||
@import 'mixins';
|
||||
|
||||
4
lms/static/sass/vendor/bi-app/_mixins.scss
vendored
4
lms/static/sass/vendor/bi-app/_mixins.scss
vendored
@@ -1,9 +1,9 @@
|
||||
// ------------------------------------------
|
||||
// bi app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
// ------------------------------------------
|
||||
// left to right variables to be used by bi-app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
// namespacing variables with bi-app to
|
||||
// avoid conflicting with other global variables
|
||||
$bi-app-left : left;
|
||||
$bi-app-right : right;
|
||||
$bi-app-direction : ltr;
|
||||
$bi-app-invert-direction: rtl;
|
||||
$bi-app-left : left;
|
||||
$bi-app-right : right;
|
||||
$bi-app-direction : ltr;
|
||||
$bi-app-invert-direction: rtl;
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
// ------------------------------------------
|
||||
// right to left variables to be used by bi-app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
// namespacing variables with bi-app to
|
||||
// avoid conflicting with other global variables
|
||||
$bi-app-left : right;
|
||||
$bi-app-left : right;
|
||||
$bi-app-right : left;
|
||||
$bi-app-direction : rtl;
|
||||
$bi-app-invert-direction: ltr;
|
||||
$bi-app-direction : rtl;
|
||||
$bi-app-invert-direction: ltr;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// lms - application - account settings
|
||||
// ====================
|
||||
|
||||
// Table of Contents
|
||||
// Table of Contents
|
||||
// * +Container - Account Settings
|
||||
// * +Main - Header
|
||||
// * +Settings Section
|
||||
@@ -13,7 +13,7 @@
|
||||
padding-top: ($baseline*2);
|
||||
|
||||
.account-settings-container {
|
||||
padding: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ui-loading-indicator,
|
||||
|
||||
6
static/vendor/bi-app/_bi-app-ltr.scss
vendored
6
static/vendor/bi-app/_bi-app-ltr.scss
vendored
@@ -1,11 +1,11 @@
|
||||
// ------------------------------------------
|
||||
// left to right module
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
@import 'variables-ltr';
|
||||
@import 'mixins';
|
||||
@import 'mixins';
|
||||
|
||||
6
static/vendor/bi-app/_bi-app-rtl.scss
vendored
6
static/vendor/bi-app/_bi-app-rtl.scss
vendored
@@ -1,11 +1,11 @@
|
||||
// ------------------------------------------
|
||||
// right to left module
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
@import 'variables-rtl';
|
||||
@import 'mixins';
|
||||
@import 'mixins';
|
||||
|
||||
4
static/vendor/bi-app/_mixins.scss
vendored
4
static/vendor/bi-app/_mixins.scss
vendored
@@ -1,9 +1,9 @@
|
||||
// ------------------------------------------
|
||||
// bi app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
|
||||
12
static/vendor/bi-app/_variables-ltr.scss
vendored
12
static/vendor/bi-app/_variables-ltr.scss
vendored
@@ -1,15 +1,15 @@
|
||||
// ------------------------------------------
|
||||
// left to right variables to be used by bi-app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
// namespacing variables with bi-app to
|
||||
// avoid conflicting with other global variables
|
||||
$bi-app-left : left;
|
||||
$bi-app-right : right;
|
||||
$bi-app-direction : ltr;
|
||||
$bi-app-invert-direction: rtl;
|
||||
$bi-app-left : left;
|
||||
$bi-app-right : right;
|
||||
$bi-app-direction : ltr;
|
||||
$bi-app-invert-direction: rtl;
|
||||
|
||||
10
static/vendor/bi-app/_variables-rtl.scss
vendored
10
static/vendor/bi-app/_variables-rtl.scss
vendored
@@ -1,15 +1,15 @@
|
||||
// ------------------------------------------
|
||||
// right to left variables to be used by bi-app mixins
|
||||
// authors:
|
||||
// authors:
|
||||
// twitter.com/anasnakawa
|
||||
// twitter.com/victorzamfir
|
||||
// licensed under the MIT license
|
||||
// licensed under the MIT license
|
||||
// http://www.opensource.org/licenses/mit-license.php
|
||||
// ------------------------------------------
|
||||
|
||||
// namespacing variables with bi-app to
|
||||
// avoid conflicting with other global variables
|
||||
$bi-app-left : right;
|
||||
$bi-app-left : right;
|
||||
$bi-app-right : left;
|
||||
$bi-app-direction : rtl;
|
||||
$bi-app-invert-direction: ltr;
|
||||
$bi-app-direction : rtl;
|
||||
$bi-app-invert-direction: ltr;
|
||||
|
||||
Reference in New Issue
Block a user