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
2a49d087
Commit
2a49d087
authored
Jun 20, 2013
by
Brian Talbot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
studio - revises transparent Sass color vars to use rgba() method
parent
d9fc21fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
17 deletions
+17
-17
cms/static/sass/_variables.scss
+17
-17
No files found.
cms/static/sass/_variables.scss
View file @
2a49d087
...
@@ -24,16 +24,16 @@ $f-monospace: 'Bitstream Vera Sans Mono', Consolas, Courier, monospace;
...
@@ -24,16 +24,16 @@ $f-monospace: 'Bitstream Vera Sans Mono', Consolas, Courier, monospace;
// colors - new for re-org
// colors - new for re-org
$black
:
rgb
(
0
,
0
,
0
);
$black
:
rgb
(
0
,
0
,
0
);
$black-t0
:
rgba
(
0
,
0
,
0
,
0
.125
);
$black-t0
:
rgba
(
$black
,
0
.125
);
$black-t1
:
rgba
(
0
,
0
,
0
,
0
.25
);
$black-t1
:
rgba
(
$black
,
0
.25
);
$black-t2
:
rgba
(
0
,
0
,
0
,
0
.50
);
$black-t2
:
rgba
(
$black
,
0
.5
);
$black-t3
:
rgba
(
0
,
0
,
0
,
0
.75
);
$black-t3
:
rgba
(
$black
,
0
.75
);
$white
:
rgb
(
255
,
255
,
255
);
$white
:
rgb
(
255
,
255
,
255
);
$white-t0
:
rgba
(
255
,
255
,
255
,
0
.125
);
$white-t0
:
rgba
(
$white
,
0
.125
);
$white-t1
:
rgba
(
255
,
255
,
255
,
0
.25
);
$white-t1
:
rgba
(
$white
,
0
.25
);
$white-t2
:
rgba
(
255
,
255
,
255
,
0
.50
);
$white-t2
:
rgba
(
$white
,
0
.5
);
$white-t3
:
rgba
(
255
,
255
,
255
,
0
.75
);
$white-t3
:
rgba
(
$white
,
0
.75
);
$gray
:
rgb
(
127
,
127
,
127
);
$gray
:
rgb
(
127
,
127
,
127
);
$gray-l1
:
tint
(
$gray
,
20%
);
$gray-l1
:
tint
(
$gray
,
20%
);
...
@@ -63,10 +63,10 @@ $blue-s3: saturate($blue,45%);
...
@@ -63,10 +63,10 @@ $blue-s3: saturate($blue,45%);
$blue-u1
:
desaturate
(
$blue
,
15%
);
$blue-u1
:
desaturate
(
$blue
,
15%
);
$blue-u2
:
desaturate
(
$blue
,
30%
);
$blue-u2
:
desaturate
(
$blue
,
30%
);
$blue-u3
:
desaturate
(
$blue
,
45%
);
$blue-u3
:
desaturate
(
$blue
,
45%
);
$blue-t0
:
rgba
(
85
,
151
,
221
,
0
.125
);
$blue-t0
:
rgba
(
$blue
,
0
.125
);
$blue-t1
:
rgba
(
85
,
151
,
221
,
0
.25
);
$blue-t1
:
rgba
(
$blue
,
0
.25
);
$blue-t2
:
rgba
(
85
,
151
,
221
,
0
.50
);
$blue-t2
:
rgba
(
$blue
,
0
.50
);
$blue-t3
:
rgba
(
85
,
151
,
221
,
0
.75
);
$blue-t3
:
rgba
(
$blue
,
0
.75
);
$pink
:
rgb
(
183
,
37
,
103
);
$pink
:
rgb
(
183
,
37
,
103
);
$pink-l1
:
tint
(
$pink
,
20%
);
$pink-l1
:
tint
(
$pink
,
20%
);
...
@@ -153,10 +153,11 @@ $orange-u1: desaturate($orange,15%);
...
@@ -153,10 +153,11 @@ $orange-u1: desaturate($orange,15%);
$orange-u2
:
desaturate
(
$orange
,
30%
);
$orange-u2
:
desaturate
(
$orange
,
30%
);
$orange-u3
:
desaturate
(
$orange
,
45%
);
$orange-u3
:
desaturate
(
$orange
,
45%
);
$shadow
:
rgba
(
0
,
0
,
0
,
0
.2
);
$shadow
:
rgba
(
$black
,
0
.2
);
$shadow-l1
:
rgba
(
0
,
0
,
0
,
0
.1
);
$shadow-l1
:
rgba
(
$black
,
0
.1
);
$shadow-l2
:
rgba
(
0
,
0
,
0
,
0
.05
);
$shadow-l2
:
rgba
(
$black
,
0
.05
);
$shadow-d1
:
rgba
(
0
,
0
,
0
,
0
.4
);
$shadow-d1
:
rgba
(
$black
,
0
.4
);
$shadow-d2
:
rgba
(
$black
,
0
.6
);
// ====================
// ====================
...
@@ -186,4 +187,3 @@ $error-red: rgb(253, 87, 87);
...
@@ -186,4 +187,3 @@ $error-red: rgb(253, 87, 87);
// type
// type
$sans-serif
:
$f-sans-serif
;
$sans-serif
:
$f-sans-serif
;
$body-line-height
:
golden-ratio
(
.875em
,
1
);
$body-line-height
:
golden-ratio
(
.875em
,
1
);
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