Color adjustments

This commit is contained in:
Justin Edmund 2020-10-19 07:34:57 -07:00
parent b6a04f8d62
commit e819dadb0a
6 changed files with 37 additions and 7 deletions

View file

@ -20,7 +20,7 @@
.Button.btn-blue { .Button.btn-blue {
background: #61B3FF; background: #61B3FF;
color: #315E87; color: #8b8b8b;
} }
.Button.btn-blue:hover { .Button.btn-blue:hover {
@ -28,6 +28,24 @@
color: #233E56; color: #233E56;
} }
.Button.btn-red {
background: #fa4242;
color: #860f0f;
}
.Button.btn-red:hover {
background: #e91a1a;
color: #4e1717;
}
.Button.btn-red .icon {
color: #860f0f;
}
.Button.btn-red:hover .icon {
color: #4e1717;
}
.Button.btn-disabled { .Button.btn-disabled {
background: #e0e0e0; background: #e0e0e0;
color: #bababa; color: #bababa;
@ -51,4 +69,8 @@
.Button:hover { .Button:hover {
color: #555; color: #555;
cursor: pointer; cursor: pointer;
}
.Button:hover .icon {
color: #2360C5;
} }

View file

@ -11,7 +11,7 @@
} }
.GridRep:hover { .GridRep:hover {
border: 2px solid #61B3FF; border: 2px solid #2360C5;
cursor: pointer; cursor: pointer;
} }

View file

@ -23,7 +23,11 @@
padding-bottom: 16px; padding-bottom: 16px;
} }
.dropdown:hover .Button > * { .dropdown:hover .Button .icon {
color: #2360C5;
}
.dropdown:hover .Button .text {
color: #555; color: #555;
} }

View file

@ -58,6 +58,9 @@ const Header = (props: Props) => {
</div> </div>
<div className="push" /> <div className="push" />
<div className="right"> <div className="right">
{/* { (location.pathname.includes('/p/')) ?
<Button color="red" type="link" click={() => {}}>Delete</Button> : ''
} */}
{ (location.pathname.includes('/p/')) ? { (location.pathname.includes('/p/')) ?
<Button type="link" click={copyToClipboard}>Copy link</Button> : '' <Button type="link" click={copyToClipboard}>Copy link</Button> : ''
} }

View file

@ -20,14 +20,14 @@
.MenuItem:hover { .MenuItem:hover {
color: #555; color: #555;
cursor: pointer; cursor: pointer;
background: #e9e9e9; background: #f9f9f9;
} }
.MenuItem a { .MenuItem a {
color: #777 color: #777
} }
.MenuItem a:hover { .MenuItem:hover a {
color: #555 color: #555
} }

View file

@ -12,11 +12,12 @@
} }
.Segment:hover > label { .Segment:hover > label {
background: #e0e0e0; background: #f9f9f9;
color: #555;
} }
.Segment > input:checked + label { .Segment > input:checked + label {
background: #61B3FF; background: #2360C5;
color: white; color: white;
} }