Skip to content

Commit

Permalink
global: change math operation to compatible with sass2.0
Browse files Browse the repository at this point in the history
* webpack: add tinymce to assets
  • Loading branch information
kpsherva committed Jan 11, 2024
1 parent 8ccd805 commit 40447a5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions invenio_theme/assets/bootstrap3/scss/invenio_theme/cover.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ body.cover-page {
.panel-footer {
padding-left: $cover-panel-padding;
padding-right: $cover-panel-padding;
padding-top: $cover-panel-padding/2;
padding-bottom: $cover-panel-padding/2;
border-bottom-left-radius: $border-radius-large*2;
border-bottom-right-radius: $border-radius-large*2;
padding-top: calc($cover-panel-padding/2);
padding-bottom: calc($cover-panel-padding/2);
border-bottom-left-radius: calc($border-radius-large*2);
border-bottom-right-radius: calc($border-radius-large*2);
background-color: $cover-panel-footer-bg;
}
.panel-container a.text-muted {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

header .alert {
margin-top: -$line-height-computed;
margin-top: calc(-1 * $line-height-computed);
border-radius: 0px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*/

// Setting the path to fonts files.
$icon-font-path: "~bootstrap-sass/assets/fonts/bootstrap/";
$fa-font-path: "~font-awesome/fonts";
$icon-font-path: "~bootstrap-sass//assets//fonts//bootstrap//";
$fa-font-path: "~font-awesome//fonts";

@import "~bootstrap-sass/assets/stylesheets/_bootstrap";
@import "~font-awesome/scss/font-awesome";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

header .alert {
margin-top: -$line-height-computed;
margin-top: calc(-1 * $line-height-computed);
border-radius: 0px;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
*/

// Setting the path to fonts files.
$icon-font-path: "~bootstrap-sass/assets/fonts/bootstrap/";
$fa-font-path: "~font-awesome/fonts";
$icon-font-path: "~bootstrap-sass//assets//fonts//bootstrap//";
$fa-font-path: "~font-awesome//fonts";

@import "~bootstrap-sass/assets/stylesheets/_bootstrap";
@import "~font-awesome/scss/font-awesome";
Expand Down

0 comments on commit 40447a5

Please sign in to comment.