Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
401
Merge Requests
64
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
3691f0e753deb01c91a3a516d3411d3e42248f4c...726cff94ec64e4c227f6b69e6a6d1439cf4d779d
Source
726cff94ec64e4c227f6b69e6a6d1439cf4d779d
...
Target
3691f0e753deb01c91a3a516d3411d3e42248f4c
Compare
Commits (3)
(fix): experiments service sould be injected with cookieService not storage
· 14445689
Mark Harding
authored
11 hours ago
14445689
update shadowbox button with approved colors
· 63efe6aa
Olivia Madrid
authored
50 minutes ago
63efe6aa
merge origin/master
· 726cff94
Olivia Madrid
authored
50 minutes ago
726cff94
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
src/app/common/components/shadowbox-submit-button/shadowbox-submit-button.component.scss
View file @
726cff94
...
...
@@ -11,7 +11,7 @@
outline
:
0
;
&
.green
{
@include
m-theme
()
{
background-color
:
#5dbac0
;
background-color
:
themed
(
$m-btn--primary
)
;
color
:
themed
(
$m-white
);
}
.m-shadowboxSubmitButton__status--saving
{
...
...
@@ -24,7 +24,7 @@
}
&
.red
{
@include
m-theme
()
{
background-color
:
themed
(
$m-
red-dark
);
background-color
:
themed
(
$m-
alert
);
color
:
themed
(
$m-white
);
}
.m-shadowboxSubmitButton__status--saving
{
...
...
@@ -38,7 +38,7 @@
&
.grey
{
@include
m-theme
()
{
background-color
:
themed
(
$m-grey-100
);
color
:
themed
(
$m-
grey-500
);
color
:
themed
(
$m-
textColor--secondary
);
}
.m-shadowboxSubmitButton__status--saving
{
span
{
...
...
@@ -59,12 +59,12 @@
}
&
.green
{
@include
m-theme
()
{
background-color
:
#55ccb2
;
background-color
:
themed
(
$m-btn--primary
)
;
}
}
&
.red
{
@include
m-theme
()
{
background-color
:
rgba
(
themed
(
$m-
red
)
,
0
.9
);
background-color
:
rgba
(
themed
(
$m-
alert
)
,
0
.9
);
}
}
&
.grey
{
...
...
@@ -84,7 +84,7 @@
}
&
.green
{
@include
m-theme
()
{
background-color
:
#5dbac0
;
background-color
:
themed
(
$m-btn--primary
)
;
}
}
&
.red
{
...
...
This diff is collapsed.
src/app/modules/experiments/experiments.module.ts
View file @
726cff94
...
...
@@ -2,7 +2,7 @@ import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import
{
CommonModule
as
NgCommonModule
}
from
'
@angular/common
'
;
import
{
CommonModule
}
from
'
../../common/common.module
'
;
import
{
Client
}
from
'
../../common/api/client.service
'
;
import
{
Storage
}
from
'
../../services/storag
e
'
;
import
{
CookieService
}
from
'
../../common/services/cookie.servic
e
'
;
import
{
ExperimentDirective
}
from
'
./experiment.directive
'
;
import
{
ExperimentsService
}
from
'
./experiments.service
'
;
...
...
@@ -14,9 +14,9 @@ import { ExperimentsService } from './experiments.service';
providers
:
[
{
provide
:
ExperimentsService
,
useFactory
:
(
_client
,
_storag
e
)
=>
new
ExperimentsService
(
_client
,
_storag
e
),
deps
:
[
Client
,
Storag
e
],
useFactory
:
(
_client
,
cookieServic
e
)
=>
new
ExperimentsService
(
_client
,
cookieServic
e
),
deps
:
[
Client
,
CookieServic
e
],
},
],
})
...
...
This diff is collapsed.