Skip to content

Commit

Permalink
Undo minitication of css assets
Browse files Browse the repository at this point in the history
  • Loading branch information
SaraBCL committed Mar 29, 2021
1 parent 53f4fcc commit c882250
Show file tree
Hide file tree
Showing 9 changed files with 4,020 additions and 30,108 deletions.
17 changes: 16 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
back
back
front/__mocks__
front/app/assets/
front/app/translations/
front/docs
front/internals
front/storybook-static
front/package.json
front/package-lock.json
front/.cache-loader
front/.out
front/.github
front/.vscode
front/.storybook
front/custom.d.ts
front/.circleci
23 changes: 16 additions & 7 deletions front/app/assets/semantic/components/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*
*/


/*******************************
Page
*******************************/
Expand All @@ -24,14 +25,15 @@ body {
padding: 0px;
overflow-x: hidden;
min-width: 320px;
background: #ffffff;
background: #FFFFFF;
font-family: 'Public Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.4285em;
color: rgba(0, 0, 0, 0.87);
font-smoothing: antialiased;
}


/*******************************
Headers
*******************************/
Expand All @@ -43,7 +45,7 @@ h4,
h5 {
font-family: 'Public Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif;
line-height: 1.28571429em;
margin: calc(2rem - 0.14285714em) 0em 1rem;
margin: calc(2rem - 0.14285714em ) 0em 1rem;
font-weight: bold;
padding: 0em;
}
Expand Down Expand Up @@ -78,6 +80,7 @@ h5:last-child {
margin-bottom: 0em;
}


/*******************************
Text
*******************************/
Expand All @@ -98,33 +101,37 @@ p:last-child {
--------------------*/

a {
color: #4183c4;
color: #4183C4;
text-decoration: none;
}
a:hover {
color: #1e70bf;
text-decoration: none;
}


/*******************************
Scrollbars
*******************************/



/*******************************
Highlighting
*******************************/


/* Site */
::-webkit-selection {
background-color: #cce2ff;
background-color: #CCE2FF;
color: rgba(0, 0, 0, 0.87);
}
::-moz-selection {
background-color: #cce2ff;
background-color: #CCE2FF;
color: rgba(0, 0, 0, 0.87);
}
::selection {
background-color: #cce2ff;
background-color: #CCE2FF;
color: rgba(0, 0, 0, 0.87);
}

Expand Down Expand Up @@ -157,7 +164,7 @@ body ::-webkit-scrollbar-track {
}
body ::-webkit-scrollbar-thumb {
cursor: pointer;
border-radius: 3px;
border-radius: ${(props: any) => props.theme.borderRadius};
background: rgba(0, 0, 0, 0.25);
-webkit-transition: color 0.2s ease;
transition: color 0.2s ease;
Expand All @@ -183,6 +190,8 @@ body .ui.inverted::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.35);
}


/*******************************
Site Overrides
*******************************/

141 changes: 1 addition & 140 deletions front/app/assets/semantic/components/site.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c882250

Please sign in to comment.