Skip to content

Commit

Permalink
Change panel colors - divider scroller
Browse files Browse the repository at this point in the history
  • Loading branch information
DvirMalka committed Aug 21, 2022
1 parent 6e03c2f commit 2692c9e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions dist/development/strigo.sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -11924,7 +11924,7 @@ ${JSON.stringify(parsedContext)}` : "");
}
function generateCssURL(version) {
if (window.Strigo.isDevelopment()) {
return `${SDK_LOCAL_URL}/styles/strigo.css`;
return `${"http://local.strigo.io:7005"}/styles/strigo.css`;
}
if (version) {
return `${CDN_BASE_PATH}@${version}/dist/production/styles/strigo.min.css`;
Expand All @@ -11933,7 +11933,7 @@ ${JSON.stringify(parsedContext)}` : "");
}
function generateWidgetCssURL(version) {
if (window.Strigo.isDevelopment()) {
return `${SDK_LOCAL_URL}/styles/strigo-widget.css`;
return `${"http://local.strigo.io:7005"}/styles/strigo-widget.css`;
}
if (version) {
return `${CDN_BASE_PATH}@${version}/dist/production/styles/strigo-widget.min.css`;
Expand All @@ -11942,7 +11942,7 @@ ${JSON.stringify(parsedContext)}` : "");
}
function generateAcademyHatCssURL(version) {
if (window.Strigo.isDevelopment()) {
return `${SDK_LOCAL_URL}/styles/strigo-academy-hat.css`;
return `${"http://local.strigo.io:7005"}/styles/strigo-academy-hat.css`;
}
if (version) {
return `${CDN_BASE_PATH}@${version}/dist/production/styles/strigo-academy-hat.min.css`;
Expand All @@ -11951,15 +11951,15 @@ ${JSON.stringify(parsedContext)}` : "");
}
function generateRecorderCssURL(version) {
if (window.Strigo.isDevelopment()) {
return `${SDK_LOCAL_URL}/styles/strigo-assessment-recorder.css`;
return `${"http://local.strigo.io:7005"}/styles/strigo-assessment-recorder.css`;
}
if (version) {
return `${CDN_BASE_PATH}@${version}/dist/production/styles/strigo-assessment-recorder.min.css`;
}
return `${CDN_BASE_PATH}@master/dist/production/styles/strigo-assessment-recorder.min.css`;
}
function generateAssessmentRecorderURL() {
return window.Strigo.isDevelopment() ? RECORDER_LOCAL_URL : ASSESSMENT_RECORDER_URL;
return window.Strigo.isDevelopment() ? "http://local.strigo.io:7015" : ASSESSMENT_RECORDER_URL;
}
function isRecordingUrlParamExists() {
const { search } = window.location;
Expand Down Expand Up @@ -13208,7 +13208,7 @@ ${JSON.stringify(parsedContext)}` : "");
this.config = {};
}
isDevelopment() {
return false;
return true;
}
init() {
try {
Expand Down
2 changes: 1 addition & 1 deletion dist/development/styles/strigo-widget.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#strigo-widget .strigo-collapse-div {
width: 4px;
height: 100%;
background-color: #adafdc;
background-color: #ced6de;
border: none;
}
#strigo-widget .strigo-collapse-div:hover {
Expand Down
2 changes: 1 addition & 1 deletion dist/development/styles/strigo.css
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ body {
flex-direction: row;
}
.gutter {
background-color: #494cac;
background-color: #ced6de;
background-repeat: no-repeat;
background-position: 50%;
}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/strigo-widget.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
.strigo-collapse-div {
width: 4px;
height: 100%;
background-color: #adafdc;
background-color: #ced6de;
border: none;

&:hover {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/strigo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ body {
}

.gutter {
background-color: #494cac;
background-color: #ced6de;
background-repeat: no-repeat;
background-position: 50%;
}
Expand Down

0 comments on commit 2692c9e

Please sign in to comment.