Skip to content
Snippets Groups Projects
Commit b1d76964 authored by chris's avatar chris
Browse files

remove color bg button

parent 9b774a8c
No related branches found
No related tags found
1 merge request!516Title dropdown
......@@ -22,7 +22,6 @@ const cokoTheme = {
colorWarning: '#ffc107',
colorBackgroundToolBar: '#fff',
colorSelection: '#C5D7FE',
colorBackgroundButton: '#0042C7',
/* Text variables */
// fonts
......
......@@ -22,7 +22,6 @@ const cokoTheme = {
colorWarning: '#ffc107',
colorBackgroundToolBar: '#fff',
colorSelection: '#C5D7FE',
colorBackgroundButton: '#0042C7',
/* Text variables */
// fonts
......
......@@ -22,7 +22,6 @@ const cokoTheme = {
colorWarning: '#ffc107',
colorBackgroundToolBar: '#fff',
colorSelection: '#C5D7FE',
colorBackgroundButton: '#0042C7',
/* Text variables */
// fonts
......
......@@ -22,7 +22,6 @@ const cokoTheme = {
colorWarning: '#ffc107',
colorBackgroundToolBar: '#fff',
colorSelection: '#C5D7FE',
colorBackgroundButton: '#0042C7',
/* Text variables */
// fonts
......
......@@ -37,7 +37,7 @@ const CheckBoxLabel = styled.label`
input:checked ~ span::after {
background-color: transparent;
border: solid ${th('colorBackgroundButton')};
border: solid ${th('colorPrimary')};
border-radius: 0;
border-width: 0 2px 2px 0;
height: 12px;
......@@ -66,7 +66,7 @@ const CheckboxCustom = styled.span`
-o-transition: all 0.3s ease-out;
&:after {
border: solid ${th('colorBackgroundButton')};
border: solid ${th('colorPrimary')};
border-radius: 5px;
border-width: 0 3px 3px 0;
content: '';
......
......@@ -97,8 +97,8 @@ const ControlContainer = styled.div`
`;
const ButtonReplace = styled.button`
background: ${th('colorBackgroundButton')};
border: 1px solid ${th('colorBackgroundButton')};
background: ${th('colorPrimary')};
border: 1px solid ${th('colorPrimary')};
color: white;
cursor: pointer;
height: 42px;
......@@ -108,8 +108,8 @@ const ButtonReplace = styled.button`
const ButtonReplaceAll = styled.button`
background: white;
border: 1px solid ${th('colorBackgroundButton')};
color: ${th('colorBackgroundButton')};
border: 1px solid ${th('colorPrimary')};
color: ${th('colorPrimary')};
cursor: pointer;
height: 42px;
margin-right: 10px;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment